-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1014 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1014 Bytes
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": "consecutive-workflow-action",
"version": "1.1.0",
"description": "Make workflow runs run consecutively.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"all": "npm run lint && npm run prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mktcode/consecutive-workflow-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Workflow",
"Consecutive"
],
"author": "mktcode",
"license": "MIT",
"bugs": {
"url": "https://github.com/mktcode/consecutive-workflow-action/issues"
},
"homepage": "https://github.com/mktcode/consecutive-workflow-action#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.23.0",
"globals": "^16.0.0"
}
}