forked from jamro/jsbattle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "root",
"private": true,
"version": "3.6.1",
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "npm start --prefix=./packages/jsbattle",
"clean": "lerna run clean --stream",
"lint": "lerna bootstrap && lerna run lint --stream",
"build": "lerna bootstrap && lerna run build --stream",
"test": "lerna bootstrap && lerna run test --stream --concurrency 1",
"all": "lerna bootstrap && npm run-script clean && npm run-script lint && npm run-script build && npm run-script test",
"ci": "lerna bootstrap && npm run-script clean && npm run-script lint && npm run-script build && npm run-script test",
"commit": "git-cz",
"update": "for d in ./packages/*; do npm-check-updates -i --packageFile $d/package.json; done",
"audit": "lerna-audit"
},
"engines": {
"node": ">=0.10.3"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.7.6",
"lerna": "^4.0.0",
"lerna-audit": "^1.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"npm-upgrade": "^3.0.0",
"passport-local": "^1.0.0"
}
}