-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
42
{
"name": "action-rotate-version",
"version": "1.0.0",
"description": "A GitHub Action to rename upcoming release to specified name, mark it as released and create a new upcoming release in MantisHub.",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mantishub/action-rotate-version.git"
},
"keywords": [
"github-action",
"mantishub",
"mantisbt",
"mantis-issue-tracker",
"mantis-bug-tracker",
"version-management",
"release-automation"
],
"author": {
"name": "MantisHub",
"email": "victor@mantishub.net",
"url": "https://www.mantishub.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mantishub/action-rotate-version/issues"
},
"homepage": "https://github.com/mantishub/action-rotate-version#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^3.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4"
}
}