-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
43
44
45
46
47
48
49
50
{
"name": "@atao60/dummy-cli-starter-kit",
"version": "0.0.3",
"description": "A CLI to bootstrap my new projects",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"dummy-cli-starter-kit"
],
"author": "Pierre Raoul",
"license": "MIT",
"dependencies": {
"arg": "^4.1.2",
"chalk": "^3.0.0",
"covgen": "^3.1.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"gitignore": "^0.6.0",
"inquirer": "^7.0.1",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"spdx-license-list": "^6.1.0"
},
"bin": {
"@atao/dummy-cli-starter-kit": "bin/create-project",
"dummy-cli-starter-kit": "bin/create-project",
"create-@atao/dummy-cli-starter-kit": "bin/create-project",
"create-dummy-cli-starter-kit": "bin/create-project"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/",
"templates/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atao-web/dummy-cli-starter-kit.git"
},
"bugs": {
"url": "https://github.com/atao-web/dummy-cli-starter-kit/issues"
},
"homepage": "https://github.com/atao-web/dummy-cli-starter-kit#readme"
}