forked from ResourcefulJS/ResourcefulJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 965 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
{
"name": "resourcefuljs",
"version": "0.0.1-pre",
"homepage": "http://resourcefuljs.org",
"author": "Ricki Runge <mail@rickirunge.com>",
"dependencies": {
"lodash": "^2.4.1",
"promise": "^6.0.0"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"gulp": "^3.8.6",
"gulp-coverage": "^0.1.24",
"gulp-mocha": "^0.5.1",
"istanbul": "^0.3.2",
"mocha": "^1.20.1",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0"
},
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/ResourcefulJS/ResourcefulJS.git"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}