-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "git-auto-commit-msg",
"version": "0.1.0",
"description": "Automatically generates a conventional commit message",
"main": "index.js",
"bin": {
"git-auto-commit-msg": "./index.js"
},
"scripts": {
"test": "jest",
"release": "npm install --only=dev && npm run prerelease && standard-version",
"commitwip": "hack/commit-wip",
"commitmsg": "validate-commit-msg",
"prerelease": "hack/validate-commit-history",
"ci": "npm install --only=dev npm run -s prerelease && npm run -s test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/growit-io/git-auto-commit-msg.git"
},
"keywords": [
"git"
],
"author": "Uwe Stuehler",
"license": "ISC",
"bugs": {
"url": "https://github.com/growit-io/git-auto-commit-msg/issues"
},
"homepage": "https://github.com/growit-io/git-auto-commit-msg#readme",
"devDependencies": {
"standard-version": "^4.2.0",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"commander": "^2.12.2",
"jest": "^21.2.1",
"shell-escape": "^0.2.0",
"shelljs": "^0.7.8"
}
}