-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 774 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 774 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
{
"name": "@chrisweight/cjw-cli",
"version": "0.1.8",
"description": "PoC custom CLI tool used to generate projects from a template repo",
"main": "bin/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chrisweight/cjw-cli.git"
},
"keywords": [
"poc",
"cli",
"seed",
"generator"
],
"author": "Chris Weight",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisweight/cjw-cli/issues"
},
"homepage": "https://github.com/chrisweight/cjw-cli#readme",
"bin": {
"cw": "bin/index.js"
},
"dependencies": {
"inquirer": "5.0.0",
"shelljs": "0.7.8",
"yargs": "10.0.3"
},
"devDependencies": {}
}