-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "roots",
"description": "simple, flexible, and powerful static site compiler",
"version": "5.2.0",
"author": "Jeff Escalante <[email protected]>",
"bugs": {
"url": "https://github.com/jenius/roots/issues"
},
"contributors": [
"Sam Saccone <[email protected]>"
],
"dependencies": {
"accord": "^0.27.3",
"argparse": "1.x",
"browser-sync": "^2.18.12",
"charge": "0.1.x",
"chokidar": "^1.7.0",
"coffee-script": "^1.12.6",
"colors": "1.x",
"configstore": "^3.1.0",
"graceful-fs": "^4.1.9",
"inquirer": "^3.0.2",
"keen.io": "0.1.x",
"lodash": "^4.17.4",
"micromatch": "^3.0.2",
"mkdirp": "0.5.x",
"npm": "^5.0.4",
"open": "0.0.5",
"osenv": "0.1.x",
"readdirp": "2.x",
"rimraf": "^2.6.1",
"serve-static": "^1.12.3",
"sprout": "^1.2.1",
"update-notifier": "^2.1.0",
"vinyl": "^2.0.2",
"when": "3.7.8"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-fs": "^1.0.0",
"coffeelint": "^1.15.7",
"coveralls": "^2.13.1",
"glob": "^7.1.2",
"istanbul": "^0.4.3",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"mockery": "^2.1.0",
"roots-util": "^0.2.0",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0"
},
"directories": {
"lib": "lib",
"bin": "bin"
},
"engines": {
"node": ">=0.10.0"
},
"homepage": "http://roots.cx",
"keywords": [
"roots",
"static"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/jenius/roots"
},
"scripts": {
"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",
"lint": "coffeelint lib",
"postinstall": "node ./post_install.js",
"test": "npm run lint && mocha"
}
}