-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "chg",
"version": "0.4.0",
"main": "lib/chg.js",
"description": "simple changelog/release history manager",
"homepage": "https://github.com/heff/chg",
"bugs": "https://github.com/heff/chg/issues",
"author": {
"name": "heff"
},
"repository": {
"type": "git",
"url": "https://github.com/heff/chg"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"keywords": [
"changelog",
"history",
"release",
"change"
],
"scripts": {
"test": "grunt test"
},
"bin": {
"chg": "./bin/chg"
},
"devDependencies": {
"chai": "^1.10.0",
"grunt": "~0.4.0",
"grunt-cli": "~0.1.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.1.0"
},
"dependencies": {
"commander": "^2.12.2",
"moment": "^2.19.4",
"prompt": "~0.2.12",
"semver": "^5.4.1",
"shelljs": "~0.2.6"
}
}