-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 884 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
{
"name": "github-pr-tasklist-checker",
"version": "1.2.0",
"description": "An Action to check if the PR tasklist is complete.",
"main": "src/index.js",
"scripts": {
"build": "ncc build ./src/index.js --license license.txt -o dist",
"start": "DEBUG=1 node src/index.js",
"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": "^5.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1"
},
"engines": {
"node": "20.x"
}
}