-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "grunt-jasmine-node-coverage",
"description": "Grunt task for running jasmine using istanbul for code coverage reports. Based off of grunt-jasmine-node by Omar Gonzalez (s9tpepper).",
"version": "2.0.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": "https://paazmaya.fi"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jribble/grunt-jasmine-node-coverage.git"
},
"bugs": {
"url": "https://github.com/jribble/grunt-jasmine-node-coverage/issues"
},
"license": "MIT",
"main": "tasks/jasmine-node-task.js",
"engines": {
"node": ">=4.2.0"
},
"scripts": {
"test": "grunt test",
"lint": "grunt eslint"
},
"files": [
"tasks",
"LICENSE-MIT",
"package.json",
"README.md"
],
"dependencies": {
"deepmerge": "^2.2.1",
"istanbul": "^0.4.5",
"jasmine": "2.5.2",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "^3.3.0"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-eslint": "^21.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
},
"keywords": [
"gruntplugin",
"grunt",
"plugins",
"builds",
"ci",
"jasmine",
"istanbul",
"coverage"
]
}