-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 963 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
{
"name": "@thedavefulton/create-node-cli",
"version": "4.3.0",
"description": "A CLI to bootstrap Node.js CLI projects",
"main": "src/index.js",
"bin": "bin/create-node-cli",
"files": [
"bin/",
"src/",
"template/"
],
"repository": {
"type": "git",
"url": "https://github.com/thedavefulton/create-node-cli.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"cli",
"create-node-cli"
],
"author": "David Fulton",
"license": "MIT",
"devDependencies": {
"husky": "^7.0.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"dependencies": {
"arg": "^5.0.0",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"inquirer": "^8.1.2",
"listr": "^0.14.3",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
}
}