-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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": "@venncity/npm-shelf",
"version": "1.0.0",
"private": true,
"scripts": {
"preinstall": "node ./verifyNodeVersion.js",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commit": "git-cz",
"exec-changed": "./scripts/executeOnChanged.js",
"bootstrap": "lerna bootstrap --hoist",
"new:package": "hygen package new",
"test:ci": "export JEST_JUNIT_OUTPUT=`pwd`/reports/junit/ && npm run exec-changed lerna exec 'JEST_JUNIT_OUTPUT=$JEST_JUNIT_OUTPUT/$LERNA_PACKAGE_NAME-test-results.xml npm run test:ci'"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.3.1",
"commitizen": "^3.0.5",
"commitlint": "^7.3.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"lerna": "^3.10.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.10.0 <8.10.1"
}
}