-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "sprout",
"version": "0.1.1",
"author": "Carrot Creative <[email protected]>",
"contibutors": [
"Jeff Escalante <[email protected]>"
],
"description": "Simple project templating",
"main": "lib",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/carrot/sprout"
},
"keywords": [
"new",
"project",
"templating",
"configuration"
],
"bugs": "https://github.com/carrot/sprout/issues",
"bin": {
"sprout": "bin/sprout"
},
"man": "man/sprout.1",
"dependencies": {
"coffee-script": "1.7.x",
"colors": "0.6.x",
"indx": "0.1.x",
"osenv": "0.1.x",
"rimraf": "2.x",
"ncp": "0.5.x",
"ejs": "1.x",
"readdirp": "1.0.x",
"when": "3.x",
"mkdirp": "0.5.x",
"which": "1.0.x",
"inquirer": "0.5.x",
"lodash": "2.4.x",
"string": "1.8.x",
"argparse": "0.1.x"
},
"devDependencies": {
"chai": "1.x",
"chai-as-promised": "4.x",
"chai-fs": "0.0.3",
"coffeelint": "1.x",
"coveralls": "2.x",
"errno": "0.1.x",
"istanbul": "0.2.x",
"mocha": "*",
"mocha-lcov-reporter": "0.0.1",
"mockery": "1.4.x",
"rimraf": "2.x",
"shelljs": "0.3.x"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "find lib/ -name '*.coffee' | xargs coffeelint",
"coverage": "make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild",
"coveralls": "make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild"
},
"engines": {
"node": ">=0.10.0"
}
}