-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 960 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
{
"name": "@enigmatis/polaris-united",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna clean --yes",
"postinstall": "npm run clean && npm run bootstrap",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"test": "lerna exec \"npm test\"",
"coverage": "lerna run \"coverage\" --since refs/remotes/origin/development",
"lint:fix": "lerna run \"lint:fix\" --since refs/remotes/origin/development",
"publish": "lerna publish --yes --git-remote pub --message 'chore(release) [skip ci]'",
"publish-beta": "lerna publish --dist-tag beta --yes --git-remote pub --message 'chore(release) [skip ci]'"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"lerna": "^3.22.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}