-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
42
{
"name": "moscow-prioritization",
"version": "1.0.0",
"description": "MoSCoW Prioritization action to manage label-based requirements prioritization",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --fix .",
"build": "tsc && ncc build lib/action.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grevend/moscow-prioritization.git"
},
"keywords": [
"github",
"actions",
"label",
"MoSCoW",
"prioritization"
],
"author": "grevend",
"license": "MIT",
"bugs": {
"url": "https://github.com/grevend/moscow-prioritization/issues"
},
"homepage": "https://github.com/grevend/moscow-prioritization#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.6.0",
"typescript": "^5.5.4"
}
}