-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
39
40
41
42
43
44
{
"name": "@lilpacy/setup-github-rules",
"version": "0.1.2",
"description": "One-shot interactive GitHub repository rules setup using gh CLI. No Terraform state, no generated files.",
"type": "module",
"bin": {
"setup-github-rules": "bin/setup-github-rules.js"
},
"files": [
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"check": "node --check ./bin/setup-github-rules.js",
"test": "node --test",
"prepublishOnly": "npm run check && npm test && npm pack --dry-run",
"start": "node ./bin/setup-github-rules.js"
},
"keywords": [
"cli",
"github",
"gh",
"ruleset",
"branch-protection",
"pull-request"
],
"author": "lilpacy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lilpacy/setup-github-rules-cli.git"
},
"bugs": {
"url": "https://github.com/lilpacy/setup-github-rules-cli/issues"
},
"homepage": "https://github.com/lilpacy/setup-github-rules-cli#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}