forked from commitizen/cz-conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cz-conventional-changelog-with-issue-id",
"version": "1.0.0",
"description": "Commitizen adapter following the conventional-changelog format, with issue id.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha *.test.js",
"format": "prettier --write *.js",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/creativecomposer/cz-conventional-commit-with-issue-id",
"repository": {
"type": "git",
"url": "https://github.com/creativecomposer/cz-conventional-commit-with-issue-id"
},
"engineStrict": true,
"engines": {
"node": ">= 16"
},
"author": "Anthony J",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"commitizen": "^4.3.0",
"conventional-commit-types": "^3.0.0",
"lodash.map": "^4.5.1",
"longest": "^2.0.1",
"word-wrap": "^1.0.3"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"chai": "4.3.6",
"cosmiconfig": "5.2.1",
"mocha": "9.2.2",
"mock-require": "3.0.3",
"prettier": "1.19.1",
"semantic-release": "23.1.1",
"semver": "6.3.0"
},
"optionalDependencies": {
"@commitlint/load": ">19.1.0"
},
"config": {
"commitizen": {
"path": "./index.js",
"typesWithOptionalIssueIds": [
"revert",
"docs",
"style",
"chore"
]
}
}
}