forked from SBoudrias/gulp-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "gulp-istanbul",
"version": "0.10.4",
"description": "Istanbul unit test coverage plugin for gulp.",
"keywords": [
"gulpplugin",
"coverage",
"istanbul",
"unit test"
],
"homepage": "https://github.com/SBoudrias/gulp-istanbul",
"bugs": "https://github.com/SBoudrias/gulp-istanbul/issues",
"author": {
"name": "Simon Boudrias",
"email": "[email protected]",
"url": "https://github.com/SBoudrias"
},
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/SBoudrias/gulp-istanbul.git"
},
"scripts": {
"pretest": "jshint index.js ./test/.",
"test": "mocha -R spec"
},
"dependencies": {
"gulp-util": "^3.0.1",
"istanbul": "^0.4.0",
"istanbul-threshold-checker": "^0.1.0",
"lodash": "^4.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"gulp": "^3.6.2",
"gulp-mocha": "^2.0.0",
"isparta": "^3.0.0",
"jshint": "^2.5.0",
"mocha": "^2.0.1",
"rimraf": "^2.2.8"
},
"license": "MIT"
}