-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "changelog-action",
"version": "1.0.0",
"description": "GitHub Action to generate changelog from conventional commits",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Requarks/changelog-action.git"
},
"keywords": [
"changelog",
"github-actions",
"conventional-commits"
],
"author": "Nicolas Giard <github@ngpixel.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Requarks/changelog-action/issues"
},
"homepage": "https://github.com/Requarks/changelog-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "5.1.1",
"@conventional-commits/parser": "0.4.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@vercel/ncc": "0.38.0",
"eslint": "8.50.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "16.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0"
}
}