-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 888 Bytes
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
{
"name": "oss-starter-kit",
"version": "0.2.1",
"description": "A small CLI that creates starter files for open-source projects.",
"type": "module",
"bin": {
"oss-starter-kit": "src/cli.js"
},
"scripts": {
"test": "node --test",
"check": "node ./src/cli.js init --dry-run .",
"prepublishOnly": "npm test && npm run check"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plainloop-jp/oss-starter-kit.git"
},
"bugs": {
"url": "https://github.com/plainloop-jp/oss-starter-kit/issues"
},
"homepage": "https://github.com/plainloop-jp/oss-starter-kit#readme",
"keywords": [
"open-source",
"oss",
"cli",
"starter-kit",
"templates"
],
"author": "plainloop-jp",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
}
}