-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"name": "xroom.app",
"private": false,
"devDependencies": {
"@types/jest": "^26.0.19",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^5.0.6",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"typescript": "^4.3.0-dev.20210422"
},
"scripts": {
"test": "npx jest --coverage && rm coverage -rf",
"check": "npm test && tsc && npx eslint packages",
"lerna-publish": "lerna publish from-package"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}