UNPKG

1.84 kBJSONView Raw
1{
2 "name": "grunt-mocha-cov",
3 "description": "Run Mocha server-side tests in Grunt with code coverage support and optional integration to coveralls.io.",
4 "version": "0.4.0",
5 "author": "Mike Moulton <mike@meltmedia.com> (http://meltmedia.com)",
6 "contributors": [
7 "Gregg Caines <gregg@caines.ca> (https://github.com/cainus/node-coveralls)",
8 "Roland Warmerdam (https://github.com/Rowno/grunt-mocha-cli)",
9 "Spencer Alger <spencer@spenceralger.com>",
10 "XhmikosR <xhmikosr@gmail.com>"
11 ],
12 "keywords": [
13 "gruntplugin",
14 "mocha",
15 "coveralls",
16 "blanket"
17 ],
18 "homepage": "https://github.com/mmoulton/grunt-mocha-cov",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/mmoulton/grunt-mocha-cov.git"
22 },
23 "licenses": [
24 {
25 "type": "MIT",
26 "url": "https://raw.github.com/mmoulton/grunt-mocha-cov/master/LICENSE"
27 }
28 ],
29 "bugs": {
30 "url": "https://github.com/mmoulton/grunt-mocha-cov/issues"
31 },
32 "engines": {
33 "node": ">= 0.10.0"
34 },
35 "dependencies": {
36 "blanket": "1.1.6",
37 "coveralls": "2.11.2",
38 "lcov-parse": "0.0.9",
39 "lodash.defaults": "3.0.0",
40 "mkdirp": "0.5.0",
41 "mocha": "2.2.1",
42 "mocha-lcov-reporter": "0.0.2",
43 "request": "2.53.0"
44 },
45 "devDependencies": {
46 "chai": "2.1.2",
47 "coffee-script": "1.9.1",
48 "grunt": "0.4.5",
49 "grunt-cli": "0.1.13",
50 "grunt-contrib-jshint": "0.11.1",
51 "mocha-term-cov-reporter": "0.2.0",
52 "should": "5.2.0"
53 },
54 "peerDependencies": {
55 "grunt": ">=0.4.0"
56 },
57 "scripts": {
58 "test": "grunt test"
59 },
60 "files": [
61 "lib",
62 "tasks",
63 "CHANGELOG.md",
64 "LICENSE"
65 ],
66 "config": {
67 "blanket": {
68 "pattern": [
69 "grunt-mocha-cov/lib",
70 "grunt-mocha-cov/tasks",
71 "test/fixture/pass"
72 ]
73 }
74 },
75 "main": "lib/mocha"
76}