-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 1.8 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
69
70
71
72
73
74
75
76
{
"name": "grunt-mocha-cov",
"description": "Run Mocha server-side tests in Grunt with code coverage support and optional integration to coveralls.io.",
"version": "0.4.0",
"author": "Mike Moulton <[email protected]> (http://meltmedia.com)",
"contributors": [
"Gregg Caines <[email protected]> (https://github.com/cainus/node-coveralls)",
"Roland Warmerdam (https://github.com/Rowno/grunt-mocha-cli)",
"Spencer Alger <[email protected]>",
"XhmikosR <[email protected]>"
],
"keywords": [
"gruntplugin",
"mocha",
"coveralls",
"blanket"
],
"homepage": "https://github.com/mmoulton/grunt-mocha-cov",
"repository": {
"type": "git",
"url": "https://github.com/mmoulton/grunt-mocha-cov.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/mmoulton/grunt-mocha-cov/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/mmoulton/grunt-mocha-cov/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"blanket": "1.1.6",
"coveralls": "2.11.2",
"lcov-parse": "0.0.9",
"lodash.defaults": "3.0.0",
"mkdirp": "0.5.0",
"mocha": "2.2.1",
"mocha-lcov-reporter": "0.0.2",
"request": "2.53.0"
},
"devDependencies": {
"chai": "2.1.2",
"coffee-script": "1.9.1",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.11.1",
"mocha-term-cov-reporter": "0.2.0",
"should": "5.2.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"scripts": {
"test": "grunt test"
},
"files": [
"lib",
"tasks",
"CHANGELOG.md",
"LICENSE"
],
"config": {
"blanket": {
"pattern": [
"grunt-mocha-cov/lib",
"grunt-mocha-cov/tasks",
"test/fixture/pass"
]
}
},
"main": "lib/mocha"
}