-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "roots-contentful",
"description": "An extension for using roots with the API-driven Contentful CMS",
"version": "0.0.9",
"author": "Carrot Creative",
"bugs": {
"url": "https://github.com/carrot/roots-contentful/issues"
},
"dependencies": {
"contentful": "^4.2.1",
"lodash": "^4.13.1",
"pluralize": "^3.0.0",
"roots-util": "0.1.x",
"string": "^3.1.3",
"when": "3.7.x"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"coffee-script": "1.12.4",
"coveralls": "2.x",
"istanbul": "0.4.5",
"mocha": "2.5.3",
"mockery": "1.7.x",
"roots": "5.0.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/carrot/roots-contentful",
"keywords": [
"roots-extension"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/carrot/roots-contentful.git"
},
"scripts": {
"coverage": "make build; NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha; make unbuild; open coverage/lcov-report/index.html;",
"coveralls": "make build; make coveralls; make unbuild;",
"test": "mocha"
}
}