-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "github-pr-tasklist-checker",
"version": "1.3.0",
"description": "An Action to check if the PR tasklist is complete.",
"main": "src/index.mjs",
"scripts": {
"build": "ncc build ./src/index.mjs --license license.txt -o dist",
"start": "DEBUG=1 node src/index.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Awayume/github-pr-tasklist-checker.git"
},
"author": "Awayume <dev@awayume.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Awayume/github-pr-tasklist-checker/issues"
},
"homepage": "https://github.com/Awayume/github-pr-tasklist-checker#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^9.26.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.11",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^59.0.0",
"eslint-plugin-unused-imports": "^4.1.4"
},
"engines": {
"node": "20.x"
}
}