UNPKG

coveralls-next

Version:

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

82 lines (81 loc) 2.25 kB
{ "name": "coveralls-next", "description": "takes json-cov output into stdin and POSTs to coveralls.io", "version": "4.2.1", "keywords": [ "coverage", "coveralls" ], "author": "Gregg Caines", "license": "BSD-2-Clause", "repository": { "type": "git", "url": "git://github.com/jtwebman/coveralls-next.git" }, "bugs": { "url": "https://github.com/jtwebman/coveralls-next/issues" }, "homepage": "https://github.com/jtwebman/coveralls-next#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)", "JT Turner <jtwebman@gmail.com> (https://github.com/jtwebman)" ], "bin": { "coveralls": "./bin/coveralls.js" }, "main": "index.js", "directories": { "test": "test" }, "scripts": { "lint": "eslint .", "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", "test": "npm run lint && npm run mocha" }, "dependencies": { "form-data": "4.0.0", "js-yaml": "4.1.0", "lcov-parse": "1.0.0", "log-driver": "1.2.7", "minimist": "1.2.8" }, "devDependencies": { "eslint": "8.57.0", "eslint-config-google": "0.14.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "5.1.3", "mocha": "10.4.0", "nyc": "15.1.0", "prettier": "3.2.5", "should": "13.2.3", "shx": "0.3.4", "sinon": "17.0.1" }, "engines": { "node": ">=16" }, "files": [ "bin/coveralls.js", "lib/*.js", "index.js" ], "nyc": { "reporter": [ "lcov", "text-summary" ] } }