-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1002 Bytes
/
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
{
"name": "github-changelog-builder",
"version": "1.1.1",
"description": "Quick build a beautiful github-friendly changelog from commits between two tags or commits with Github API",
"main": "dist/index.js",
"files": ["dist", "types"],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"github-changelog-builder": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apitable/github-changelog-builder.git"
},
"keywords": [
"changelog",
"github"
],
"author": "Kelly Chan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apitable/github-changelog-builder/issues"
},
"homepage": "https://github.com/apitable/github-changelog-builder#readme",
"dependencies": {
"commander": "^9.4.1",
"luxon": "^3.1.0",
"octokit": "^2.0.10"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^18.11.9"
}
}