forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.56 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@cjbarth/github-release-notes",
"version": "4.2.0",
"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": {
"changelog": "node bin/gren.js changelog --override --generate",
"build": "npm run lint:fix && gulp build",
"prerelease": "git clean -xfd && npm ci && npm test && npm run build",
"release": "release-it",
"start": "node github-release-notes.js",
"test": "./node_modules/.bin/nyc mocha --reporter=nyan --require @babel/register",
"coverage": "nyc --reporter=lcov --reporter=text mocha --require @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",
"lint:fix": "eslint --ext .js --fix lib/src && npm run prettier-format",
"prettier-format": "prettier --config .prettierrc.json --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjbarth/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 <canessa.alex@gmail.com>",
"Han <xsytby1112@gmail.com>",
"Chris Barth <chrisjbarth@hotmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/cjbarth/github-release-notes/issues"
},
"homepage": "https://github.com/cjbarth/github-release-notes#readme",
"dependencies": {
"@babel/runtime": "^7.17.8",
"base-64": "^1.0.0",
"chalk": "^4.1.2",
"commander": "^9.4.0",
"connectivity": "^1.0.2",
"github-api": "^3.4.0",
"inquirer": "^8.2.2",
"install": "^0.13.0",
"js-beautify": "^1.14.2",
"json2yaml": "^1.1.0",
"minimist": "^1.2.6",
"node-fetch": "^3.2.3",
"npm": "^8.6.0",
"object-assign-deep": "^0.4.0",
"ora": "^5.4.1",
"regex-match-all": "^1.0.2",
"require-from-url": "^3.1.3",
"require-yaml": "0.0.1",
"semver-compare": "^1.0.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-chmod": "^3.0.0",
"gulp-eslint": "^6.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-prettier": "^5.0.0",
"gulp-watch": "^5.0.1",
"jsdoc": "^3.6.10",
"minami": "^1.2.3",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.5",
"release-it": "^15.10.1",
"tap-nyan": "^1.1.0",
"yamljs": "^0.3.0"
},
"engines": {
"node": ">= 14"
}
}