-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 1.84 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "choo-cli",
"version": "2.0.1",
"description": "create choo apps from the command line",
"bin": {
"choo": "bin/cli.js",
"choo-new": "bin/choo-new.js",
"choo-generate": "bin/choo-generate.js"
},
"dependencies": {
"chalk": "^1.1.3",
"chalkline": "0.0.5",
"cli-spinners": "^1.0.0",
"cross-spawn": "^5.1.0",
"espree": "^3.4.3",
"inquirer": "^3.0.2",
"left-pad": "^1.1.1",
"lodash": "^4.14.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^3.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"pico-lambda": "^2.1.0",
"ramda": "^0.24.0",
"resolve": "^1.3.3",
"rimraf": "^2.6.0",
"simple-git": "^1.80.1",
"walk-back": "^3.0.0",
"yamljs": "^0.2.10"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"scripts": {
"clean": "rimraf temp",
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"pretest": "npm run clean",
"posttest": "npm run clean",
"test": "standard --fix | snazzy && NODE_ENV=test tape --require ./tests/**/*.js | tap-summary",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trainyard/choo-cli.git"
},
"keywords": [
"choo.js",
"generator",
"scaffold",
"plop",
"yeoman-generator",
"slush",
"cli",
"choo",
"boilerplate",
"template"
],
"author": "Matt McFarland",
"license": "MIT",
"bugs": {
"url": "https://github.com/trainyard/choo-cli/issues"
},
"homepage": "https://github.com/trainyard/choo-cli#readme",
"devDependencies": {
"clinton": "^0.13.0",
"dependency-check": "^2.6.0",
"file-exists": "^5.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"tap-summary": "^3.0.2",
"tape": "^4.6.0",
"tape-catch": "^1.0.6"
},
"standard": {
"ignore": [
"template"
]
}
}