{ "name": "coveralls", "description": "takes json-cov output into stdin and POSTs to coveralls.io", "keywords": [ "coverage", "coveralls" ], "version": "3.0.11", "bugs": { "url": "https://github.com/nickmerwin/node-coveralls/issues" }, "scripts": { "lint": "jshint ./lib ./test ./index.js", "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" }, "bin": { "coveralls": "./bin/coveralls.js" }, "maintainers": [ "Nick Merwin (https://coveralls.io)" ], "contributors": [ "Gregg Caines (http://caines.ca)", "Joshua Ma (http://joshma.com)", "Alan Gutierrez (http://www.prettyrobots.com/)", "Kir Belevich (https://github.com/svg)", "elliotcable (http://elliottcable.name/)", "Slotos (http://slotos.net)", "mattjmorrison (http://mattjmorrison.com)", "Arpad Borsos (http://swatinem.de/)", "Adam Moss (https://github.com/adam-moss)" ], "dependencies": { "js-yaml": "^3.13.1", "lcov-parse": "^1.0.0", "log-driver": "^1.2.7", "minimist": "^1.2.5", "request": "^2.88.0" }, "devDependencies": { "jshint": "^2.10.3", "mocha": "^6.2.2", "nyc": "^14.1.1", "should": "^9.0.2", "shx": "^0.3.2", "sinon-restore": "^1.0.1" }, "engines": { "node": ">=6" }, "main": "index.js", "directories": { "test": "test" }, "repository": { "type": "git", "url": "git://github.com/nickmerwin/node-coveralls.git" }, "author": "Gregg Caines", "license": "BSD-2-Clause", "nyc": { "reporter": [ "lcov", "text-summary" ] }, "files": [ "{bin,lib}/*.js", "index.js" ] }