-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "git-commit-message-convention",
"description": "Extend git commit message from angular style",
"version": "2.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kazupon/git-commit-message-convention/issues"
},
"dependencies": {
"compare-func": "^1.3.1",
"github-url-from-git": "^1.4.0"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"conventional-changelog-cli": "^1.1.1",
"conventional-commits-parser": "^1.2.0",
"conventional-github-releaser": "^1.1.3"
},
"homepage": "https://github.com/kazupon/git-commit-message-convention",
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/git-commit-message-convention.git"
},
"scripts": {
"build": "babel src -d lib",
"changelog": "conventional-changelog -i CHANGELOG.md -s -n ./convention.js",
"release": "conventional-github-releaser -n ./convention.js",
"test": "ava --require babel-register"
}
}