-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 839 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 839 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
{
"name": "repo-checklist",
"version": "1.0.4",
"type": "module",
"description": "A utility helps to setup up repo community standards",
"repository": "git@github.com:RepoHealth/repo-checklist.git",
"author": "Nabeel Shakeel <nabeel.shakeel@techwards.co>",
"license": "MIT",
"private": false,
"bin": {
"repo-checklist": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"main": "index.js",
"scripts": {
"dev": "npx unbuild --stub",
"build": "npx unbuild",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=14.x.x"
},
"homepage": "https://github.com/RepoHealth/repo-checklist#readme",
"devDependencies": {
"@types/node": "^18.11.19",
"@types/prompts": "^2.4.2",
"kolorist": "^1.6.0",
"prompts": "^2.4.2",
"unbuild": "^1.0.2"
}
}