-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "sprout-cli",
"description": "command-line interface for sprout",
"version": "1.1.1",
"author": "Carrot Creative <[email protected]>",
"bin": {
"sprout": "bin/sprout"
},
"bugs": "https://github.com/carrot/sprout-cli/issues",
"contributors": [
"Noah Portes Chaikin <[email protected]>",
"Kyle MacDonald <[email protected]>",
"Jeff Escalante <[email protected]"
],
"dependencies": {
"argparse": "^1.0.2",
"chalk": "^1.1.3",
"inquirer": "^3.0.1",
"lodash": "^4.12.0",
"mkdirp": "^0.5.0",
"osenv": "^0.1.0",
"sprout": "^1.2.0",
"when": "^3.7.7"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "2.11.15",
"istanbul": "^0.4.3",
"jsdoc": "^3.3.0-beta2",
"mocha": "^2.5.3",
"rimraf": "^2.3.2",
"snazzy": "^6.0.0",
"standard": "^9.0.0"
},
"engines": {
"node": ">= 4"
},
"homepage": "https://github.com/carrot/sprout-cli",
"keywords": [
"cli",
"configuration",
"new",
"project",
"sprout",
"templating"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/carrot/sprout-cli"
},
"scripts": {
"coverage": "istanbul cover _mocha --report html -- -R spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "standard --verbose | snazzy",
"precommit": "npm run lint -s",
"pretest": "npm run lint -s",
"test": "mocha"
}
}