-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "roots-util",
"version": "0.2.0",
"author": "Jeff Escalante <[email protected]>",
"description": "a utility for building roots extensions",
"license": "MIT",
"keywords": [
"roots",
"extension",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/carrot/roots-util.git"
},
"main": "lib",
"dependencies": {
"colors": "1.x",
"glob": "7.0.5",
"lodash": "4.15.0",
"minimatch": "3.x",
"mkdirp": "0.5.x",
"rimraf": "2.x",
"vinyl": "1.2.0",
"when": "3.x"
},
"devDependencies": {
"coffee-script": "1.10.x",
"coveralls": "2.x",
"istanbul": "0.4.x",
"mocha": "2.x",
"mocha-lcov-reporter": "1.2.0",
"roots": "5.0.0",
"should": "11.1.0"
},
"scripts": {
"test": "mocha",
"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"
}
}