-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 958 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
{
"name": "grunt-changelog",
"description": "Generate a changelog based on commit messages.",
"version": "0.3.2",
"homepage": "https://github.com/ericmatthys/grunt-changelog",
"author": {
"name": "Eric Matthys",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ericmatthys/grunt-changelog.git"
},
"bugs": {
"url": "https://github.com/ericmatthys/grunt-changelog/issues"
},
"license": "MIT",
"scripts": {
"test": "grunt test"
},
"dependencies": {
"handlebars": "~4.0.5",
"moment": "~2.12.0",
"semver": "^5.1.0",
"underscore": "~1.8.3"
},
"devDependencies": {
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt": "~1.0.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"grunt",
"changelog",
"release notes"
]
}