forked from etcdigital/pull-request-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "pull-request-changelog",
"version": "2.2.0",
"description": "Github action that automatically generates changelog when PR is opened/updated",
"main": "dist/index.js",
"scripts": {
"changelog": "node src/index.ts",
"build": "ncc build src/index.ts -o dist --minify"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/etcdigital/pull-request-changelog.git"
},
"keywords": [
"github",
"actions",
"changelog",
"gitflow"
],
"author": "Tiago Souza",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/etcdigital/pull-request-changelog/issues"
},
"homepage": "/~https://github.com/etcdigital/pull-request-changelog#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@zeit/ncc": "^0.22.3",
"prettier": "^2.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.3"
}
}