forked from venh/branch-protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 804 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": "branch-protection",
"version": "1.1.0",
"description": "Custom GitHub Action based on Node.js to set branch protection rules",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/action.js -o dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venh/branch-protection.git"
},
"keywords": [
"branch",
"protection",
"github",
"action"
],
"author": "Venkatesh Subramanian",
"license": "ISC",
"bugs": {
"url": "https://github.com/venh/branch-protection/issues"
},
"homepage": "https://github.com/venh/branch-protection#readme",
"dependencies": {
"@actions/core": "^1.4.0",
"@octokit/request": "^5.6.0",
"@vercel/ncc": "^0.28.6"
}
}