-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 844 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
32
33
{
"name": "pr-labels-checker",
"version": "2.0.0",
"description": "Github Action to check if a PR's labels pass the specified rules",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build index.cjs --license LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielchabr/pr-has-one-of-labels.git"
},
"keywords": [
"actions",
"labels",
"check",
"status"
],
"author": "Daniel Chabr",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielchabr/pr-has-one-of-labels/issues"
},
"homepage": "https://github.com/danielchabr/pr-has-one-of-labels#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1"
}
}