forked from carrot/roots-dynamic-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "dynamic-content",
"version": "0.3.0",
"author": "Carrot Creative <dev@carrotcreative.com>",
"description": "dynamic content functionality for roots",
"license": "MIT",
"keywords": [
"roots-extension",
"dynamic content"
],
"repository": {
"type": "git",
"url": "https://github.com/carrot/roots-dynamic-content.git"
},
"main": "lib",
"dependencies": {
"lodash": "3.x",
"js-yaml": "3.x",
"when": "3.x"
},
"devDependencies": {
"coffee-script": "1.9.x",
"mocha": "2.x",
"should": "*",
"coffeelint": "*",
"istanbul": "*",
"mocha-lcov-reporter": "*",
"coveralls": "*",
"roots": "3.x",
"roots-util": "0.1.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"
}
}