generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
35 lines (35 loc) · 857 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-release-action",
"version": "3.0.0",
"description": "Create the next semantic version and tag it.",
"main": "index.js",
"scripts": {
"package": "ncc build index.js -o dist",
"test": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zwaldowski/semver-release-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/zwaldowski/semver-release-action/issues"
},
"homepage": "https://github.com/zwaldowski/semver-release-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^6.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0"
}
}