-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1000 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "create-starter-cli",
"description": "CLI to create Node.js Application.",
"version": "1.2.0",
"bin": {
"create-starter-cli": "index.js"
},
"repository": "rajnish93/create-starter-cli",
"author": {
"name": "rajnish",
"email": "[email protected]",
"url": "https://github.com/rajnish93"
},
"files": [
"index.js",
"utils"
],
"keywords": [
"create-starter-cli",
"command",
"cli",
"boilerplate",
"starter",
"template",
"generator",
"nodejs",
"Rajnish",
"Rajnish Singh"
],
"license": "MIT",
"dependencies": {
"await-to-js": "^3.0.0",
"chalk": "^4.1.1",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^2.0.2",
"cli-should-cancel": "^1.0.3",
"cli-welcome": "^2.2.2",
"data-store": "^4.0.3",
"enquirer": "^2.3.6",
"meow": "9.0.0",
"ora": "^5.4.0"
},
"devDependencies": {
"prettier": "^2.3.0"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
}
}