forked from taichi/grunt-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "grunt-istanbul",
"description": "JavaScript codecoverage tool for Grunt",
"version": "0.5.0",
"homepage": "https://github.com/taichi/grunt-istanbul",
"author": {
"name": "taichi",
"email": "ryushi@gmail.com",
"url": "https://twitter.com/ryushi"
},
"contributors": [
"Matthew Andrews <matthew@andrews.eu.com>",
"Ryan Miller <rmiller@marinsoftware.com>",
"rowanbeentje <rowan@beent.je>",
"Martin Geisler <martin@geisler.net>",
"Seth Pollack <spollack@qualitybath.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/taichi/grunt-istanbul.git"
},
"bugs": {
"url": "https://github.com/taichi/grunt-istanbul/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/taichi/grunt-istanbul/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"bin": "bin/grunt-istanbul",
"engines": {
"node": "~0.12.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"chalk": "~1.0.0",
"istanbul" : "~0.3.7",
"nue": "0.7.1"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-clean" : "~0.6.0",
"isparta": "^2.2.0",
"mkdirp": "~0.5.0",
"rimraf": "~2.3.2",
"dateformat" : "~1.0.11"
},
"keywords": [
"gruntplugin","coverage","code coverage", "JS code coverage", "JS coverage","istanbul"
]
}