UNPKG

1.36 kBJSONView Raw
1{
2 "name": "gulp-coveralls",
3 "version": "0.1.1",
4 "description": "Gulp plugin to submit code coverage to Coveralls",
5 "keywords": [
6 "gulpplugin",
7 "coverage"
8 ],
9 "homepage": "https://github.com/markdalgleish/gulp-coveralls",
10 "bugs": "https://github.com/markdalgleish/gulp-coveralls/issues",
11 "author": {
12 "name": "Mark Dalgleish",
13 "url": "https://github.com/markdalgleish"
14 },
15 "main": "./index.js",
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/markdalgleish/gulp-coveralls.git"
19 },
20 "scripts": {
21 "test": "jshint index.js && istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec",
22 "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
23 },
24 "dependencies": {
25 "gulp-util": "~2.2.0",
26 "coveralls": "~2.7.1",
27 "through2": "~0.4.1"
28 },
29 "devDependencies": {
30 "coveralls": "~2.8.0",
31 "should": "~2.1.0",
32 "sinon": "~1.8.1",
33 "mocha-lcov-reporter": "0.0.1",
34 "event-stream": "~3.1.0",
35 "mocha": "~1.17.1",
36 "istanbul": "~0.2.4",
37 "jshint": "~2.4.3"
38 },
39 "engines": {
40 "node": ">=0.10.0",
41 "npm": ">=1.2.10"
42 },
43 "licenses": [
44 {
45 "type": "MIT",
46 "url": "http://mit-license.org/markdalgleish"
47 }
48 ]
49}