-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "seed",
"version": "0.0.0",
"description": "seed repository with basic functionality",
"scripts": {
"preinstall": "node scripts/enforce-yarn.js",
"commit": "git-cz",
"enforce:gitflow": "node ./node_modules/.bin/enforce-gitflow-branches",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"recommended:bump": "conventional-recommended-bump --preset=angular"
},
"devDependencies": {
"@commitlint/cli": "7.5.1",
"@commitlint/config-conventional": "7.5.0",
"commitizen": "3.0.5",
"conventional-changelog-cli": "^2.0.11",
"conventional-recommended-bump": "^4.0.4",
"cz-conventional-changelog": "2.1.0",
"enforce-gitflow-branches": "1.0.8",
"husky": "1.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn enforce:gitflow"
}
},
"license": "ISC"
}