forked from jribble/grunt-jasmine-node-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
61
62
63
64
65
66
67
68
{
"name" : "grunt-jasmine-node-coverage",
"description" : "Grunt task for running jasmine-node using istanbul for code coverage reports. Based off of grunt-jasmine-node by Omar Gonzalez (s9tpepper).",
"version" : "0.3.1",
"homepage" : "https://github.com/jribble/grunt-jasmine-node-coverage",
"author" : {
"name" : "Jarrod Ribble",
"email" : "[email protected]"
},
"contributors": [
{
"name": "Juga Paazmaya",
"email": "[email protected]",
"url": "http://paazmaya.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jribble/grunt-jasmine-node-coverage.git"
},
"bugs": {
"url": "https://github.com/jribble/grunt-jasmine-node-coverage/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jribble/grunt-jasmine-node-coverage/blob/master/LICENSE-MIT"
}
],
"main": "tasks/jasmine-node-task.js",
"bin": "bin/grunt-jasmine-node",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
},
"files": [
"bin",
"tasks",
"LICENSE-MIT",
"package.json",
"README.md"
],
"dependencies": {
"deepmerge": "~0.2",
"istanbul": "~0.3",
"jasmine-node": ">=1.14.0"
},
"devDependencies": {
"grunt": "~0.4",
"grunt-contrib-jshint": "~0.10"
},
"peerDependencies": {
"grunt" : "~0.4"
},
"keywords": [
"gruntplugin",
"grunt",
"plugins",
"builds",
"ci",
"jasmine",
"jasmine-node",
"istanbul",
"coverage"
]
}