-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 731 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 731 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
{
"name": "create-zp-cli",
"version": "1.0.5",
"description": "CLI bootstrap for my new projects",
"main": "src/index.js",
"bin": {
"@zacharyp856/create-zp-cli": "bin/create-zp-cli.js",
"create-zp-cli": "bin/create-zp-cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"create-zp-cli"
],
"author": "",
"license": "ISC",
"files": [
"bin/",
"src/",
"templates/",
"public/"
],
"dependencies": {
"arg": "^5.0.1",
"chalk": "^4.1.2",
"degit": "^2.8.4",
"esm": "^3.2.18",
"inquirer": "^8.2.0",
"listr": "^0.14.3",
"pkg-install": "^1.0.0"
}
}