-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 773 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 773 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
33
34
35
36
37
38
39
40
{
"name": "@kelchy/node-lib",
"version": "0.2.0",
"private": true,
"scripts": {
"test:unit": "jest lib",
"lint": "eslint ."
},
"pre-commit": {
"run": [
"lint",
"test:unit"
]
},
"jest": {
"collectCoverage": true,
"bail": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"main": "./lib/index.js",
"workspaces": [
"lib/**"
],
"devDependencies": {
"@kelchy/pre-commit": "^1.2.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^29.2.2"
}
}