-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@reprex/create-project",
"version": "1.2.1",
"author": "[email protected]",
"description": "A CLI to bootstrap my new projects",
"main": "src/index.js",
"bin": {
"@reprex/create-project": "bin/create-project",
"create-project": "bin/create-project"
},
"dependencies": {
"arg": "^4.1.3",
"chalk": "^4.1.0",
"esm": "^3.2.25",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"covgen": "^3.1.0",
"gitignore": "^0.6.0",
"spdx-license-list": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [ "bin/", "src/", "templates/" ],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [ "cli", "create-project" ],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/web-reprex/create-project.git"
},
"bugs": {
"url": "https://github.com/web-reprex/create-project/issues"
},
"homepage": "https://github.com/web-reprex/create-project#readme",
"contributors": ["[email protected]", "[email protected]"]
}