forked from nodejs/changelog-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.37 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
59
60
61
62
63
{
"name": "@agilgur5/changelog-maker",
"version": "3.0.0",
"description": "A git log to release changelog tool",
"files": [
"changelog-maker.js",
"collect-commit-labels.js",
"commit-to-output.js",
"group-commits.js",
"groups.js",
"reverts.js"
],
"main": "changelog-maker.js",
"bin": {
"changelog-maker": "./changelog-maker.js"
},
"preferGlobal": true,
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/changelog-maker",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/changelog-maker.git"
},
"bugs": {
"url": "https://github.com/agilgur5/changelog-maker/issues"
},
"keywords": [
"changelog",
"generate",
"convention",
"commit",
"log",
"release",
"tag",
"history",
"git",
"github"
],
"scripts": {
"lint": "standard",
"test": "standard && tape test.js",
"changelog": "node ./changelog-maker.js"
},
"dependencies": {
"async": "~2.6.1",
"chalk": "~2.4.1",
"commit-stream": "~1.1.0",
"debug": "~4.1.0",
"ghauth": "~3.2.1",
"ghissues": "~1.1.3",
"gitexec": "~1.0.0",
"list-stream": "~1.0.1",
"minimist": "~1.2.0",
"pkg-to-id": "~0.0.3",
"split2": "~3.0.0",
"strip-ansi": "~5.0.0"
},
"devDependencies": {
"standard": "~12.0.1",
"tape": "~4.9.1"
}
}