forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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
51
52
{
"name": "github-release-notes",
"version": "0.5.0",
"description": "Node module to publish release notes based on commits between the last two tags.",
"main": "./github-release-notes.js",
"scripts": {
"start": "node github-release-notes.js",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcanessa/github-release-notes.git"
},
"preferGlobal": "true",
"bin": {
"gren": "bin/gren.js"
},
"keywords": [
"Github",
"Release",
"notes",
"Tag",
"Changelog",
"Changelog Generator",
"Issues",
"Commits"
],
"author": "alexcanessa",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexcanessa/github-release-notes/issues"
},
"homepage": "https://github.com/alexcanessa/github-release-notes#readme",
"dependencies": {
"chalk": "^1.1.3",
"es6-promise": "^3.2.1",
"github-api": "^2.1.0",
"is-online": "^5.1.1",
"object-assign": "^4.1.0"
},
"devDependencies": {
"eslint": "^3.6.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"grunt": "^1.0.1",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-jsdoc": "^2.1.0",
"ink-docstrap": "^1.2.1"
}
}