-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 871 Bytes
/
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
{
"name": "jsonld-checker",
"author": "gjgd",
"version": "0.1.0",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "lerna run build",
"deploy": "lerna run deploy",
"lint": "lerna run lint",
"postinstall": "lerna bootstrap",
"publish:patch": "lerna publish patch",
"test": "lerna run test",
"publish:stable:patch": "lerna publish patch",
"publish:stable:minor": "lerna publish minor",
"publish:stable:major": "lerna publish major",
"publish:unstable": "lerna publish prerelease --preid unstable --yes"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.8",
"lerna": "^3.22.1"
}
}