-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "grunt-coffeecov",
"version": "1.0.0",
"description": "Grunt task to compile CoffeeScript to Javascript with JSCoverage-compatible instrumentation for code coverage",
"main": "Gruntfile.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/mazerte/grunt-coffeecov.git"
},
"keywords": [
"grunt",
"gruntplugin",
"coffeescript",
"instrument",
"instrumentation",
"coverage"
],
"author": "Mathieu Desvé",
"contributors": [
"P. Roebuck (https://github.com/plroebuck/)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/mazerte/grunt-coffeecov/issues/"
},
"homepage": "https://github.com/mazerte/grunt-coffeecov/",
"directories": {
"test": "./test"
},
"dependencies": {
"coffee-coverage": "<2.0.0",
"coffee-script": "<2.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"eslint": "^4.18.2",
"eslint-config-node-style-guide": "^3.0.0",
"eslint-plugin-import": "^2.9.0",
"grunt": "^1.0.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^5.0.4"
},
"engines": {
"node": ">=4.9.1",
"npm": ">=2.15.11"
}
}