UNPKG

coveralls-next

Version:

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

80 lines (79 loc) 2.21 kB
{ "name": "coveralls-next", "description": "takes json-cov output into stdin and POSTs to coveralls.io", "version": "6.0.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": { "js-yaml": "4.1.1", "lcov-parse": "1.0.0" }, "devDependencies": { "eslint": "9.39.1", "eslint-config-google": "0.14.0", "eslint-config-prettier": "10.1.8", "eslint-plugin-prettier": "5.5.4", "mocha": "11.7.5", "nyc": "17.1.0", "prettier": "3.6.2", "proxyquire": "^2.1.3", "should": "13.2.3", "shx": "0.4.0", "undici": "7.16.0" }, "engines": { "node": ">=20" }, "files": [ "bin/coveralls.js", "lib/*.js", "index.js" ], "nyc": { "reporter": [ "lcov", "text-summary" ] } }