forked from open-mmlab/labelbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "labelbee",
"private": true,
"version": "1.13.0",
"scripts": {
"start": "lerna run build:type && lerna run --parallel --stream start",
"start:quick": "lerna run --parallel --stream start",
"dev": "npm run start",
"bootstrap": "lerna bootstrap --no-ci",
"build": "lerna run build --scope=@labelbee/lb-utils --scope=@labelbee/lb-annotation --scope=@labelbee/lb-components --scope=@labelbee/wavesufer",
"build:type": "lerna run build:type --scope=@labelbee/lb-utils --scope=@labelbee/lb-annotation --scope=@labelbee/lb-components --scope=@labelbee/wavesufer",
"lint": "npm run build:type && 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",
"semantic": "multi-semantic-release --ignore-private-packages",
"updemo": "node ./scripts/upgrade-lbdemo-ver.js"
},
"main": "index.js",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@octokit/rest": "19.0.7",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "4.0.3",
"lerna": "4.0.0",
"minimist": "1.2.8",
"multi-semantic-release": "3.0.2",
"node-fetch": "2.6.7",
"semantic-release": "19.0.5",
"semantic-release-github-pullrequest": "1.3.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"
}
}
}