forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "github-release-notes",
"version": "0.17.3",
"description": "Create a release from a tag and uses issues or commits to creating the release notes. It also can generate a CHANGELOG.md file based on the release notes (or generate a brand new).",
"main": "./github-release-notes.js",
"scripts": {
"start": "node github-release-notes.js",
"test": "./node_modules/.bin/nyc mocha --reporter=nyan --compilers=js:babel-register",
"coverage": "nyc --reporter=lcov --reporter=text mocha --compilers=js:babel-register",
"options": "node tasks/_generate-options.js",
"examples": "node tasks/_generate-examples.js",
"docs": "npm run options && npm run examples && node_modules/.bin/jsdoc -c .jsdoc.conf.json --verbose",
"postinstall": "node ./_postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github-tools/github-release-notes.git"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"dest": "./dest"
},
"preferGlobal": true,
"bin": {
"gren": "bin/gren.js"
},
"keywords": [
"Github",
"Release",
"notes",
"Tag",
"Changelog",
"Changelog Generator",
"Issues",
"Commits"
],
"author": "alexcanessa",
"contributors": [
"Alex Canessa <[email protected]>",
"Han <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/github-tools/github-release-notes/issues"
},
"homepage": "https://github.com/github-tools/github-release-notes#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"base-64": "^0.1.0",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"connectivity": "^1.0.0",
"github-api": "^3.3.0",
"inquirer": "^3.3.0",
"install": "^0.10.1",
"js-beautify": "^1.7.4",
"json2yaml": "^1.1.0",
"minimist": "^1.2.0",
"node-fetch": "^1.7.3",
"npm": "^6.13.4",
"object-assign-deep": "^0.3.1",
"ora": "^1.3.0",
"regex-match-all": "^1.0.2",
"require-from-url": "^3.1.3",
"require-yaml": "0.0.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-chmod": "^2.0.0",
"gulp-eslint": "^4.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^2.0.2",
"gulp-watch": "^4.3.11",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mocha": "^4.1.0",
"nyc": "^13.1.0",
"tap-nyan": "^1.1.0",
"yamljs": "^0.3.0"
}
}