-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "template-typescript",
"version": "1.0.0",
"description": "CodingIsCaring Template",
"keywords": [
"template",
"codingIsCaring",
"kata"
],
"main": "main.ts",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"contributors": [
"mariasoria",
"yodra"
],
"license": "ISC",
"scripts": {
"build": "babel src -x .ts -d build",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@cowcoders/eslint-config": "1.2.9",
"@types/jest": "26.0.23",
"@types/node": "15.6.0",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"@vercel/ncc": "0.28.5",
"eslint": "7.27.0",
"eslint-plugin-jest": "24.3.6",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"js-yaml": "4.1.0",
"prettier": "2.3.0",
"shx": "0.3.3",
"ts-jest": "26.5.6",
"typescript": "4.2.4"
},
"jest": {
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/*.test.(j|t)s"
],
"verbose": true
}
}