-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "grunt-coveralls",
"description": "Grunt task to load coverage results and submit them to Coveralls.io",
"version": "2.0.0",
"homepage": "https://github.com/pimterry/grunt-coveralls",
"author": {
"name": "Tim Perry",
"email": "pimterry@gmail.com",
"url": "http://tim-perry.co.uk"
},
"repository": {
"type": "git",
"url": "git://github.com/pimterry/grunt-coveralls.git"
},
"bugs": {
"url": "https://github.com/pimterry/grunt-coveralls/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "grunt test",
"ci": "istanbul cover -- grunt test && grunt coveralls:grunt_coveralls_real_coverage"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.7",
"istanbul": "^0.3.22",
"sinon": "^1.17.7"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"coverage",
"coveralls",
"grunt",
"lcov"
],
"dependencies": {
"coveralls": "^3.0.0"
}
}