-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
40
41
42
43
{
"name": "npm",
"version": "1.3.0",
"description": "a npm package everyday",
"main": "index.js",
"scripts": {
"release": "./scripts/release.sh",
"changelog": "conventional-changelog -p express -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/songjian925/npm.git"
},
"author": "it.song",
"license": "ISC",
"bugs": {
"url": "https://github.com/songjian925/npm/issues"
},
"homepage": "https://github.com/songjian925/npm#readme",
"dependencies": {
"commitizen": "^3.0.5",
"debug": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"conventional-changelog-cli": "^2.0.11",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.2.0",
"standard-version": "^4.4.0"
}
}