-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 909 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": "conventional-commits",
"version": "1.1.0",
"description": "A sample demonstration of using commitizen and other tooling to generate changelogs and versioning",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devboosts/conventional-commits.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devboosts/conventional-commits/issues"
},
"homepage": "https://github.com/devboosts/conventional-commits#readme",
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.3",
"standard-version": "^4.0.0",
"validate-commit-msg": "^2.11.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}