-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.02 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"benchmark": "npx concurrently -k -s first \"node ./examples/basic.js\" \"npx autocannon -c 100 -d 5 -p 10 localhost:8080\"",
"lint": "standard --fix 'packages/**/*.js' | snazzy",
"postinstall": "lerna bootstrap",
"test": "npm run lint && npm run unit",
"unit": "jest"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"injectar": "^1.4.0",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"snazzy": "^8.0.0",
"standard": "^14.0.0",
"superagent": "^5.1.0"
},
"engines": {
"node": ">= 10.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"standard": {
"env": [
"jest"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}