UNPKG

coveralls

Version:

takes json-cov output into stdin and POSTs to coveralls.io

114 lines (113 loc) 2.79 kB
{ "name": "coveralls", "description": "takes json-cov output into stdin and POSTs to coveralls.io", "version": "3.1.1", "keywords": [ "coverage", "coveralls" ], "author": "Gregg Caines", "license": "BSD-2-Clause", "repository": { "type": "git", "url": "git://github.com/nickmerwin/node-coveralls.git" }, "bugs": { "url": "https://github.com/nickmerwin/node-coveralls/issues" }, "homepage": "https://github.com/nickmerwin/node-coveralls#readme", "maintainers": [ "Nick Merwin <nick@coveralls.io> (https://coveralls.io)" ], "contributors": [ "Gregg Caines <gregg@caines.ca> (http://caines.ca)", "Joshua Ma <github@joshma.com> (http://joshma.com)", "Alan Gutierrez <alan@prettyrobots.com> (http://www.prettyrobots.com/)", "Kir Belevich (https://github.com/svg)", "elliotcable <github@elliottcable.name> (http://elliottcable.name/)", "Slotos <slotos@gmail.com> (http://slotos.net)", "mattjmorrison <mattjmorrison@mattjmorrison.com> (http://mattjmorrison.com)", "Arpad Borsos <arpad.borsos@googlemail.com> (http://swatinem.de/)", "Adam Moss (https://github.com/adam-moss)" ], "bin": { "coveralls": "./bin/coveralls.js" }, "main": "index.js", "directories": { "test": "test" }, "scripts": { "lint": "xo", "mocha": "_mocha -b -R spec", "test-cov": "nyc npm run mocha", "test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose", "test": "npm run lint && npm run mocha" }, "dependencies": { "js-yaml": "^3.13.1", "lcov-parse": "^1.0.0", "log-driver": "^1.2.7", "minimist": "^1.2.5", "request": "^2.88.2" }, "devDependencies": { "glob-parent": ">=5.1.2", "mocha": "^6.2.3", "nyc": "^14.1.1", "should": "^9.0.2", "shx": "^0.3.2", "sinon": "^8.1.1", "trim-newlines": ">=3.0.1", "xo": "^0.24.0" }, "engines": { "node": ">=6" }, "files": [ "bin/coveralls.js", "lib/*.js", "index.js" ], "nyc": { "reporter": [ "lcov", "text-summary" ] }, "xo": { "space": true, "ignores": [ "test/fixtures/" ], "rules": { "camelcase": "off", "capitalized-comments": "off", "handle-callback-err": "error", "import/order": "off", "no-negated-condition": "off", "object-curly-spacing": [ "error", "always" ], "quote-props": [ "error", "consistent" ], "space-before-function-paren": [ "error", "never" ], "spaced-comment": "off", "unicorn/filename-case": "off" }, "overrides": [ { "files": "test/*.js", "envs": [ "mocha" ] } ] } }