forked from jescalan/roots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 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
{
"name": "roots",
"version": "3.0.2",
"author": "Jeff Escalante <[email protected]>",
"contributors": [
"Sam Saccone <[email protected]>"
],
"description": "simple, flexible, and powerful static site compiler",
"main": "lib",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jenius/roots"
},
"directories": {
"lib": "lib",
"bin": "bin"
},
"dependencies": {
"accord": "0.16.x",
"argparse": "1.x",
"charge": "0.0.3",
"chokidar": "0.9.x",
"coffee-script": "1.9.x",
"colors": "1.x",
"configstore": "0.3.x",
"graceful-fs": "3.x",
"keen.io": "0.1.x",
"lodash": "3.x",
"minimatch": "2.x",
"mkdirp": "0.5.x",
"npm": "2.x",
"open": "0.0.5",
"readdirp": "1.x",
"rimraf": "2.x",
"serve-static": "1.x",
"ship": "0.2.x",
"sprout": "0.1.x",
"update-notifier": "0.3.x",
"vinyl": "0.4.x",
"when": "3.x"
},
"devDependencies": {
"chai": "1.x",
"chai-as-promised": "4.x",
"chai-fs": "0.1.x",
"chai-webdriver": "1.x",
"coffeelint": "1.x",
"coveralls": "2.x",
"glob": "4.x",
"istanbul": "0.3.x",
"mocha": "2.x",
"mocha-lcov-reporter": "0.0.1",
"mockery": "1.x",
"phantomjs": "1.x",
"roots-util": "0.1.x",
"selenium-webdriver": "2.x",
"sinon": "1.x",
"sinon-chai": "2.x"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "coffeelint lib",
"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",
"postinstall": "node ./post_install.js"
},
"engines": {
"node": ">=0.10.0"
}
}