-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 837 Bytes
/
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
{
"name": "@xarv/create-js-app",
"version": "0.0.4",
"description": "CLI to bootstrap new JS projects",
"main": "src/index.js",
"bin": {
"@xarv/create-js-app": "bin/create-js-app",
"create-js-app": "bin/create-js-app"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"create-js-app"
],
"files": [
"bin/",
"src/",
"templates/"
],
"author": "xarv",
"license": "MIT",
"dependencies": {
"arg": "^4.1.3",
"chalk": "^3.0.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"inquirer": "^7.0.4",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
}
}