-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1018 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
34
35
36
37
38
39
40
41
42
43
{
"name": "git-flow-emoji",
"version": "2.0.2",
"description": "",
"main": "index.js",
"scripts": {
"commit": "git cz",
"version": "conventional-changelog -i CHANGELOG.md -s -p @favoloso/emoji && git add CHANGELOG.md",
"log": "conventional-changelog -i CHANGELOG.md -p @favoloso/emoji -s -r 0"
},
"keywords": [
"git",
"emoji"
],
"author": "MrWindlike@gmail.com",
"license": "ISC",
"files": [
"src",
"template"
],
"bin": {
"git-flow": "./bin/index.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@favoloso/conventional-changelog-emoji": "^0.10.0",
"commitizen": "^4.0.4",
"conventional-changelog": "^3.1.18",
"conventional-changelog-cli": "^2.0.31",
"cz-customizable": "^6.2.0",
"husky": "^4.2.5"
},
"dependencies": {
"chalk": "^4.0.0",
"inquirer": "^8.2.4"
}
}