-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"private": true,
"name": "generate-changelog",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/riskledger/generate-changelog.git"
},
"keywords": [
"github",
"actions",
"generate",
"changelog",
"release notes"
],
"author": "Daniel McKenzie",
"bugs": {
"url": "https://github.com/riskledger/generate-changelog/issues"
},
"homepage": "https://github.com/riskledger/generate-changelog#readme",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js --ext .js",
"lint:fix": "yarn run lint --fix",
"lint:all": "yarn run lint ./",
"lint:all:fix": "yarn run lint:fix ./",
"build": "ncc build main.js --license licenses.txt"
},
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0",
"lerna-changelog": "2.2.0"
},
"devDependencies": {
"@vercel/ncc": "0.33.x",
"eslint": "8.10.x",
"eslint-config-prettier": "8.3.x",
"eslint-plugin-prettier": "4.0.x",
"prettier": "2.5.x"
}
}