-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"prodBuild": "lerna run clean && lerna run prodBuild",
"test": "jest",
"test:cover": "jest --coverage --collectCoverageFrom=**/*.ts --collectCoverageFrom=**/*.tsx --collectCoverageFrom=!**/*.d.ts --collectCoverageFrom=!**/index.ts --collectCoverageFrom=!**/index.tsx",
"lint": "lerna exec -- tslint --fix -p . -t verbose"
},
"jest": {
"projects": [
"packages/novice/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/helpers\\.(test|spec)\\.(jsx?|tsx?)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
},
"devDependencies": {
"@types/jest": "^23.3.11",
"@types/node": "^10.17.24",
"jest": "^23.6.0",
"lerna": "^3.21.0",
"ts-jest": "^23.10.5",
"tslint": "^5.20.1",
"typescript": "^3.9.3"
},
"dependencies": {
"npm": "^6.14.5"
}
}