forked from open-mmlab/labelbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "labelbee",
"private": true,
"version": "1.7.0",
"scripts": {
"start": "lerna run build:type && lerna run --parallel --stream start",
"dev": "npm run start",
"bootstrap": "lerna bootstrap --no-ci",
"build": "lerna run build",
"build:type": "lerna run build:type",
"lint": "lerna run --parallel --stream lint",
"clean": "lerna clean && rm -rf ./node_modules/ && rm -rf ./packages/**/node_modules && rm -rf ./packages/**/package-lock.json",
"version": "lerna version --conventional-graduate --yes",
"publish": "lerna publish from-package --yes",
"commit": "cz",
"release": "standard-version"
},
"main": "index.js",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.0.3",
"lerna": "^4.0.0",
"standard-version": "^9.3.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}