forked from commitizen/cz-conventional-changelog
-
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": "conventional-changelog-fuzzy",
"version": "0.2.0",
"description": "Commitizen adapter following the conventional-changelog format with fuzzy match type.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "echo 'Tests need to be setup!'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"homepage": "https://github.com/carlos-wong/conventional-changelog-fuzzy",
"repository": {
"type": "git",
"url": "https://github.com/carlos-wong/conventional-changelog-fuzzy"
},
"author": "Carlos <[email protected]>",
"license": "MIT",
"dependencies": {
"conventional-commit-types": "^2.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"lodash": "^4.17.11",
"lodash.map": "^4.5.1",
"longest": "^1.0.1",
"right-pad": "^1.0.1",
"rxjs": "^6.4.0",
"word-wrap": "^1.0.3"
},
"devDependencies": {
"commitizen": "2.9.6",
"semantic-release": "^6.3.2"
},
"config": {
"commitizen": {
"path": "./index.js"
}
}
}