-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "roots-cms",
"version": "0.0.8",
"homepage": "https://github.com/carrot/roots-cms/",
"description": "A content management tool for managing roots dynamic content.",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:carrot/roots-cms.git"
},
"author": "Josh Rowley",
"bugs": {
"url": "https://github.com/carrot/roots-cms/issues"
},
"license": "MIT",
"preferGlobal": "true",
"bin": {
"roots-cms": "bin/roots-cms"
},
"dependencies": {
"express": "3.4.x",
"readdirp": "0.3.x",
"when": "~3.0.1",
"js-yaml": "~3.0.1",
"lodash": "~2.4.1",
"knox": "~0.8.8",
"mkdirp": "~0.3.5",
"shelljs": "~0.2.6",
"roots": "3.0.0-rc.6",
"coffee-script": "~1.7.1",
"mime": "^1.2.11",
"roots-cms-client": "0.0.2",
"string": "~1.8.1"
},
"devDependencies": {
"mocha": "~1.16.2",
"should": "~2.1.1",
"chai": "~1.9.1",
"zombie": "~2.0.0-alpha31",
"coveralls": "~2.10.0",
"istanbul": "~0.2.7"
},
"scripts": {
"test": "mocha",
"coveralls": "make build; make coveralls; make unbuild;",
"postinstall": "(cd node_modules/roots-cms-client && npm install)"
}
}