forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
51
52
53
54
55
56
57
58
{
"name": "github-release-notes",
"version": "0.9.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",
"docs": "node_modules/.bin/jsdoc -c .jsdoc.conf.json --verbose"
},
"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",
"contributors": [
"Alex Canessa <canessa.alex@gmail.com>"
],
"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",
"connectivity": "^1.0.0",
"es6-promise": "^3.2.1",
"github-api": "^3.0.0",
"minimist": "^1.2.0",
"object-assign-deep": "0.0.4",
"require-yaml": "0.0.1"
},
"devDependencies": {
"eslint": "^3.6.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.0.0",
"grunt": "^1.0.1",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-eslint": "^19.0.0",
"jsdoc": "^3.4.3",
"minami": "^1.1.1"
}
}