-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.28 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@korykaai/collab-kit",
"version": "0.4.0",
"description": "Bootstrap GitHub team workflows — PR templates, CI, git hooks, and docs in one command",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"collab-kit": "bin/collab-kit.mjs"
},
"files": [
"bin",
"tools/init.mjs",
"tools/enable-hooks.mjs",
"tools/strip-cursor-trailers.mjs",
"tools/validate-commit.mjs",
"tools/branch-name.mjs",
"tools/README.md",
"docs",
"examples",
".github",
".githooks",
".editorconfig",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --test tools/*.test.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"github",
"workflow",
"collaboration",
"pull-requests",
"conventional-commits",
"git-hooks",
"scaffold",
"developer-tools",
"team",
"open-source"
],
"license": "MIT",
"author": "Kory Kaai",
"repository": {
"type": "git",
"url": "git+https://github.com/kory-kaai/collab-kit.git"
},
"homepage": "https://www.npmjs.com/package/@korykaai/collab-kit",
"bugs": {
"url": "https://github.com/kory-kaai/collab-kit/issues"
},
"engines": {
"node": ">=20"
}
}