forked from ietf-tools/semver-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1017 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
{
"name": "semver-action",
"version": "1.0.0",
"description": "GitHub Action to calculate the next release version based conventional commits since latest tag",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ietf-tools/semver-action.git"
},
"author": "IETF Trust",
"license": "ISC",
"bugs": {
"url": "https://github.com/ietf-tools/semver-action/issues"
},
"homepage": "https://github.com/ietf-tools/semver-action#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@conventional-commits/parser": "0.4.1",
"conventional-recommended-bump": "6.1.0",
"lodash": "4.17.21",
"semver": "7.3.8"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"eslint": "8.34.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1"
}
}