forked from swkBerlin/kata-bootstraps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
59
60
61
62
63
{
"name": "typescript-jest-boilerplate",
"version": "1.0.0",
"license": "MIT",
"author": "Charles Ahmadzadeh <[email protected]>",
"scripts": {
"test": "yarn lint && yarn compile && cross-env NODE_ENV=test jest",
"test:ci": "yarn test --ci --maxWorkers=2 --verbose --coverage",
"test:cover": "yarn test --coverage",
"test:changed": "yarn test --watch",
"test:update": "yarn test -u",
"test:watch": "yarn test --watchAll",
"lint": "yarn lint:ts",
"lint:ts": "tslint src/**/*.ts",
"compile": "yarn lint && yarn compile:ts",
"compile:watch": "yarn compile:ts -w",
"compile:ts": "tsc --project tsconfig.json"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.8",
"babel-core": "6.26.3",
"babel-jest": "24.9.0",
"cross-env": "6.0.3",
"jest": "24.9.0",
"ts-jest": "24.1.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.7.2"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(\\.|/)(test)\\.(js|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"standard": {
"env": [
"node",
"jest"
],
"globals": [
"expect"
]
}
}