{"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"keywords":["coverage","coveralls"],"dist-tags":{"latest":"3.1.1"},"author":{"name":"Gregg Caines"},"description":"takes json-cov output into stdin and POSTs to coveralls.io","readme":"# node-coveralls\n\n[![Build Status][ci-image]][ci-url] [![Coverage Status][coveralls-image]][coveralls-url]\n\n[Coveralls.io](https://coveralls.io/) support for Node.js. Get the great coverage reporting of coveralls.io and add a cool coverage button (like the one above) to your README.\n\n## Supported CI services:\n\n* [Travis CI](https://travis-ci.org/)\n* [CodeShip](https://codeship.com/)\n* [CircleCI](https://circleci.com/)\n* [Jenkins](https://jenkins.io/)\n* [Gitlab CI](https://gitlab.com/)\n* [AppVeyor](https://www.appveyor.com/)\n* [Buildkite](https://buildkite.com/)\n* [GitHub Actions CI](https://github.com/features/actions)\n* [CodeFresh](https://codefresh.io/)\n\n## Installation:\n\nAdd the latest version of `coveralls` to your package.json:\n\n```shell\nnpm install coveralls --save-dev\n```\n\nIf you're using mocha, add `mocha-lcov-reporter` to your package.json:\n\n```shell\nnpm install mocha-lcov-reporter --save-dev\n```\n\n## Usage:\n\nThis script `bin/coveralls.js` can take standard input from any tool that emits the lcov data format (including [mocha](https://mochajs.org/)'s [LCOV reporter](https://npmjs.org/package/mocha-lcov-reporter)) and send it to coveralls.io to report your code coverage there.\n\nOnce your app is instrumented for coverage, and building, you need to pipe the lcov output to `./node_modules/coveralls/bin/coveralls.js`.\n\nThis library currently supports [Travis CI](https://travis-ci.org/) with no extra effort beyond piping the lcov output to coveralls. However, if you're using a different build system, there are a few **necessary** environment variables:\n\n- `COVERALLS_SERVICE_NAME` (the name of your build system)\n- `COVERALLS_REPO_TOKEN` (the secret repo token from coveralls.io)\n- `COVERALLS_GIT_BRANCH` (the branch name)\n\nThere are optional environment variables for other build systems as well:\n\n- `COVERALLS_FLAG_NAME` (a flag name to differentiate jobs, e.g. Unit, Functional, Integration)\n- `COVERALLS_SERVICE_NUMBER` (a number that uniquely identifies the build)\n- `COVERALLS_SERVICE_JOB_ID` (an ID that uniquely identifies the build's job)\n- `COVERALLS_SERVICE_JOB_NUMBER` (a number that uniquely identifies the build's job)\n- `COVERALLS_RUN_AT` (a date string for the time that the job ran. RFC 3339 dates work. This defaults to your build system's date/time if you don't set it)\n- `COVERALLS_PARALLEL` (set to `true` when running jobs in parallel, requires a completion webhook. More info here: <https://docs.coveralls.io/parallel-build-webhook>)\n\n### GitHub Actions CI\n\nIf you are using GitHub Actions CI, you should look into [coverallsapp/github-action](https://github.com/coverallsapp/github-action).\n\nParallel runs example [workflow.yml](https://github.com/coverallsapp/coveralls-node-demo/blob/master/.github/workflows/workflow.yml)\n\n### [CircleCI Orb](https://circleci.com/)\n\nHere's our Orb for quick integration: [coveralls/coveralls](https://circleci.com/orbs/registry/orb/coveralls/coveralls)\n\nWorkflow example: [config.yml](https://github.com/coverallsapp/coveralls-node-demo/blob/master/.circleci/config.yml)\n\n### [Travis-CI](https://travis-ci.org/)\n\nParallel jobs example: [.travis.yml](https://github.com/coverallsapp/coveralls-node-demo/blob/master/.travis.yml)\n\n### [Jest](https://jestjs.io/)\n\n- Install [jest](https://jestjs.io/docs/en/getting-started)\n- Use the following to run tests and push files to coveralls on success:\n\n  ```sh\n  jest --coverage && coveralls < coverage/lcov.info\n  ```\n\nCheck out an example [here](https://github.com/Ethan-Arrowood/harperdb-connect/blob/master/.travis.yml) which makes use of Travis CI build stages\n\n### [Mocha](https://mochajs.org/) + [Blanket.js](https://github.com/alex-seville/blanket)\n\n- Install [blanket.js](https://github.com/alex-seville/blanket)\n- Configure blanket according to [docs](https://github.com/alex-seville/blanket/blob/master/docs/getting_started_node.md).\n- Run your tests with a command like this:\n\n  ```sh\n  NODE_ENV=test YOURPACKAGE_COVERAGE=1 ./node_modules/.bin/mocha \\\n    --require blanket \\\n    --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js\n  ```\n\n### [Mocha](https://mochajs.org/) + [JSCoverage](https://github.com/fishbar/jscoverage)\n\nInstrumenting your app for coverage is probably harder than it needs to be (read [here](http://seejohncode.com/2012/03/13/setting-up-mocha-jscoverage/)), but that's also a necessary step.\n\nIn mocha, if you've got your code instrumented for coverage, the command for a Travis CI build would look something like this:\n\n```sh\nYOURPACKAGE_COVERAGE=1 ./node_modules/.bin/mocha test -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js\n```\n\nCheck out an example [Makefile](https://github.com/cainus/urlgrey/blob/master/Makefile) from one of my projects for an example, especially the test-coveralls build target. Note: Travis CI runs `npm test`, so whatever target you create in your Makefile must be the target that `npm test` runs (This is set in package.json's `scripts` property).\n\n### [Istanbul](https://github.com/gotwarlost/istanbul)\n\n#### With Mocha:\n\n```sh\nistanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage\n```\n\n#### With Jasmine:\n\n```sh\nistanbul cover jasmine-node --captureExceptions spec/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage\n```\n\n### [Nodeunit](https://github.com/caolan/nodeunit) + [JSCoverage](https://github.com/fishbar/jscoverage)\n\nDepend on nodeunit, jscoverage, and coveralls:\n\n```sh\nnpm install nodeunit jscoverage coveralls --save-dev\n```\n\nAdd a coveralls script to \"scripts\" in your `package.json`:\n\n```json\n\"scripts\": {\n  \"test\": \"nodeunit test\",\n  \"coveralls\": \"jscoverage lib && YOURPACKAGE_COVERAGE=1 nodeunit --reporter=lcov test | coveralls\"\n}\n```\n\nEnsure your app requires instrumented code when `process.env.YOURPACKAGE_COVERAGE` variable is defined.\n\nRun your tests with a command like this:\n\n```sh\nnpm run coveralls\n```\n\nFor detailed instructions on requiring instrumented code, running on Travis CI and submitting to coveralls [see this guide](https://github.com/alanshaw/nodeunit-lcov-coveralls-example).\n\n### [Poncho](https://github.com/deepsweet/poncho)\n\nClient-side JS code coverage using [PhantomJS](https://github.com/ariya/phantomjs), [Mocha](https://mochajs.org/) and [Blanket](https://github.com/alex-seville/blanket):\n\n- [Configure](https://mochajs.org/#running-mocha-in-the-browser) Mocha for browser\n- [Mark](https://github.com/deepsweet/poncho#usage) target script(s) with `data-cover` HTML attribute\n- Run your tests with a command like this:\n\n  ```sh\n  ./node_modules/.bin/poncho -R lcov test/test.html | ./node_modules/coveralls/bin/coveralls.js\n  ```\n\n### [Lab](https://github.com/hapijs/lab)\n\n```sh\nlab -r lcov | ./node_modules/.bin/coveralls\n```\n\n### [nyc](https://github.com/istanbuljs/nyc)\n\nWorks with almost any testing framework. Simply execute\n`npm test` with the `nyc` bin followed by running its reporter:\n\n```shell\nnyc npm test && nyc report --reporter=text-lcov | coveralls\n```\n\n### [TAP](https://github.com/tapjs/node-tap)\n\nSimply run your tap tests with the `COVERALLS_REPO_TOKEN` environment\nvariable set and tap will automatically use `nyc` to report\ncoverage to coveralls.\n\n### Command Line Parameters\n\n```shell\nUsage: coveralls.js [-v] filepath\n```\n\n#### Optional arguments:\n\n- `-v`, `--verbose`\n- `filepath` - optionally defines the base filepath of your source files.\n\n## Running locally\n\nIf you're running locally, you must have a `.coveralls.yml` file, as documented in [their documentation](https://docs.coveralls.io/ruby-on-rails#configuration), with your `repo_token` in it; or, you must provide a `COVERALLS_REPO_TOKEN` environment variable on the command-line.\n\nIf you want to send commit data to coveralls, you can set the `COVERALLS_GIT_COMMIT` environment-variable to the commit hash you wish to reference. If you don't want to use a hash, you can set it to `HEAD` to supply coveralls with the latest commit data. This requires git to be installed and executable on the current PATH.\n\n## Contributing\n\nI generally don't accept pull requests that are untested or break the build, because I'd like to keep the quality high (this is a coverage tool after all!).\n\nI also don't care for \"soft-versioning\" or \"optimistic versioning\" (dependencies that have ^, x, > in them, or anything other than numbers and dots). There have been too many problems with bad semantic versioning in dependencies, and I'd rather have a solid library than a bleeding-edge one.\n\n\n[ci-image]: https://github.com/nickmerwin/node-coveralls/workflows/Tests/badge.svg\n[ci-url]: https://github.com/nickmerwin/node-coveralls/actions?workflow=Tests\n\n[coveralls-image]: https://coveralls.io/repos/nickmerwin/node-coveralls/badge.svg?branch=master&service=github\n[coveralls-url]: https://coveralls.io/github/nickmerwin/node-coveralls?branch=master\n","repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"users":{"afc163":true,"t1st3":true,"kabomi":true,"zhangyaochun":true,"nadimix":true,"rizowski":true,"markthethomas":true,"nickmerwin":true,"abhisekp":true,"starver":true,"brad-christie":true,"honzajde":true,"jclo":true,"silentcloud":true,"gr2m":true,"jessaustin":true,"moosecouture":true,"fhinkel":true,"sejoker":true,"dzhou777":true,"langri-sha":true,"mseminatore":true,"dpjayasekara":true,"seangenabe":true,"joris-van-der-wel":true,"cripstian":true,"conechan":true,"ricardogobbosouza":true,"standy":true,"d-band":true,"daniel-lewis-bsc-hons":true,"danday74":true,"tombenke":true,"johniexu":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"license":"BSD-2-Clause","versions":{"1.0.0":{"name":"coveralls","description":"taks json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"1.0.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"underscore":"1.3.3","request":"2.16.2","form-data":"0.0.7"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@1.0.0","dist":{"shasum":"dfb9474264c2481fd6162bb563ad53f721758660","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-1.0.0.tgz","integrity":"sha512-Zl+Qlf+K2ml+9wsNNmsRuXI8fvc0Gtnwc60pvBPKqrI1vdjhqVXuZ4TvojYH6Trd3faGd5/YP1RsXXLhG81pGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwA+gg+c3r7X40muMde5BDjwcvNPvgi3NXScRd09f+vwIhANT2QUy8+Kmo9QWYjgeRvRH/3M7dKQZQmwMiFfDcglld"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"1.1.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"1.1.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"underscore":"1.3.3","request":"2.16.2","form-data":"0.0.7"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@1.1.0","dist":{"shasum":"c3e45332ea34d8b2ce8891f198a913120b0bb7fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-1.1.0.tgz","integrity":"sha512-jBHx0QY698pitHeDifE9gdDJvNYmjPc2sEIRLBCJ850dE0ei6bOe374GUCkgBLgKGG2UAKApCp8HxCwL43yhHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDjmobf4SRWG0vOCgjFjXRzYWk0/caY/l3EtnQMyEHb4AiASuq2jBy8StmgwLTFDdCTCApr5mfeDBMga5ZvnlLogOA=="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"1.1.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"1.1.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"underscore":"1.3.3","request":"2.16.2","form-data":"0.0.7"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@1.1.1","dist":{"shasum":"4352ccb936b3d59785fda2312dfe572773dda1ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-1.1.1.tgz","integrity":"sha512-FuwWtK0KkZRABigONjfxQ7CtxMitR4pws/V+4+HNfE440cneAXzL6rfiQ1s5jU7Tj947g5SQsQH7auY6TPNjQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDErtwG0DkHrHjgdCy2ADFi+zGzr58D/ejL48SXyjBU7gIhALybKHfoS13l3Ld9M4b29KHpFLEI+UmZCCbDJgRjWZnL"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"1.1.2":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"1.1.2","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"underscore":"1.3.3","request":"2.16.2","form-data":"0.0.7"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@1.1.2","dist":{"shasum":"aa239ef240540887f8e88fdd5384dcabba15c4a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-1.1.2.tgz","integrity":"sha512-O+kqXA3Kiv+KrsincBT+lJZNnJ9ElNnL7xpuLbNr5KR6dO2MM5vR7l4nMU9QEiu0i4F3WYQmpPfkK/jeUeqvUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENElC8XYibI57d3Bi2Q7KtUQipS33Kr4woge1CEcWyUAiEAgwAT0C6VDP7KdwmoFRsEpVuKeUCxuy1NtMyztQ8uHBo="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"1.1.3":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"1.1.3","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"underscore":"1.3.3","request":"2.16.2","form-data":"0.0.7"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@1.1.3","dist":{"shasum":"63d14c085f1b9016537908b0dbbc74755b3aeefc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-1.1.3.tgz","integrity":"sha512-3psT+BqUGl164Xdr/hi70nEqF+ALLCjOuzNdcu77a9AmumNZUcT1rCn5egNWy/S4Qru4yFdnXAhgoLJ3/KQrkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0llhqEoFy5+UJQ5f09D9JzV34KHQ4WyEJVrkHc+F1UAIgf1AeThZHkPvUmKln/FGLAQzOCMophetV2L7s3iPQyto="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.0","dist":{"shasum":"86700187dfd9add0c4ecca367180d1ea0d1114d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.0.tgz","integrity":"sha512-h5R/IxeKkjFo9MhYVSwLB7wL6taIzU6FIXn/SQ6lShnSI8Q7Op300XZWu33RfgcmjVzqIJXXl8+5/30ChV5Ccg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAn7l5A/NtwKOBcQi/n7Gm05ITwDwUaRyqXo6mZB+lLSAiEAzdjRiGCB4aymkdUinfFOEG1czvQMiqej8b4/rWB5ZCg="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.1","dist":{"shasum":"b744db075b7e7d2f87a5b1b7048b4bdd2b5d5dc6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.1.tgz","integrity":"sha512-mSwiC4/eagJksH97+IV4pK7cgpZmuL09oqhICfUCK+KcfIDGENaxVYEN57kbOLVi+rZdaSOCGIAKr5XBpoyqWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChl8XKA1slpXiyWa0Pk3NYE88R93X5QMIPaIUdChtJmwIhAKiV4oiA7ngzMJD4TQWsmMrC1z7+wRPBvOSVurHj3Lx0"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.2":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.2","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.2","dist":{"shasum":"0dd44238ac27daafcb27ac6ffc2c2250c525a071","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.2.tgz","integrity":"sha512-AYatZ8c2Q0CMpjEiwk8vmmaPbXq6sXreDTPLGAEod/DpLledayieLtOJQUZEQbykHYssXPJOWuxg+InDIiTq6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDdcNShjmumotdipuY5K/nxB+8UifzA16PSWarh/nNiHAiEAo8It0flt3jRxIrK0CCQetvYnKGUiB6FzgHeECkRfn9Q="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.3":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.3","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.3","dist":{"shasum":"b31c6d60466a0fc8d410c384eacfed227cbb4d5f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.3.tgz","integrity":"sha512-t4TYo2vsQAU2AFlQFGEIea2+dFl+xFdiQBHyzjsh3mLZr/2vpQ2fWsnqAtdH4zZJO0TA/KQtDex4U3yUgVUy9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVlmTfiRGbYtXGIBzDnzi+mfMjFYmedoH1K3sk81KXVwIgZg84pixIvXpMtyqoVCpapMmUAF08duFR12ttbn5zKe0="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.4":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.4","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.4","dist":{"shasum":"5bd4295ee12a406d416ad5133a377c3b2d021d4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.4.tgz","integrity":"sha512-EUkraqyBwNl6xCSXyvAB5rfrNKQkaVVppLUxW3U/zVflkih8D/ydJb0RsMjZNa1cf5q+DnRgw94NkBw1umiq1Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDRIhTmF6+Of01CFXyqPrCEb42ULk2v6+oykDO21rJweAiEA8GRUP8Pa4pRoqPq12EMnpQsc9V2Z4OCwu1HLUtCW6WY="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.5":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.5","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"dependencies":{"request":"2.16.2","lcov-parse":"0.0.3"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"_id":"coveralls@2.0.5","dist":{"shasum":"507ac4072972df5191ebe2f79e8d86a7f7306e72","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.5.tgz","integrity":"sha512-8CZ2IZ54IDRtJ8ZJ6lNuFBjItyHIbCJbc9NEF5zPbnJRQ+tuEwXtE5IhNWB945KJQJaKr3+ZbU0UBm5IE13NMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGh110Wtsjy4tpmpU0KEy27lig4gbt5x7fJM7EwEzCpAAiAkGD5L7KLYdH75vgGSfIL42b4QGaJoQf0b+joho+FWSg=="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"directories":{}},"2.0.6":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.6","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"}],"dependencies":{"request":"2.16.2","lcov-parse":"0.0.4"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.6","dist":{"shasum":"acd0b40b86f9809c2df9d57fac23028fa524d0f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.6.tgz","integrity":"sha512-ieQ62OF+SmKHaWw5puzp1vzgbiu7srsKYrfPPvP4GFdYvz9H1gVjStHpxYIRrdUBcIEh+8VrXT5bQgn8dOs7vQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBx/Tn8Ujxz8yhkIn40FQdLoOMeKtkI2tP/skZ9e3Xk0AiEA0iTx7454ylv2qDjgdcngcr3mk73YXu/TnHlKdXjoHt8="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.7":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.7","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"}],"dependencies":{"request":"2.16.2","lcov-parse":"0.0.4"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.7","dist":{"shasum":"5bbf563b7615871ee1ec445b4e315823daa4f085","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.7.tgz","integrity":"sha512-f7WYdb+vvCtLgDFiczm3+Ha63u0Xb0x+h6Abn76lHZs4fi5/nGfbu/QerWIHbCLAbiVQs8fh9VXQpxuNYBkDew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvS672JTG3fhjcjFGk1vwF6wj/zuuc7cDjAzRLa5oaxwIgLUgfmolmeLedF+BXx8BDrcp7chImTXGCcaX7h+kauyg="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.8":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.8","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"}],"dependencies":{"libyaml":"0.2.2","request":"2.16.2","lcov-parse":"0.0.4"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.8","dist":{"shasum":"4d64b675f5e1e5d409baaab1f4d4f851c289a649","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.8.tgz","integrity":"sha512-R+6MGSMpUKPbO7ro2B+0WXV5KWXvLXY8o7NAo0XqML7Pk9Mg2lZy/yEgWdzmlXB0reVNO8QQVFVSXQqWTx1LUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmJ0Ti+TxLrTfflM0muu4ezTfD03bTbSC2zyitSCCm0wIge2SteAhdD4oupz3nJ4TcJPSgKdVkQbTKm/hP6WL74PI="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.9":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.9","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"}],"dependencies":{"libyaml":"0.2.2","request":"2.16.2","lcov-parse":"0.0.4"},"devDependencies":{"mocha":"1.8.1","should":"1.1.0"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.9","dist":{"shasum":"3c35761f675c1403065b5c9204e5ee7761076a01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.9.tgz","integrity":"sha512-Zj86Y5uio71A7JCtlRAp88uagnlY1K7cOJCW51av90QXwHEFUkVbEPH7L68YF20M4lbcOMr1MUDWX9aGWk9k7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFqjJWl+7cFMw/+XdcmCgu0LJLpYRe4Y4wkF0evG+MrZAiEAmZj1GIvTkIUD1ztxzgUT3lO/V7TOl5NVSQRN8KXcr3g="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.10":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.10","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test-coveralls"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"}],"dependencies":{"libyaml":"0.2.2","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.10","dist":{"shasum":"e45f73dad9065b46810f0f2f1ec2507030765566","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.10.tgz","integrity":"sha512-PwDXAQFvWnYwefVDAsMYWAtBcTjkTM09gz3vRnXhDFp1MzBXIGIR8ct5Y67A8eqh579X5GGEAL2uIt17lRXadA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAvPYkEeogKDa6nNmClq4venD5ybp3DRMitCcO3vCRy9AiAO2gHTPYP2p/WmH8dCdXQfyiUME8F5Ba8YQ8M0OkYpEQ=="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.11":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.11","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test-coveralls"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"libyaml":"0.2.2","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.11","dist":{"shasum":"f57b9351e35813c68346d81fc318aae0e9d46125","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.11.tgz","integrity":"sha512-C+sRLQDDyhCjUrsZuyu4Yg92XFzRb3cm2siDdmCGJHKAq1tQK9v6+GRdBLTqN65/53Z2wiOf1cI6JdNaCVImeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5jMj2N8WMW7xvXyDT3IJaFjBG+fITttEugqXj1SRnZAIhAIyCPhKMDvYZDnz8SUQZXQHiHiplV1r8Rws1nUfxc0Y9"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.12":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.12","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test-coveralls"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"libyaml":"0.2.2","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.12","dist":{"shasum":"2e588cea3d886bc49b67c5908b4583ef5ca1c23b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.12.tgz","integrity":"sha512-okqUP2vm87A3WYoO3FmpRe9J8n+iZJby3pwWtiYavhxW8ZIjk71hcqoCVonSQp31ku94ibOTXg0LMbDqGtu0QQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8ha7gh4FcvD4u3Ob/W503N7snkcYdUjrD4Nsk5TPePQIhAOp+3zpLlzJ+5sOUfMvz1IRcU0O2pHlAj5+uTfXl+ZX0"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.13":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.13","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test-coveralls"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.13","dist":{"shasum":"b0f10608f988a7f44fa8409140574fa293274a81","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.13.tgz","integrity":"sha512-DHj/7FUenMhy8xU8Tx8Rn4e0Z6NBt5/WIQW++HCVSST8kVuVwygAIPyirfrYjOYirDBGD5qoeoGhgEEsG+4NTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnlhATqVemvauIMKBCe5dK6vEYRz4H7ydnria/Ut8i8AIgBUyf27drIyZuO9DiZZQhHHlX8owfsdeVXrvdWIchHpk="}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.15":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.15","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.15","dist":{"shasum":"efbdcc04ccfd4a26944b4608d869391871a3c7a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.15.tgz","integrity":"sha512-OxSqt0o31i4QQ5+jOtUvIZltrA1A/DrSrjmaZFn7NKP1vWE/sQI3nXsu21GXZU2Fr66Ype2Fca6hzdyySB1mhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDmjMaZoa4wGlbSEdYFywF5rEGuxUGX07tNeUr7R+HxiAiAPyKTslCYZxRrp/nei6V2Dm7iKS07X35yIYGNDDSFVRw=="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.0.16":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.0.16","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jscoverage":"0.3.7","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.0.16","dist":{"shasum":"90858f78d4a9dc3110c4e65d87b68d639b13ded4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.0.16.tgz","integrity":"sha512-yHEuVlJ3FbV4nv8l9G3oww7lSEJ3JItZ1rLErvgXB2eERC6C4q/fBir9hUh5yOGRnj7kXQ20bSkbYP0QxBhHnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdORJdPj3zamrKVWV7VOsIEgZoULlB9qNAoRrwbSHJoAIgLfdWjGlqOr6krtHt7excfL4C4PHyUVHUHezb9uLAykE="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.1.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.1.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test","blanket":{"pattern":"lib","data-cover-never":"node_modules"}},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1","exec-sync":"~0.1.6"},"devDependencies":{"blanket":"~1.1.5","sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.1.0","dist":{"shasum":"4b512a387c91d2dba7526bb6549730f88931c66c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.1.0.tgz","integrity":"sha512-uS/XAMya/rndVp5JfOyz7AsSl0oQnabKWeCptTwJ+B9apQWu1Zs02mqwbscMPfrJvS9ZPy5WxTi980oezQbtEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAlf3RbWucD0bsimka7K26DLNIVMdMf8Wq5Q1Xm5tsXgAiASOyG2aScuk7N0bNQgl1qyELzOyFxyvDBhmpY4MpZNGg=="}]},"_npmVersion":"1.2.0","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.2.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.2.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"blanket":"~1.1.5","sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.2.0","dist":{"shasum":"9bfe310447895b5665fee55bfee0743cc47fa4e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.2.0.tgz","integrity":"sha512-VaN+m7rOFH/G6E6XSToJcTwjCEh73LEfaCEq8qq8FJIqlmBtjMNz25Ma4hJsyILw3CYVF+WqbckSFzoDh5EvRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBniDcD/royeXq7IZ25S54tQtraFRfI/LDQKowF68vKgIhAPkSoCq2fE10hUoqkK0nezVr6aO+97tCfsqVSSGIG8D1"}]},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.3.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.3.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"blanket":"~1.1.5","sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","_id":"coveralls@2.3.0","dist":{"shasum":"9eda569c115214acb7f58ca3a28401e866485144","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.3.0.tgz","integrity":"sha512-PS8+6QIh9LSX04ESSdFl/WpRKu4ILSLmoY59IvxbV44PPrS7MMS3RE0VZlkwAdztBtJUDsHOM2bN4lndCKC71Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmltAncMsP5pUdcF+PkRZuZlGPNVzb/VehKpWCSyRRugIhAMhbmM6GjsaRNHCL6AVyRV4xLYIi3pIps8SyEMIBwmWg"}]},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.5.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.5.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.5.0","dist":{"shasum":"96d9bdb844438cd98ee9cdcb435a4d6d6aea326f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.5.0.tgz","integrity":"sha512-fObS680neHZrD+SDlYSrKq8zblHA+grhRHNh1jYrumsWqqKx3caHFKVMIP3Ay2QOcFa3lV2MzlmnXEMObKIzlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAV93zTmTYAgAXLsBCYbvX6dF/MrBiYn9EmElyX5brPFAiEA4WIzqQHpxW3nlHG61BdMgBpUOiWiVbv/l7/2/rMIxQU="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.6.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.6.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6","npm":"1.1.65"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.6.0","dist":{"shasum":"4bee45246010b5f99d803ebc48ad5b3858708274","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.6.0.tgz","integrity":"sha512-uWKU2UxRMh+52g2YGsfVKEwiJVatstl6UAv6kl8a+gdA8jKIz/0p8mRuphCdG1INRxKPwt7eTjlyjhdSyRLm9A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1mpiw9CL6fBmxGiKo19CAWhC1sF8hDpRWLDmv1IBeLQIgFN8Q10FvMmeWdtz9Kwol0V2TYrLyzwdC3lUdok10N/4="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.6.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.6.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.6.1","dist":{"shasum":"0de635bba15fd48f4fc557ae9ac21309c013d2de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.6.1.tgz","integrity":"sha512-NLUfQ9qUntoW1x7vVqISEDUIsgNY9UExXFY9vZ4KwxXZJEc0+5Kt4JTYWeBuvWuR2KdDv24JJq9N9xNYMJ6X3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4xJOX+QUDvlCU/44qR5On453iLkVQ1z8ky4nwWr1A1wIgOPnwN4pxh5Q6rcfexJNRs9GJmyOCyVztBhOtonzmwJM="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.7.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.7.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.7.0","dist":{"shasum":"20e88ec977711b58132a1f2dda64e08a18ca9552","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.7.0.tgz","integrity":"sha512-tlTYvBcXq+7zAtjeaistYcRuUTaOUDgUQAFOTRp2Q/ZV4bA2gV6TFyT6uvcQlyS8pvJWBCjJwGuPVP98DuDKwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHvCbjpzrpgrqxjTZRv2DA08a7eOaNbWsy9Z2FjFmkRtAiAOM+/AKZ2Gu8PyZMh8cIvdec9TBAY7ZhyHMIa99CCDQg=="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.7.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.7.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"yaml":"0.2.3","request":"2.16.2","lcov-parse":"0.0.4","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.7.1","dist":{"shasum":"86e91436d248ca9c202504e9e022d77946eded41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.7.1.tgz","integrity":"sha512-puIFErSKmitmEXWc0z6tyYJtcQfcF5jndd5Ch0t4XBc9u+gLuzVCexhIOUpKPuCEcNJ1iMZM1Kzv3hXKunbBuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID55NsJD8T7IgnSYXBI3YU36J1Fv1UX5fzLf0jN6hWM+AiARA/p1CF4GVWa9x3q0Twa6J9SF57rZzuHSMDQ9o26WUA=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.8.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.8.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","request":"2.16.2","lcov-parse":"0.0.6","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.8.0","dist":{"shasum":"959b1b3cb9b5ce2ca502b025fd69eb1700756e63","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.8.0.tgz","integrity":"sha512-LsUExymxZaLktrWWRvTDXXL9FNSICM4u1B/o4aj7X2AdMXwzz1g1szmXHPZt8iwqeCF8ddGFmbsKEEBgb4fqxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGZURq6I/ggQqNmg5SECpgQThqHvBZrt7UBM2oC65vHPAiEAudA6e0r4c7a9nkYEgwRDTWXL962S28MFoZgRmUKWN98="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.10.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.10.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","request":"2.16.2","lcov-parse":"0.0.6","log-driver":"1.2.1"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.1.45","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.10.0","dist":{"shasum":"03f0c54070f30e0d336c79ef2b16a5c53728a7e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.10.0.tgz","integrity":"sha512-h/hCaHExVpdKcrC7WmmKMhXBYnqfkSxV7ZGWKKn1ZNdYT7zJfktZW+LOJPa9EMqKF/WhtKcefECmGGuY6E3XyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNhIxSPFa0kLQ3F67cqyCqP4WmQ7fQxxonuCoY6ZIHswIgEmlejGS20SzPiDbo6/CT1arlLB5PDRQ5SFrLYL0fbLI="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"}},"2.10.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.10.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","request":"2.16.2","lcov-parse":"0.0.6","log-driver":"1.2.4"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.10.1","_shasum":"63fe895d90ac67a71b4b032243d0d9683c6d5770","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"dist":{"shasum":"63fe895d90ac67a71b4b032243d0d9683c6d5770","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.10.1.tgz","integrity":"sha512-Jx0YtTIomJg9tKmS3IpeeiAcPQawXlDRtJcJgkrEsOmkA2f/rdu6ghVS8mfJNWMa5nT41Ge/PW3JyLiNEh8r5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAwichfA+49AydicHIUjvhkXPzYs59er1hxIVjogI+P2AiBm8HhKgCRlM2APyNeX4X6kcj9OLUNit2lr81qfKdSrvw=="}]}},"2.11.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.0","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","request":"2.16.2","lcov-parse":"0.0.6","log-driver":"1.2.4"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.11.0","_shasum":"0516da3bb40672061f27d60d9504e457a57201ec","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"dist":{"shasum":"0516da3bb40672061f27d60d9504e457a57201ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.0.tgz","integrity":"sha512-Idu2qfIrQjyIE2gQAcVh8nHWKnJp7GyiHpxFw1h+Hm1bXbuLVKtsGHbRpYOqs5v7AHVdrHNLAM+kddpZd1ptjg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGwAdVIOj4bOHxBjJ3yXnQ0n+KTVDuWQuSVAvSlcPTVgIgX7ArqVubzOHnaV/s1L4FzvqIILg7qy0WnPu2puI/Udw="}]}},"2.11.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.1","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.36.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.11.1","_shasum":"fedc951296207cc5eb545476923e64f20cf7854d","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"dist":{"shasum":"fedc951296207cc5eb545476923e64f20cf7854d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.1.tgz","integrity":"sha512-ALSvU7L907wahvrTVn288+01P+fXgep3ghq4x1Xac6EsrrbyBaEuGh3uEScjByui9lhsz6PgJVRhSfVxHmz7VA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE/XZjyPhEZAI6K/DIQalZmibQmcBvwxg6ifGTHxnVqWAiEA0VHmvCaEtMHP3cjn63ijTaC3LN/yX2s5HqCvYmEuev4="}]}},"2.11.2":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.2","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"}],"contributors":[{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.40.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","gitHead":"e38fc9a941b7ac41cd613e1758fb0e533db404a4","homepage":"https://github.com/cainus/node-coveralls","_id":"coveralls@2.11.2","_shasum":"d4d982016cb2f9da89d77ab204d86a8537e6a12d","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"gregg@caines.ca"},"dist":{"shasum":"d4d982016cb2f9da89d77ab204d86a8537e6a12d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.2.tgz","integrity":"sha512-+OK2imSCDXSYaOyAxGVUmzDfDtCYLW+gtdDVpjvq99R5Dyry4Puj3EQ/4YnsxNc6RHsuhx3wIkHSBIRaJZY5YQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAIfjjb6A+V33u7n0/gzGHYjK5jfNwyBcB+TLxOYdboGAiEA/3VdlyQoR6fS8u1uKQML0eolrXM1KqcVuwtdjWIyjfE="}]}},"2.11.3":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.3","bugs":{"url":"https://github.com/cainus/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.40.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/cainus/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","gitHead":"cdff9ff2ad276a33ad8710042d942a8e30e043bb","homepage":"https://github.com/cainus/node-coveralls#readme","_id":"coveralls@2.11.3","_shasum":"f9cc4a261fe90925212f4ccd1b28139732426b94","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"f9cc4a261fe90925212f4ccd1b28139732426b94","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.3.tgz","integrity":"sha512-KLBySxAD6SL6BatM8PH594tEt07bmH4Y4K0E4m9C9f0B30WgIYv0ECP2ueMU0kh5rX3K8BpMhnkuf1oHKc7/rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFVw/XbDHEToCBibU90joWyV5+XRxfjzcSJIBRErxFOBAiEA90ZvGAcYQw/uQ3q4In2UAaE54iSUY9rhe3AT5FVPvaQ="}]}},"2.11.4":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.4","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.40.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD","gitHead":"ee82dd92ac9b65f069d5ed722c0e241ddc30dcee","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.4","_shasum":"b42f4e156f6ba9419d27434a4289094f219267f7","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"b42f4e156f6ba9419d27434a4289094f219267f7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.4.tgz","integrity":"sha512-dLHJUkWjMoQqMpGVIE4syOo5JOPk4WpLhC9G7xgrjNgCeANKmGr+mSI9VRX3LTKOXLSoRsu213EwHmuY8JAnkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC2qbCAtIe9LR83g8dqq1q5JNmv0pGYHuq8z+oXFHN4xAiAY0oQkbfrDL+kRVduJq0iI5VWe3LXsi/7+LhMUruK5uw=="}]}},"2.11.5":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.5","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.67.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"3794d16027767014919116bd85a32e3d3de7efa8","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.5","_shasum":"549aaab943acd2f58641255a4588ad48cb9f65b2","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"549aaab943acd2f58641255a4588ad48cb9f65b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.5.tgz","integrity":"sha512-f2nwa9852e988Ri7rpt5imTRs6g45jlihJbXOTsQlodWsdUJXX1JhpKV8ZrIjSHjxYA/49MswdNSzUn18Jgy/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFuzTs6dF8PMsk8FR2nSdcA9ZYd0WPzGKgplledH91pLAiEA3gTehGxnKuY+EzbkGTpkGCjBtlZwXdclarxDnT4GvSE="}]}},"2.11.6":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.6","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.67.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"8c06415c4dfbd72043f26afdf7e34313d5c4444d","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.6","_shasum":"7854ae74b19e2c5bcdae9955b6cd5fb83c0d4ba6","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"7854ae74b19e2c5bcdae9955b6cd5fb83c0d4ba6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.6.tgz","integrity":"sha512-2YD4HvsTiaE2BBg11mvnyKruB7pWocS5KgnH9w8iAvEpCbEYEHALJ/l2RSUkgbUUBkxKlMVOk1PxeggDIrCt2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxzgaoFze2ROIRzwHeVGcywyirGHr54zSyXPwbzV8gRQIhAKV+KPXIvE6+ZFd/W0L6SgmwbOmfHj0el3FnO2wqZD+H"}]}},"2.11.7":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.7","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.67.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"c931ed671d058f28be26b9148f821e1330c7e57c","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.7","_shasum":"e89ede8e5c2e64378f5005eda139276b9adcb997","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"e89ede8e5c2e64378f5005eda139276b9adcb997","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.7.tgz","integrity":"sha512-j7IQVO4oog+8OXiNRUCrB09csiDYnU7bRQZNy/2NVB4k3iZLIa+fR93+DNgtV2XFInBvcnZy+Ol+6iTEhz2PyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC21S5DvIP+8mwlBnGrkEhgmCAOM2C1Hwwg6MJJIU5GzAIgMTWleoehFaZGC1xHdbI9qIonf4DYum9S23lCI5feT8g="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/coveralls-2.11.7.tgz_1456514022949_0.09902384784072638"}},"2.11.8":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.8","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.67.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"668d87369d08f86f7fecef67b6aee5788b5461f0","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.8","_shasum":"d532360a82888936206fbbc0d253a7e375c1eeb6","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"d532360a82888936206fbbc0d253a7e375c1eeb6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.8.tgz","integrity":"sha512-NDbubRNESXjEcEQJ2K4jOlH3fm4bSyT8Sjw7I53c7urp2A2WthgCCAqXTPCyw5rke9/FCca+d5ivISq/UKO0nQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4TDyS6YRHGQN3Vt3Gc9ZBZfhl9N2Z7l9gt7DPQCzzLwIgVirSh6L8sM1nyLLtBembpHN52jgjw2zf++lHjxCHRyA="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/coveralls-2.11.8.tgz_1456514523996_0.18760998197831213"}},"2.11.9":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.9","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.67.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"586bbd9112add7c6a388bb5418b69ceb3cfa9769","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.9","_shasum":"f9ff01a1adbf22a129e35a8d62345a52a781b395","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"f9ff01a1adbf22a129e35a8d62345a52a781b395","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.9.tgz","integrity":"sha512-2lRSlB2de2VQBrCiDbnaMxQbIEL1/Ec2MxAoX06hRaHm2iR7GI7o63JCDqz3IXUbYIIl8G40vcY1OnMBdKH0Aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEh5wpU2TnFFP9UoxFNUAIthe+/5rQiFzCksVa7pPmQgAiEAlk8omYmr5NJpMBWjVwON7CBovcAAZAHjmNQj9bo1ymI="}]},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/coveralls-2.11.9.tgz_1458876208103_0.6618951857089996"}},"2.11.10":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.10","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.69.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"57db7194851af1c773ac35fa5312606823f8ee82","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.10","_shasum":"1dc584a8582aa862191ebffe85ff252eb09349c3","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"1dc584a8582aa862191ebffe85ff252eb09349c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.10.tgz","integrity":"sha512-YG/y1FlUAHWP6wjubww087LD++uh9FSDVASW66zpZnuIwzECV5nyFaHDHFuTSdbHUt0UY7qK8z9ub+3/EOSrBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDzKAeOLMhaQbGXR6wx9KgSml4963MDONRY76JIv81KKQIhAKW23/0vQ14Db0fQa8CJfMkA8ljXLAfcqrl4wAoMuleR"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/coveralls-2.11.10.tgz_1468345573248_0.8963312378618866"}},"2.11.11":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.11","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.69.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"55ebe271ae4dadc5d61ad1eb19863db37b60d9d2","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.11","_shasum":"e8d5802cdef6dc53eaae6f31cf5836359f7e340e","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"e8d5802cdef6dc53eaae6f31cf5836359f7e340e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.11.tgz","integrity":"sha512-4SFIvXCg6BTDzorL5xeAXD/RcmaRVeiByx2ujteTiidszQVDLTRLrHSxnpYAC1w+5Aim0ETlS9rDYvd9rL8Jqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICCBbydK7aTIqmaryqdBxf8SBYhWJSqFRnmX/Ur87jFXAiAcdVJYyobnCUli9JYev/+//A7IVqm2mHhVbAwF9BSxEQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.11.11.tgz_1468345628539_0.17221688036806881"}},"2.11.12":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.12","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"}],"dependencies":{"js-yaml":"3.0.1","lcov-parse":"0.0.6","log-driver":"1.2.4","request":"2.74.0","minimist":"1.2.0"},"devDependencies":{"sinon-restore":"1.0.0","mocha-lcov-reporter":"0.0.1","mocha":"1.8.1","should":"1.1.0","istanbul":"0.2.10","jshint":"2.1.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"95c4dfdd305e27afa5ac2d1dc910b04a1524918b","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.12","_shasum":"ec3069cb753ccd0abd925b6ed8d79086a9c800b1","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"ec3069cb753ccd0abd925b6ed8d79086a9c800b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.12.tgz","integrity":"sha512-5dXS/YkZrgW3aG21PqLa/+y7Ks+XtGLCZ54nmbEFec4Dwzch3u3c4Uo0CdFRRfTKd96E055PAwO2PwDiLJRK1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICu5dZDUtZn0iHgPE3fb5tHyZB0NBt77ZHEnad8pdVteAiAMLR87nO3nEi/MC7jrFOL+Os+fwcZZI0YY8dZOPPFZjQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.11.12.tgz_1469663155570_0.9294778171461076"}},"2.11.13":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.13","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.73.0"},"devDependencies":{"istanbul":"0.4.4","jshint":"2.9.3","mocha":"2.5.3","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.17.0"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"8fcaec4284668d3dc5cc56cc1333421cbf9336db","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.13","_shasum":"dd50322ab9b4fd78c91f6109d058edd6929d1a41","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"dd50322ab9b4fd78c91f6109d058edd6929d1a41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.13.tgz","integrity":"sha512-pIgOM86hqsu5AEqY6t3TIUdH6IATOu1j6VFB5UMy+I6IK7LRek6fB7mMCoX4eartjzoeICMCP8O4H3CUYlfcLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICXdqDjacI1TPRi/2RWkDjPZIv6labhWsrlosFIbsIVsAiAv2YUmelBpBPLeCu1Vblih9vyPQDgRTHRpwe+PfioNow=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/coveralls-2.11.13.tgz_1473959858996_0.9385841356124729"}},"2.11.14":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.14","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.75.0"},"devDependencies":{"istanbul":"0.4.4","jshint":"2.9.3","mocha":"2.5.3","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.17.0"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"cbb1e46ddddb045b538bc63f834937ac92c34eb2","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.14","_shasum":"645a05ac72aa4f2ee811c667390d4ad36f0c2e26","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"645a05ac72aa4f2ee811c667390d4ad36f0c2e26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.14.tgz","integrity":"sha512-6iSD14b07S4xqrpqbUWmI66Jp/3wL9tns0lh+xQajbja8wb9cdj3ai3addpj/oAHozRiCRxM503t1XIzcE4bbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICFUupq2WfXN058yvpEV4PjMl3O87/TR7xqlHDqieX1zAiBHRok/QDjnbNgQYq/UOHlqOrJRpKMMxDSMlsZFofpqkw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.11.14.tgz_1474302657390_0.41298045846633613"}},"2.11.15":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.15","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.75.0"},"devDependencies":{"istanbul":"0.4.4","jshint":"2.9.3","mocha":"2.5.3","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.17.0"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"c81c084fc7280c68e8dc470c31e7291eea183c22","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.15","_shasum":"37d3474369d66c14f33fa73a9d25cee6e099fca0","_from":".","_npmVersion":"3.8.5","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"37d3474369d66c14f33fa73a9d25cee6e099fca0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.15.tgz","integrity":"sha512-ICI9TVtAa3oLEVuRiVbMGWY0EOIj4qOb8ZTT+rYk5dfORUhg/IF1LDi/zOCMb2DpaT8SextVZfVAcN9fzSLvoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICHDLJqXSwKbt4bAnmixUZ+Hm2XZOpk3neVjASphdaCMAiACcYjzwECNnoqfHn9q+FedFbPMq6MgdofygtAZ7qpaEA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.11.15.tgz_1478882102489_0.5062202303670347"}},"2.11.16":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.11.16","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.79.0"},"devDependencies":{"istanbul":"0.4.5","jshint":"2.9.3","mocha":"3.2.0","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.23.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"8dfcfd6d8809e0678958a81f29474ee084d529fe","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.11.16","_shasum":"da9061265142ddee954f68379122be97be8ab4b1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"da9061265142ddee954f68379122be97be8ab4b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.11.16.tgz","integrity":"sha512-Nwh+ARyI60O4aTfywGWExjLqsHf/mvVAzFUA7JHWpTAwLE0GW7wiCSYdUZ/Y6oV2ySEgQbpBTDp5ZOvgqeXoTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAwaaWNn14SaNgSnuZSLXjn0JbmVESGDaKtyo8ISHQzpAiAi2DASBdmJNKgyYxCpGRSSRUGzc/Q1OpHBNxeIKqY/yw=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/coveralls-2.11.16.tgz_1486327143773_0.7425173837691545"}},"2.12.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.12.0","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.79.0"},"devDependencies":{"istanbul":"0.4.5","jshint":"2.9.3","mocha":"3.2.0","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.23.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"d571dac62547f487b3862aca8bf367e95957d904","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.12.0","_shasum":"b3d064108e29728385b56e42fc2d119f43e0e517","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"b3d064108e29728385b56e42fc2d119f43e0e517","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.12.0.tgz","integrity":"sha512-1GjUw0UMbE4ikklnhWyL889fO5pXh0oZ6QeKxuZXov7NgJOX+l+R4zVG66JcpKzt9N8yITe4t4vMCrNFzRvE3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJCvlKS+zPMwRGEZEoenf+efb6MFi+mWXGp+Msq0iWjwIhANAWuFO0LO0s/MOW3aHVmzQuZlvMg94MV/FkGEbP5CrS"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/coveralls-2.12.0.tgz_1488741181498_0.6834747679531574"}},"2.13.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.13.0","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.79.0"},"devDependencies":{"istanbul":"0.4.5","jshint":"2.9.3","mocha":"3.2.0","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.23.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"28212004077299a871a6216273cce7a502e2ce67","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.13.0","_shasum":"df933876e8c6f478efb04f4d3ab70dc96b7e5a8e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"df933876e8c6f478efb04f4d3ab70dc96b7e5a8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.13.0.tgz","integrity":"sha512-gc02eIFu384rHvddSBLL6jRhbuo9Ut2lCNuMaB4rFRQ38q6ZXe4M70Trc+w1ivuElkxpnFfBBhc47hdmnu1u7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAbetoeP4m1Zdba52cukuzvxV54gEIARn9Vj3DRGXXOuAiB5RyEX2bSZ+5mAi6Bz//1wMvGea86qFDkQob/0YrUCmA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.13.0.tgz_1490890702547_0.8795545655302703"}},"2.13.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.13.1","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.79.0"},"devDependencies":{"istanbul":"0.4.5","jshint":"2.9.3","mocha":"3.2.0","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.23.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"b9032a18bd8d7fba7eaa0924a77e810ec4d0935a","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.13.1","_shasum":"d70bb9acc1835ec4f063ff9dac5423c17b11f178","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"shasum":"d70bb9acc1835ec4f063ff9dac5423c17b11f178","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.13.1.tgz","integrity":"sha512-urGQ69YhMJ4l3nmKmij0OrvFYpcm/rd7j0INlz6NT272p8fsijIoA4GxmST3bMvN6Yzru7gL/x6lGq+XZvK12Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIECdIBkvVNU9bRvZ7SgBuYXEvUdB8dQioXebpax3fnMzAiA0nikmXQZNh3R3fWDsJbMtOHJv1ztXKtPHzEFFeZezCQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/coveralls-2.13.1.tgz_1493324463237_0.9315820613410324"}},"2.13.2":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.13.2","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"n@mer.fm","name":"anonymous"},{"email":"gregg@caines.ca","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"^3.6.1","lcov-parse":"^0.0.10","log-driver":"^1.2.5","minimist":"^1.2.0","request":"^2.79.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"2.9.3","mocha":"^3.2.0","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.23.3"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"5ebe57ffd8e761588f6be5bf53ec3c034b11e8ee","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.13.2","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"integrity":"sha512-QVhQ9e3GlX7a5mPUXIxcHIsr24JlPsg1nijoUYmOMdJESLWcshLSquns6oKWoKcH6Zxx+CLRl0nGQGHYOOv6sw==","shasum":"eedc426e08271ab67e93e7c5cb3eb99e2b0ca466","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.13.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEDt09n2gu0rM+O/3z00bPiBGiD78QkWp3RIbE6X4OLGAiEAm4mCAN7Ut/OEmRcxJHaCLw3pdmD553XzGzOgr3mDCyE="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls-2.13.2.tgz_1506561218711_0.18193854065611959"}},"2.13.3":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"2.13.3","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"n@mer.fm","name":"anonymous"},{"email":"gregg@caines.ca","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"3.6.1","lcov-parse":"0.0.10","log-driver":"1.2.5","minimist":"1.2.0","request":"2.79.0"},"devDependencies":{"istanbul":"0.4.5","jshint":"2.9.3","mocha":"3.2.0","mocha-lcov-reporter":"1.2.0","should":"9.0.2","sinon-restore":"1.0.1","snyk":"1.23.3"},"engines":{"node":">=0.8.6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"b2a86d6402fe34c16ae7ebe63ced7da34c1e1db8","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@2.13.3","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"integrity":"sha512-iiAmn+l1XqRwNLXhW8Rs5qHZRFMYp9ZIPjEOVRpC/c4so6Y/f4/lFi0FfR5B9cCqgyhkJ5cZmbvcVRfP8MHchw==","shasum":"9ad7c2ae527417f361e8b626483f48ee92dd2bc7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-2.13.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICNGNX6kmp6FI9o7nw9x8ZHGVxixtDOR6H3+5MycK2pnAiEA32a5PX7+KIgz2XL2PYD0y39VXHVBXw+3J/a6F+Y2LV8="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls-2.13.3.tgz_1506612454890_0.928670541383326"}},"3.0.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.0","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"n@mer.fm","name":"anonymous"},{"email":"gregg@caines.ca","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"^3.6.1","lcov-parse":"^0.0.10","log-driver":"^1.2.5","minimist":"^1.2.0","request":"^2.79.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"2.9.3","mocha":"^3.2.0","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.23.3"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"2ed4d0958b524f7340ccdb9e87c023b30117f714","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"integrity":"sha512-ZppXR9y5PraUOrf/DzHJY6gzNUhXYE3b9D43xEXs4QYZ7/Oe0Gy0CS+IPKWFfvQFXB3RG9QduaQUFehzSpGAFw==","shasum":"22ef730330538080d29b8c151dc9146afde88a99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0Fl6x8xsjRQbhCTEaUsxb7Ob+g+nADRAG46Dn3Zh+mAIhAMPYKball4HllfHvqH8Y2lvfW1yzC7Ks6g7rs4D+PH3/"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls-3.0.0.tgz_1506612515806_0.054974189260974526"}},"3.0.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.1","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"^3.6.1","lcov-parse":"^0.0.10","log-driver":"^1.2.5","minimist":"^1.2.0","request":"^2.79.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"2.9.3","mocha":"^3.2.0","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.23.3"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"e7ae2bfcb468d47369d885b0cde668b79f6d92b5","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.11.1","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"integrity":"sha512-FAzXwiDOYLGDWH+zgoIA+8GbWv50hlx+kpEJyvzLKOdnIBv9uWoVl4DhqGgyUHpiRjAlF8KYZSipWXYtllWH6Q==","shasum":"12e15914eaa29204e56869a5ece7b9e1492d2ae2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.1.tgz","fileCount":26,"unpackedSize":77928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6NfpCRA9TVsSAnZWagAAZZcP/RglvL3r6P3hfwu/L+9g\nXn/bg+mr377oyZo7j2wGvu3g/jlmcx39aMtWUjMb4v8xTHpm5S37b8Zt8OMw\nyeeSAKncXQ/u6yGldD0/xbd/evgEcj4gZXZ8OKJww3Rr+yJkdHhynsq+eyPb\nhdZPW7I879DHqg3cFPqH44oa1zdlkqXwmpOeUgSk5IX1DZUKxVBmgAX8AJ0e\n3DA59ScuQrPJT6mzAy//fWqHqIqIZxCyNn7/8rzWDvMUSbbLoMzFrX3Pn385\nCNVMfzN12ZfOKVXeLSk96gHxjhxVrpG2eY2fQaZcE1MKmUZNdoAopNziKQQf\nthOeDDiSbqQ90yRylkmYGrn4vIFTGsQpUObmzN6gGZQJxfCibVmz3WiTEX81\n40JGJ+J192K4eO0E6usKNTA8FzB+e/5Zg5UM71XkU+fze/syqi4PAfR7INmm\npmEBWVmgtNeF5QT+Js4shGp2I4K194VkVCOGiIJH1eof35/wPCypLUviKsHN\nS9dq0PQUYQNYDwTnN6u48twMtwH6IiCp4Ob9qQO0sLrt5u4Z6bhDwOIZjh7O\nLQp7JkrCjg639FqPYlX0yg/p55Jx+g1FFVsIYsEiuk2kivO9hVcpzWmFWTM5\n2/aqi9xFnd6WH3529M6gyBx/aQBVB8Oatdm2s73pQvoMPFtK0ClJhBC7YvqZ\nGI4p\r\n=oQFT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICtywUoFUIq0KEIR//srXSUdSwdsO8lyzhNc2i6sjQKLAiBUpTIASCJ3gO8o6PtY0M2cGEgAsdHlPopPZGvb8s9PcA=="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.1_1525209063760_0.5256399219971892"},"_hasShrinkwrap":false},"3.0.2":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.2","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.11.0","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.85.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"2.9.3","mocha":"^3.2.0","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.78.0"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"cc671251ef01d71bb340bc37336a8cfaae0542bc","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.2","_npmVersion":"5.6.0","_nodeVersion":"9.11.1","_npmUser":{"name":"anonymous","email":"n@mer.fm"},"dist":{"integrity":"sha512-Tv0LKe/MkBOilH2v7WBiTBdudg2ChfGbdXafc/s330djpF3zKOmuehTeRwjXWc7pzfj9FrDUTA7tEx6Div8NFw==","shasum":"f5a0bcd90ca4e64e088b710fa8dda640aea4884f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.2.tgz","fileCount":26,"unpackedSize":78457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNp/8CRA9TVsSAnZWagAAUbcP/2qrIwg33bx6R9wN+49D\nW1D+6qY3fMXTAos1VkFkOL6XE6boMXr6ybiZ8r8/F2CNi/slCJa41z8VzNJg\nVWT7VP54qlWxEB85gVN8JayyXWqcYX6lWumIpJ0myvk2Ww8xuVNU/wLQ03VZ\nhEAscfTUx74RjC2RMb/1vC6Sj+rIUjzON9sTjxZhXTXfhgujaDoRKRIYyEh0\nGd2cTx46Wf2dOMJyj9aVbUrZ13Xwm08Gx8eOwfS8vZ2RhqRsE/wfrVugXIsC\nAIgmGUtidrMwlCDcjpL+YsySTMGRTfNLvTbQp8i5iNNCWMeh3Sov1aD0XX5W\ntSeDQNU2610lbzUI3KJfqoRWqHoaUFgfFWmIYri6aKWth+d7ieUPfYV6Eq59\nJSvIFM5pbIhaqGwKEECeeP5Xp2UzY+y1ryzDy0OhZRhLgnNVTqhb0TvxgHTs\nGD91C0Deny3NaMmO+9AGRH+VlbrmcLYnrMh42Rb0MdY7ICQlhUzJfUBvxbTa\ntKef9vmyOnFZWy1rRg6hriBInOkn1ZDBznb3H72ETPVWsIWaPmUiO0lU9UxV\nE3gyATd175ip5qO/i6Wl1pty62juzDPbZh94WjDU7Xd+ETV72wMaI+GeHpTD\nsoC6R99Dzzn5nQr7Wu4Km8vbSpHHUyZGsILAgfgnjsmKxu+55KXYIgqtWSDU\nBouI\r\n=o3S+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyMp78DmGS8nTM/Si5QCMJ+dalV/bDZ/fkab4C/N6qfQIgZ6L2pwMvmpRqiKs7BZBxSNChNXJtyc+EIkM7Pw5P4bA="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.2_1530306556440_0.6280759725466236"},"_hasShrinkwrap":false},"3.0.3":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.3","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.11.0","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.86.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"^2.10.1","mocha":"^6.0.1","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.134.2"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"aa2519c770e298d97e5d54df19f1b738c1ba893a","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.3","_nodeVersion":"10.9.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-viNfeGlda2zJr8Gj1zqXpDMRjw9uM54p7wzZdvLRyOgnAfCe974Dq4veZkjJdxQXbmdppu6flEajFYseHYaUhg==","shasum":"83b1c64aea1c6afa69beaf50b55ac1bc4d13e2b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.3.tgz","fileCount":26,"unpackedSize":78444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccDe/CRA9TVsSAnZWagAA1MIQAKQEy/QgDl09pMw08ySI\nI6BXYSqXrSdcvbY6MNXj+7tljCJ+Dvg1CjHQgclrFq72oQkZgg1BBxihHN7y\nyQB2hwC74Twq7taHJIba4fqmAqmQbB34iR4dL49fi1i4wYJQiVxACjW1dIYK\nViRj3s8eXUwvv3mWEsFt12GMSnkt0m/Tdqw8NmCacSyWqhtl+Tn+QqPmKMX/\nAOdF3wVD2cekwLoYfnGEqx3wKyzj1jl6sx5Gh1a4U8PSvpm2UGhOGuqkP4TF\nNvlhTjevdpmsN2v9NTLWiJ4247I+xun4tIMS4AhFyoDPl/747IgnkymEjuG4\nnEskCkzJQhG9pQAva7pPgh3H3hyIdouawvhmrevJOZFa9/TwVH9LVCrxTHDI\n55JzLZroPqLK4UJXFl+DOwy3DDX++EJdSqimeR0AEifbyHa7znYC2Il9STD7\nEcEFYQI1ALFYFU0uXMV584T0+Kx4PlFXF0xCIDZtLnxi7L1IetbHQLG0/ewl\nnn3/jYvIQvM2gE45RY0KdXwgIkYJY1Op9d27tBYIDbvY8XA2Glijm8Ev4NYU\nGgyADot+96irCH7AaleWSDjsdC/UIXkAMuB8dKXPEDHtqY+TJTWEsMa6jk43\n0Wf3sf/4UDA4wI3MMkKMLW2KFxMXUrXHSiBHBfr7j0RaWGjSRzRnBOzBFWKG\npact\r\n=vXlM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAdkjt1OZnGJrJPYZsoDa5zLpk8PTmJaqFEMEgITzDUHAiAM0GibzpY4gZUP9BId/ORft8l8ierhm0t3fjDetWL9jg=="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.3_1550858174878_0.9960634832869284"},"_hasShrinkwrap":false},"3.0.4":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.4","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.11.0","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.86.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"^2.10.1","mocha":"^6.0.1","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.134.2"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"8ac43255d55eb28b25204480492d0c405eaa129c","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.4","_nodeVersion":"10.9.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-eyqUWA/7RT0JagiL0tThVhjbIjoiEUyWCjtUJoOPcWoeofP5WK/jb2OJYoBFrR6DvplR+AxOyuBqk4JHkk5ykA==","shasum":"f50233c9c62fd0973f710fce85fd19dba24cff4b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.4.tgz","fileCount":26,"unpackedSize":78444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+FT0CRA9TVsSAnZWagAA4jEP/3l3p8XK4hYlces04YDE\n6UAdLfgk3FDO5FKLVyB1VWg2J92PSzxC0EqRYNiSO43PP+hDbn5hfyolZNVX\nzZ2oDLQEtiOaSZMfSoHNDLMsczWejNRgegN+4iIEQAUCdpKszxmbPU5PT0+u\n4fdkZXUC2R1xHA5B3FPYYJ0X0h1kXr67pICmTlyDOTng/V2fFZgmTAyHN8Iu\nM1f3MYn7lV9xTNK2Lfpmu9/AejY5izvCmKFBIeK/7DelYD2gJhuFGYiOZwHJ\nPXJin2sXhIwaG8yvaIrYhYwg3ogrDEENcd6BrF24MG2vUerzyl1h7c7paf+C\n4krC5oQc+2ex0lwzU/p16HyIrApOy6egVJnaBllrdDHK0CVB2aBQ3pDMsTRi\n76GixJH21wfSrO/XFMoX5s/MNfkMI4CdWbYw72f6/iJTfk0PRrVgHgiOIzRz\nEKr1PLQS6+o6A6O6i35Lf7k4TDBvSGp8yOJzudCdwqIXAA/sprNhuIdqO65D\nQlZHDovaRu/g59gWl9KWj5EUsZinxj3bZIgaM88BHJOrgUHh2WdubIlJAYtf\nFA3LHDYS90mRSdcZA9mTVPDT+NwPug1+JYL7xmYQwXZfBrWSM7ZO89UySM4r\nech0RuCmHuDLzISTwwfhBPxOLEl+Vc33oKtKwq/Be9Y1x8iowEXk7gf2VMgt\nvDok\r\n=XD3v\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOHOjiDWN+lFTppksxfFt9wmykKfuUGwHYdjn78iv9KgIhAN/y7QxIJnV66re7JZ6BhmO0fnjfMkYVAMDFHyGx1MNP"}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.4_1559778547029_0.5267261749244923"},"_hasShrinkwrap":false},"3.0.5":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.5","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.13.1","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.86.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"^2.10.1","mocha":"^6.1.4","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.134.2"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"55fc4d882b030ff18d64693e0db6b51cad2b527b","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.5","_nodeVersion":"10.9.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-/KD7PGfZv/tjKB6LoW97jzIgFqem0Tu9tZL9/iwBnBd8zkIZp7vT1ZSHNvnr0GSQMV/LTMxUstWg8WcDDUVQKg==","shasum":"28d7274c6c9827aa85537eab82d66e7e62d0d527","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.5.tgz","fileCount":26,"unpackedSize":80034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ+99CRA9TVsSAnZWagAA5tAP/3tgcWehOmBGerkiT2Ae\nz8ri0NX7Dc87WBEeFZMd6FeRARs321acF2acS7/G9oqpjF+cCzFiO1wu2zLJ\nxsw6dEP+EIVa4skMtfthXZJjIxwkX0k5CBh0B1HkIDEHHE1mofVlBHlszgdo\n5cxm5Gpei0ggHoON3WAD7bjdXirEWG3m41UahWRtHCpQFzT/pIUxpPcsLlOS\n8spCzGqHA6HugsEueTMHownjh5dMu3nn1YdxA+W5EigYJ9Kem4i9286KqFnZ\nmKnaV/bQfnlz5v7Mmh6RAIMPzeWoDxKfn2b6InNS13NkxatXXwNjBHCH6UB8\nuAEiz/etMwrDT64H0dvnVZrvuZtrfuDZ2JQ6A9w4hf+9WJ3SJu07SAn1g/LT\nAa6cSAXWgbFI18DgETmoYZLVED9KoGyP5LolMuiOzKVgnzp+VLN3r+/FU80Y\npzR2wydaObrpWv22QYML3M0eklRnEx1SMuHc0cNzaYrOtXsv3oxkhZgVdcCC\nax1imEcqxy/kA3sKohdXDU+GtRiVlsZYiRjRz4GnEAJN2j0aZRKMEq61iUnS\n2vkcT7sTloesjrMHKY5mriw2WPU1Hqs9yWwGWOOC7uOS0hq/mzNdVQA+kyre\nttL5ZKRL5LWKw4xnc6xKVCc9Mrz1wHs45y3QIA3oSjuZVP3ASNJqtiAPvKx6\nRz0c\r\n=Glj2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4aLSwJZ1cbksHhYej7szJVEVKBWcDIP5gcFhE3N9QzgIhAOcY72CCdgdZGzx7E62nagI2gewDN5aauQV+LvjomUk0"}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.5_1562898301121_0.4814858095978738"},"_hasShrinkwrap":false},"3.0.6":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.6","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.13.1","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.86.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"^2.10.1","mocha":"^6.1.4","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.134.2"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"1e096913d5de887722c8ce8619b9f76085632e70","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.6","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-Pgh4v3gCI4T/9VijVrm8Ym5v0OgjvGLKj3zTUwkvsCiwqae/p6VLzpsFNjQS2i6ewV7ef+DjFJ5TSKxYt/mCrA==","shasum":"5c63b2759b6781118e7439bd870ba5e9ee428b25","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.6.tgz","fileCount":26,"unpackedSize":80065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSfEfCRA9TVsSAnZWagAARUcQAJG9z+ddmQGe1EKB7YIs\n3+y4LxgxhW96nWrnpo0x6047DnPAQoBS+XwNPifGAA5mfGidDpmltvrhRznY\nFRMG1mdD16rjIh3WConaZx34LaKBW7KrPJ2Tq+54G8RUlY5J4OyJ6AOX4lJM\nh6mN6ZhrWXxSWii0qOq2+bx101sBhgKcJvkmxL8Z2SxLpJx8on8PcWSSwAu1\nmwPQ7S7FDO3u7Ifgk9b/f7gLnHyUyvW5lX7IJ2wvVTOLjc4ptPqqYf+5Ec2m\nFAmyFnYRXKoZzhq0kb842pHB9Cnk6EUtFQYRAYj1i/B+M3mh7LKJBvCmlSoc\n5sVL0ohOfW+9NZc2gdN1vUPnUVMEW8Bh+U3Bl33tAIDnC6VVMXjJoM0Ae+YR\nFgjuZLK/Y7z7mg60eNcjAkj3HKlzIx5BUqx1IHXfaG5Hz8uR/mXwYRlRs2Pe\nMsUZdhoqwCn33plgwIhefwo85ZNHIop85kkYdT1lkf1sCRr9sNh143XPHhs0\nR7xrj50pKDclTtb88phPewWChlSU1N5W6XDuWT806SoxMMpS0F96Je1JZ9S4\nMB5sRLaaShB2rTg5YDphc/Uee2b0XpDYoMC+vdoi204XJpTAD7n17MiFGnSR\nvtewUV2PFuPOgZIfJgAk8gfIGJ1rAl1IRqrCqJonbvFo9ZEaLbxVupHHvPEh\nsPuy\r\n=Cl9H\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5l4lSvLX7dQuEchU1xszpmyuT49kwRENRkmI8tsB21wIhAIfNHMiar+c53VTpVGokyVVa6xxESKhukMQP+Z9QpQKS"}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.6_1565126943074_0.7190643461835857"},"_hasShrinkwrap":false},"3.0.7":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.7","bugs":{"url":"https://github.com/nickmerwin/node-coveralls/issues"},"scripts":{"test":"snyk test && make test"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"growl":"~> 1.10.0","js-yaml":"^3.13.1","lcov-parse":"^0.0.10","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.86.0"},"devDependencies":{"istanbul":"^0.4.5","jshint":"^2.10.1","mocha":"^6.1.4","mocha-lcov-reporter":"^1.2.0","should":"^9.0.2","sinon-restore":"^1.0.1","snyk":"^1.134.2"},"engines":{"node":">=4.0.0"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","gitHead":"2ed185ca3626591549ed33c2363a47b824a39d0f","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.7","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-mUuH2MFOYB2oBaA4D4Ykqi9LaEYpMMlsiOMJOrv358yAjP6enPIk55fod2fNJ8AvwoYXStWQls37rA+s5e7boA==","shasum":"1eca48e47976e9573d6a2f18b97c2fea4026f34a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.7.tgz","fileCount":26,"unpackedSize":80224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdn7YRCRA9TVsSAnZWagAA6ZAP/RSr2AMaeN0NOorkCVC/\nHTse2Zrus87y7RvA9kkT6VO7WjrepW12Zo2Fj6FprKC0xPTQmxjBKnsALpPn\nRNNBZIi4QXrclvI4wGb1mVoFbCP7GaDbzE2b8EUojm2PW2vYnCVC4HP0V1YE\ndH3o1JKT4rED5RBTwWRAtPq/O3Vrx+fephaOjiwHKgsWLdvfc53qmqk+gHW/\n5DhggU9PqWqq2Uycuw6BaHwmaKyRpeCb8l1mjT8ZbHkYnUUlRxHHqtQvGHCp\nAlO6Dkq/ySveeX9RaHX1IMvuG6N8WPq3f5AmGbe8eBMn+jRWg/3oVyNhh778\nDPQUcpIwakIV0t02iD+/bvivOXls6KlOlBBM2OzfvH3E92oWZ2A1WeuZcHjC\nR4BocOcuILEayXQphDqrOiJRmLWwGM/wzXGEFgB9Ugvowz8qjIYY1TjUHnj3\nvCnuLty0Q7ZrcxQFs3JT9cIvJIx17kyaPpYYwpzqKyg4kpQjQy42AmhU5BQx\nV3atXq0kUKOSjD27UtvDYcjkq5HfDkRLF9qGp6CMDNU9U7s/qoDDQIXbiVIz\nyXojPPBFtLzdsJWGwW1rFpiebL19GTpM3zBSZaWXoXei01NI25xYMuzjjsn2\ngtZ4xgHZ5NoLjqtKIMIqFSz2HITqd0TrMd9o6ylLr/AJJVOtQ9KncnopE4h8\nEbad\r\n=pWoU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAubQi4AuZGC33ispKEf48lFviCsM2APVfALgxiiCxRFAiAOyTiMo2mTqZr2BeDgokgDo+aOPMuxrUyiT7tguV/RnQ=="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.7_1570747920626_0.9584815793275672"},"_hasShrinkwrap":false},"3.0.8":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.8","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","pretest-coveralls":"npm run pretest","test-coveralls":"nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose","pretest":"cross-env-shell \"echo TRAVIS_JOB_ID $TRAVIS_JOB_ID\"","test":"snyk test && npm run lint && npm run mocha"},"bin":{"coveralls":"./bin/coveralls.js"},"maintainers":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"cobertura-parse":"^1.0.5","js-yaml":"^3.13.1","lcov-parse":"^1.0.0","log-driver":"^1.2.7","minimist":"^1.2.0","request":"^2.88.0"},"devDependencies":{"cross-env":"^5.2.1","nyc":"^14.1.1","istanbul":"^0.4.5","jshint":"^2.10.3","mocha":"^6.2.2","mocha-lcov-reporter":"^1.3.0","should":"^9.0.2","shx":"^0.3.2","sinon-restore":"^1.0.1","snyk":"^1.250.0"},"engines":{"node":">=6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"b1f795044d20ea121aed23b6590ebe8b631d3dd3","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.8","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-lkQlg29RhV9zwB0gDaEAWoap8xPgFxtPsVIpTNiDDtWNrvtP1/RmGJRRAV/Loz2gihmppObkSL0wnptEGUXaOQ==","shasum":"3ed8f0ebdcf8a87ff3f9f4bde220b86d998ebe64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.8.tgz","fileCount":12,"unpackedSize":30286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1emJCRA9TVsSAnZWagAAG3MP/03ngDIZWk/B2p38/sgF\nTHGkjOsN8v/QomAlK+NiRklEeSvn5ArdRrEWs/PmiYqAIwb80r81AyVueByB\nvjivJvRQJssk2fZquRdg4qhl5tfHB5ZUiBdNh1ewQLIRpXxuzt+SWDe49+LW\nxhXHq1MslbROaIyJ244TZL3/ko8vKSr9sHTmI2im7rLS1PyXnnmk0uKlUzq+\nj+EInNOkEKhInYrmyOoiLR49q2pxAyDGSlHWXjxNWdt+OAMl35YHIQrK7j2e\nx5Ev4n9ezvBekY7l7cFAAOMEtE+cr2gFT6Xed2nmN7FIusBXgeFEcWw0YVtQ\nQK5c5PPCf8tD9vFhAc2ZWpqqm7wAvDYkuUgoIUvCBvkb0+ZQ0mAxU7Yc5b3H\nqvzbc3mboXHbpsf3NzOgNNj07jhKWWL576NbHyBaACP6mqEnPLBP19WFT8/F\nGCCn8yutZJVpfa4F70MAjlC/31rmvsjv+Pnpla6pqVnb7eDl5wukmQwXatZw\npgMhX5iqKm5bxu5g/XLaqXfQJWdH+vv7DBtPis4BlphU9/QugVISBnc84RNL\n+SfTU1k0l3buxuQVV9zUv4890UM/kRUbU4xOh/Iquou5V9cSOHatd3KtvE/X\n7LwY4jyvokFlDUzxIdhdHNocFdne4w532OAeAxBUB1NHaJ9QNxORZYS+gkzl\nkGB8\r\n=+m+S\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDJjsrrHV++ORnRyh++G/RkRaiiNFpc3QV5+TuNH1LCuAiEAs2B18xw4m4eHF4wsnW9wWeMaSUW0s8yEgtDjWs5iIEM="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.8_1574300040573_0.8382049980207349"},"_hasShrinkwrap":false},"3.0.9":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.9","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"dependencies":{"js-yaml":"^3.13.1","lcov-parse":"^1.0.0","log-driver":"^1.2.7","minimist":"^1.2.0","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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"2e2b108c68ba1b42901846537c60f714235bc78e","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.9","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-nNBg3B1+4iDox5A5zqHKzUTiwl2ey4k2o0NEcVZYvl+GOSJdKBj4AJGKLv6h3SvWch7tABHePAQOSZWM9E2hMg==","shasum":"8cfc5a5525f84884e2948a0bf0f1c0e90aac0420","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.9.tgz","fileCount":12,"unpackedSize":30262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3WNbCRA9TVsSAnZWagAAHcIP/1iFI3O+cWX4bQi3GEQS\nCiVOQa7w5Dc03g+AagLL4eQhs9kOx3lPuquTnqeM3p7FWBIb6RNBIy7QsIXM\nV+bcY0YKlYwTVOjj+ptl74MCYXs6ANFLDCDpeJ3ZflRjaJvNKWfg4fN4mTzW\n9m5Ag16gN2SeKn8XCVXhuNoihsUAl/jeeEiJ+XgKe2aHVO2PII8cBoNrnupY\ncmRuaTHZow6MVqv8vabW6OjsPm9pUQYKzImn01qhCEldfH7fvNU1W5DgJKoE\nc/0nQCOsBrWp7Jpp6CPpKUKXQSAvLlnEljT3GAzxKMLYYAvwXIQWsHs9WACy\nIFACX9phu3wDOYWkyld+saLVdG5wqUe0EMc+xd2L7aYLkP7Md0Giappye9jA\nc0ynztNW+JnrNilXPu4cMjYnOQEPn9pIWL7QIu4vIjS/ylP9xYObeplitZmM\nzljbzk6R37X7mL2mIZbi2Vnyr00cY84k+V8DZIzFy4HPDMijZy3LKUjWXHyH\ncdpxLsMtaV75yxrMyMsW3Ne+eFEODnRq/XFW3bZ8gOIbvc9/KUIqrOd704EN\nRlAA8GGND3az9V32TWLMQdcSPnG82Ts0CUy0DB7j+ieu676cxfi+XO/RpJrn\n/JAa+We4DfptVF04Ea4qnkjd5lqThhw0z75eBoFuYnPW6EZujZEB54pkecHH\n/HlF\r\n=iUMn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJPClvMp2b/E7T+KTDbFJPGUL7m4ypdU8Jqm79007EuQIgFBB5RfbjIxNYXgTNdbfzoQxFBJ5OwmDzcV/AVhBP34k="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.9_1574789978917_0.2045121415081459"},"_hasShrinkwrap":false},"3.0.10":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.10","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"2ea7be3fc03ffe9553886f738a7f8e5a75a5d5d7","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.10","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-HW0W5p9F95ww1mHyZP+mvIbHtz7VVwafngnR4HbNjedoH33QSpcl86hdCGBvMwnMV4ut8/Tp4IAIFpX05Kr92g==","shasum":"165a0f3395a58c26036ada82cbc81cac618a2d73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.10.tgz","fileCount":12,"unpackedSize":31028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJec6htCRA9TVsSAnZWagAA6acP/0NId4wVEyJov6++xl8l\n2u+QTG2UAIcPa1jiXKEgerNnfjqD4hoBkhfwlBeE2bRdxQCDIWsHlWaWYUcH\n1gm/DqQEcvjvFzp2Y6m88Yiyeigo2WGhUqnZ4SeNM13qBb6LzF5eORIvsXoA\nJbGtQ3SI7/+9KGzk/WFF7MhOavvXwVKab+7wWVNhgp5lhuC2NQUgU2s+TuvB\nl+08jd8fDythGc1RCZWgiew9lo0cglmxx1BusbqnAMHoT1TEjy9qHQoiWMEE\nX9Ox0sji9XBoSkOdoL4hAqdyCPDK9oBTYYYLyzjlQoPxP93xgTTPXg88OFq4\nUur29dyvx5T0BPY3xdNdDpByk7fzr+VHnPxPyoggpOWRUblyQMdhWmfPKnL9\nJhulq7tH9yk7i/piieYuFoPdWv0Z4UF7hZfxzYic1O1OJZ6S2QkrVgsKcTif\ngfr0XYSRnWADT+TAwEjIbOdC1GRua4UXO5g1WgwkQ+VHFu+4zxe5dNkIULUP\nE3qrR5cxtPQ+JkPwk/rv6i0XuaKlVRR7LhOBjcSu+txLnfyZrDUC6T3t7r8m\nLpFuLltgV7t+h7hmsfmb8c0HzP9y4igNI07kWUGozJMa3DovDT/hIbU8Tb09\nA9LdYQY3eiqnGYLfE+AwnjJVQ9cXNsKjlsq/diQrJgzEgISA892gu+puKhau\npj8D\r\n=c3eW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDh4zqcYMQFfE+UGKa+vCmEnv9jKoezYgu5WJjijoXZFAiEAhQ0XekAsE3j4gCxTEoAC2NIeXXimZ0/ZEzX0l5+9IMQ="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.10_1584638060583_0.9870176720761348"},"_hasShrinkwrap":false},"3.0.11":{"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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"21f476c8502e180a7a1e67035cba57616fecc5be","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.11","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-LZPWPR2NyGKyaABnc49dR0fpeP6UqhvGq4B5nUrTQ1UBy55z96+ga7r+/ChMdMJUwBgyJDXBi88UBgz2rs9IiQ==","shasum":"e141da0922b632fcc66620f334460c3f0026a4ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.11.tgz","fileCount":12,"unpackedSize":31209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJec68BCRA9TVsSAnZWagAAw10P/0BXlgYiIQYUI1pFrIog\nioabSagC1zIq8OhuWQi2L5G/BY3Bdrh8Vy6PaI4aQuzDV5otFTl6YW75XwvN\nVw7klc3HxeGICgjsaHAgX8QkcU3h78bFM44b2fwt+aFrSraiMkyQltjhpl/e\ntawAfAkNp3dcv7yuaO13sit7Na5ARPtR/uX9djjTR7Hdv+yOH2v0Rsw767e/\n0FfaA9u79WmkK0GxV0wPpMkTkCd6yEo1frspXTrEoFlyWlZfMzSWgouauwxf\n9GcShzIKjHrLS68OIgjSCjMXhoZw4WOPm7xhjbp7+cv3lfELtQhv8v1HDPHX\ngjZgc36F8qriuLHnlxpdf0OPX53FxREAx1pw3Wkp3MZe9gG8EocU47YHRpnv\nuS42kNFfDHWp1gxR2GihtB/MxU7GL3tRDkvVT4izOQq0Nk+FmP31107buJcm\nZtgdwXkUJswPzhgHLoI+2cAdOkMDRHgaucO5XaKviogkshq9xzQ0koU2rTF0\n8ZCA7x5d69qWdggbYyR6u5chfXvydQSN2bMkGC6rBWB6DFQSdqGKVK+uLNM0\nN+qe7Q2npOrEquTFcJf57Q6oBQ8r+n7KRs7zeNoSCPyj2QyW6aRC2ZuqRvAs\n4kCLpGAfgo++Gi6ppRlL7SpMZ4WXmdr+zh+aW2uXws3isHuTiyWj1fELeipb\nMsEw\r\n=VqUM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdotM1YFOYvAnZY4ijUyoMyinA+ZpEHfIVx2AMAFG8kwIgC+tO63cU6BkjfzGMw066OB9Qvq22CwDKTtwTOfT2uyQ="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.11_1584639744760_0.4422895406431102"},"_hasShrinkwrap":false},"3.0.12":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.12","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"aaff7f813f12a046e1dab275abeb2f074c90b0c1","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.12","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-cDOGf4JFb1XKxT811GuLixVgJc3ZFElCLtgxkrdo0hm9Q8lmJ3cP4cZqlQTRE45MvwJNlHYwwzHPuWEv1f4f4Q==","shasum":"e5417b7ef9170ad92b40f4024fce25d65ad9c24d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.12.tgz","fileCount":12,"unpackedSize":31180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenz2aCRA9TVsSAnZWagAA8YoQAI449cUr2nxVmCYd9BNI\nmWP9Qx/7plYrkJUbdU/1/4CvyQEayoMUvmyaCB9twoPcdUGxwOOanNa4JKOj\ni836pBH7es1pXJA1xUlhzTQawPbgmkKG6iAW9ka3FwB3l6eg9RoUs8GyZz5k\nGyk+vfxt5mhdUwh95hDyuaB3ai0UI+0PBS0tmRcfu40LSiTD6/1D1vQ5hBBP\nwHom/IQ97JHlFXY/3oBhgYF9qzuZ/D4gqsA6LMVjeCpP5/ZhmwEIV2Vw3m6Y\nLg0SO4mv0g/Eit3YSn3yPfd8wIjRvbz4gKoci44koxS57maLvVi/X1yDMj0U\n68X2e5F+sGZUJvcykoDpkO89XeFcwjOYmeuVJR2jeLDa8ZzMhjNfdqw9H6T0\nFBYNJOlaQVaIiZRZJ8SYd+UBppnisnb3XSUAv+bq4A2ZTT+Usaxs1Fo0xcbi\nid+aEGzSK63WMLfiHHbkRKq6TuPOOpgMoRPYEQsjvdS3PKosv0EVe1u0fhHD\nD9OFb8I1RKY6ZTHzEP/Y1Wf6jjTbK7Ji911joiigIZmkNNDczivLBKaRmL8y\n5sIYxoOU2fIOGK0mEgoYcZqXrY+AM7X4Def/I5Dmpi/hUp63BVQy8rXdpLjt\nHNJ1PfC5njY3WeWRedMDqtX2609gybryaNYmvb1orUKzTpta3UWCDMn8fZRp\nisCZ\r\n=LeZn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH3TgInG70S4TTQDRTSMtOt6ijrtRdmbQGjX7FO1F60hAiAuFhJUoAA9doCWHjbQxLUXdi9E6X/lD1kpgLIOE5bh+g=="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.12_1587494296729_0.2828065691928028"},"_hasShrinkwrap":false},"3.0.13":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.13","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"eaba7c60d3936ea0d73490486c36ed347149e8c0","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.13","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-Bch6FJI4ebK6Mwr+DjFCJbb/RayNwn5pscSDE4Ux6cgjNkAcjdgGZBRfQnuYTt5tY81MqGK8m2r+xc5FDF513A==","shasum":"64d8c99af3b8a771a2e6e5bcdf556c3c5061d29d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.13.tgz","fileCount":12,"unpackedSize":31261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJen1mlCRA9TVsSAnZWagAAEukP/iDhyKKLnOg35gtFyYoM\nQNfAfztZA0SqPoi7w+ulU7XDP9mtcrhzrNciUIIgxi9kOuRNcF5pDGICFQ2G\n2/w8ppRHKIIMeWbA66aZAdbmhfmIZ46/jIwqTqBpi9H0FqBvgKllqyHnUK3F\nl9utdkSWZRulBYiITDXauNOe99iIvMOSFrGCSQR55JbtW1YrPjDnJhTD2evr\n0dVPUNqQ1qTjXM+msDbKRopWLjh7N3bqt39LWWQQ6MrMR5rOh0l/YxeKqBPz\naWD+MCeiVtwgxwYnvVcAYcrnkxsXDs9y4o7eq8dWKndCfg3GwvnmdlrClgfe\nxt62LSxvqA+gvyaR2FIe367hqYGJoThsNQU82McJVRAyxH2nlCeuvcDZPYOH\ntU9QOUKx/F5E9+KbQHrLMWb9cPTNIxJchDB4boRGiuVSYXrCza4XcCjlYnKE\nnSipsJg0iE6JqiTy4e9V+gSic7iSPe9I+udmPpTM64GYXeYqkc7QLmBxGHrF\nNM7NtzFDeoIX7hAYFpct1lAWm6ZZYvYYPX71YV91qBlsIQK9OUChPNmYXtxW\n30IDkwOyv/v8APzhh4pTFoweg8hdv4oDEgLlGpuIcO0c7/fjL2h8LImaA5e+\nDI0ayO/GJHkIjP/ixBLJKhhN5Gox5hwDsigLYcs+4zleTDvaToK8AAu1+/L0\n+DtZ\r\n=zch+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDeWjnjWAH965QNsImYaGXPYrS3zqT3yM39SIv32A7BgAIgeUPrRY4S0bMBjxvj4uxAHZhWQqObgZFwZtmGoCPgOk0="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.13_1587501476479_0.05364278250603016"},"_hasShrinkwrap":false},"3.0.14":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.0.14","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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.2"},"devDependencies":{"jshint":"^2.11.0","mocha":"^6.2.3","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":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"844d7658677c1422e98648b8727cd421d1a83e02","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.0.14","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-nEQqCHzxiFfu1dEHYxe7xrbF5vFmx122mTWIM+BkiAOmsWbSAcucNk8stELnNk2lS1biTUjFOCIf8v8ZN225IA==","shasum":"a13c4729308e8bd1a284d7a3974eff72ce6e40c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.0.14.tgz","fileCount":12,"unpackedSize":31193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeog2HCRA9TVsSAnZWagAAFyoP/jnbaG9tmVEE2BCvYNX/\nM3zwNJg2Zh087wWgI3dW3BtB8A2ZlF94rNWY86002gLJY2wQg2pNEEaffMgE\nXsCbcmsTD/r5qB5RXb8AeKRQW2LvO+eAY9w0Bbo5l5wQN/ENEdkA5Jja2ekV\nB4C88qcEYdUCTU/2ovlBK18r5QwLUv/3W2Q7+UtOIC6ZeqReCp9M5OIfk+xm\n/E2Kx8ZnageuBoHomDZtawuHsEGsukM73Xi9W1igWvBQjlqNGlO9YwrGj3xQ\nH8526njytm5Ia5OysGRkMB+WcxmIRe9hkfLFmjqof8jFXcFHCDspwWnWhkWv\nVVwCXb+c1eGiJ9uQpUbW97AR1xg/CIIXUwZw7Nm91hH+g9kzedRi99b9+esr\nOItHorg6yGVEBHqh7zG56Kp0CviJ8BXhN1RShFQMwjXnzBw+BYrkwJzKzp+m\nRBXagZPvSdbBDYoXWuvnm8pE1M5MVr+2P2jcjSZ/TzuVxyxK4ff8Qu3kGUDE\n2DzrjIELiAEQmDUG9UBj14SPFjiaBy0t/6OUgRFxCluUje+li/XcPo9uPiY0\nBNjq+kZeKXFuzFiaarWDTK3wTPvtQg5rUHt6TFPsZKNKtbxW+jPPh+SPopIm\npkuza+s/PIAwtvOVi41ht76nEa/z0dgsauo4LyqzCmFrAvR+9IQImxTk4Oex\n6IsM\r\n=QlLr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcKD0hMluy+kw06mkg0wFTzVQjDhKvBeHOcf0heExXIwIgXynDJnjIWNLd/FbOjJdrlG5Os5z1TRp5Ra10WEa0/y0="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.0.14_1587678597766_0.893028454376096"},"_hasShrinkwrap":false},"3.1.0":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","keywords":["coverage","coveralls"],"version":"3.1.0","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":[{"email":"gregg@caines.ca","name":"anonymous"},{"email":"n@mer.fm","name":"anonymous"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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.2"},"devDependencies":{"jshint":"^2.11.0","mocha":"^6.2.3","nyc":"^14.1.1","should":"^9.0.2","shx":"^0.3.2","sinon":"^7.5.0"},"engines":{"node":">=6"},"main":"index.js","directories":{"test":"test"},"repository":{"type":"git","url":"git://github.com/nickmerwin/node-coveralls.git"},"author":{"name":"Gregg Caines"},"license":"BSD-2-Clause","nyc":{"reporter":["lcov","text-summary"]},"gitHead":"2f95964f8a0b40f66d8376969b0b0eaa5d0d1ed1","homepage":"https://github.com/nickmerwin/node-coveralls#readme","_id":"coveralls@3.1.0","_nodeVersion":"10.9.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==","shasum":"13c754d5e7a2dd8b44fe5269e21ca394fb4d615b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.1.0.tgz","fileCount":12,"unpackedSize":31550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo2pVCRA9TVsSAnZWagAAlr0P/0axvkBsuq9McU12f8SP\nW9PNPw10uIuiVwUgjV3c+LpZyiSjo/rP/PjiEX5RX0M5EYmNFkhQtgASbHF7\nRR1zq2o5mGS8E8fEwTLTP65Z5hKh7fs3Q7N6nMaHROi140CiRvVhZdsBaAPG\nRMjjbhZQ7EmVUFnwkuQSzaov64yGBMq/2d1Qe+jP0sG7gBsmJDzbhYBV6ShK\npeFH3pRe18klqMaHM/l00nQcOHiXX0gRy5xOoW/oOTLOzL0gEcPb/7TgwaHQ\nyrzoiSMYZAwskKTy7CB/KVqsLbL8huicAAE/in4HfvE54YWGU84YKmU6wEcD\ngcai/CEbthx2HO/W7ZFNRJc79WC5uLOn8brpGv0JRA4u5jjfhjBtms9qjhcg\nNxVvxjN3vu6UQV2zA/i369ga9wc4B1I4c5BcwGKBvkOTCAh2JWBJGi9Ujg4v\nBKVVlP0V6a6fMbpfPPBZn87nVpnFFjSwT4/50NoS1f84ZVBPKhVdtvh16Urh\nanzWOzfdXItCaCrQSDnSwIk2S6v4iNW/2uwBv5zytRXS+3HORVtNAz+f/h7Q\n+5mI240WCmBJtgaHmlZzKYYyXghNqjNfzTV/JDaFSyNMVRsD8CRwwJ2fLqXP\nRPvuFvm4Wnp76VbaykzCaybPtX/tOdYBnPb6Sj7jd2UtzhJL6t1OqlOyq9aT\n3ZdD\r\n=wIiy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAlmXAeRjTeTPUieqb/5jP63hJL64Dq830EnfVIgdtlYAiBphzLESlciTGncOwOKQ9FuFbL5r0aCT2UNbUdWjKjvQw=="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.1.0_1587767892889_0.5884751757949702"},"_hasShrinkwrap":false},"3.1.1":{"name":"coveralls","description":"takes json-cov output into stdin and POSTs to coveralls.io","version":"3.1.1","keywords":["coverage","coveralls"],"author":{"name":"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":[{"name":"anonymous","email":"gregg@caines.ca"},{"name":"anonymous","email":"n@mer.fm"}],"contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"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"},"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"]}]},"gitHead":"565da5f354758903445db6cbee3bdba9ec697b9e","_id":"coveralls@3.1.1","_nodeVersion":"15.14.0","_npmVersion":"7.7.6","dist":{"integrity":"sha512-+dxnG2NHncSD1NrqbSM3dn/lE57O6Qf/koe9+I7c+wzkqRmEvcp0kgJdxKInzYzkICKkFMZsX3Vct3++tsF9ww==","shasum":"f5d4431d8b5ae69c5079c8f8ca00d64ac77cf081","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/coveralls/-/coveralls-3.1.1.tgz","fileCount":12,"unpackedSize":33049,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2m+8CRA9TVsSAnZWagAARW0P/0fu2FouZEBYuXmP8ieo\n6oagxK2h66SmNlH3Pc8S2SISApuT9s83z6VLQcONXysRHcPeDXeaxTfa3qwc\nJBYUSWlphaKLHuYaGpawIeHDtXM40SOJBIyXZdY53f0S5J+bLnJJ6VlYL5ZM\nWvjaC5axurwkwCkDEN3ZGCTqlSG7DgNCdCIlEe4mtRF6cThlN0B06d2czttr\nKX9iixWo3unC6in+t7ZnBkeZE/Muy/t9dGHKfQ/E7u0ooIa0VUsQ3JBXjZD/\n75tDnG9IjQEx4DtsoPVhWNj6jTzEbvVLGdVzPkUrhpmr0p3lzeq1A1+oxaEQ\nbiNDZdihkloAqkmZEqk9Dw4/aVLEmwMry4U6jfzLLQQGsoVdTIi7pcGiLMi1\nkJg32Tl8wP4PJeGK5J8wi3sczUWgIjx5YCuycAFdZjh9/16n4Rds9r0LYptc\nWTGIqgbTcVX1v01wPzAPtarA/chDNihDYtrPsVbsfe8+rmN96OGKsZRnvmnx\n68jraGw7j8fnlPRZLpSsB/NrKUSN3GSLL/QkFne3MtUoo0cTwrFobiS+Rml5\nhPNynfcVcwfYGKLWHnqC4pXiXg4wvR1e2XnGrLlFWRWAg9GTNgr6mx+y8BJC\n8K3ym5DgVGBYcjI1Zj53S6fr/i94AZmMhCCxjafrMgMefQGdfguOGfadK4r7\n865g\r\n=Dr1a\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAnR6vYI1e5Lp452wSSLpQd0XanjBWH4Rf8z0LyxILxCAiBowVEVWdP/E8OX/xehchCgEDuMdQiRoT6/7S7JUwewKg=="}]},"_npmUser":{"name":"anonymous","email":"n@mer.fm"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/coveralls_3.1.1_1624928188165_0.20905355285572513"},"_hasShrinkwrap":false}},"name":"coveralls","time":{"modified":"2023-06-09T21:33:38.604Z","created":"2013-03-15T03:19:16.470Z","1.0.0":"2013-03-15T03:19:17.963Z","1.1.0":"2013-03-21T13:57:53.990Z","1.1.1":"2013-03-23T16:10:26.087Z","1.1.2":"2013-03-24T01:35:04.334Z","1.1.3":"2013-03-24T02:37:25.943Z","2.0.0":"2013-03-28T06:48:27.750Z","2.0.1":"2013-03-28T07:27:16.263Z","2.0.2":"2013-03-28T07:39:50.488Z","2.0.3":"2013-03-28T07:48:05.803Z","2.0.4":"2013-03-28T08:05:15.223Z","2.0.5":"2013-03-28T18:50:51.658Z","2.0.6":"2013-04-08T03:20:09.624Z","2.0.7":"2013-04-15T18:53:05.206Z","2.0.8":"2013-05-24T19:37:52.060Z","2.0.9":"2013-05-24T20:03:16.595Z","2.0.10":"2013-06-03T03:48:42.605Z","2.0.11":"2013-06-03T05:47:25.850Z","2.0.12":"2013-06-03T05:57:26.203Z","2.0.13":"2013-06-08T18:42:36.499Z","2.0.15":"2013-06-22T21:43:57.990Z","2.0.16":"2013-06-22T22:52:08.903Z","2.1.0":"2013-07-30T19:11:13.234Z","2.2.0":"2013-08-25T03:59:49.679Z","2.3.0":"2013-09-07T15:33:05.176Z","2.5.0":"2013-11-23T16:30:26.983Z","2.6.0":"2013-12-06T05:54:45.870Z","2.6.1":"2013-12-21T16:58:51.499Z","2.7.0":"2014-01-27T17:24:20.718Z","2.7.1":"2014-02-03T13:31:12.313Z","2.8.0":"2014-02-13T00:03:41.081Z","2.10.0":"2014-03-18T01:52:28.865Z","2.10.1":"2014-06-22T15:22:00.708Z","2.11.0":"2014-07-03T17:33:53.309Z","2.11.1":"2014-07-07T17:22:56.892Z","2.11.2":"2014-09-22T02:05:35.871Z","2.11.3":"2015-07-18T17:16:45.157Z","2.11.4":"2015-08-13T03:41:50.729Z","2.11.5":"2015-12-10T20:59:20.036Z","2.11.6":"2015-12-11T01:05:41.592Z","2.11.7":"2016-02-26T19:13:45.513Z","2.11.8":"2016-02-26T19:22:06.549Z","2.11.9":"2016-03-25T03:23:30.537Z","2.11.10":"2016-07-12T17:46:16.373Z","2.11.11":"2016-07-12T17:47:08.954Z","2.11.12":"2016-07-27T23:45:55.834Z","2.11.13":"2016-09-15T17:17:41.749Z","2.11.14":"2016-09-19T16:30:57.663Z","2.11.15":"2016-11-11T16:35:02.707Z","2.11.16":"2017-02-05T20:39:04.395Z","2.12.0":"2017-03-05T19:13:02.268Z","2.13.0":"2017-03-30T16:18:22.793Z","2.13.1":"2017-04-27T20:21:05.158Z","2.13.2":"2017-09-28T01:13:38.788Z","2.13.3":"2017-09-28T15:27:35.093Z","3.0.0":"2017-09-28T15:28:35.933Z","3.0.1":"2018-05-01T21:11:03.887Z","3.0.2":"2018-06-29T21:09:16.563Z","3.0.3":"2019-02-22T17:56:15.014Z","3.0.4":"2019-06-05T23:49:07.201Z","3.0.5":"2019-07-12T02:25:01.350Z","3.0.6":"2019-08-06T21:29:03.262Z","3.0.7":"2019-10-10T22:52:00.758Z","3.0.8":"2019-11-21T01:34:00.758Z","3.0.9":"2019-11-26T17:39:39.086Z","3.0.10":"2020-03-19T17:14:20.739Z","3.0.11":"2020-03-19T17:42:24.896Z","3.0.12":"2020-04-21T18:38:17.656Z","3.0.13":"2020-04-21T20:37:56.606Z","3.0.14":"2020-04-23T21:49:57.889Z","3.1.0":"2020-04-24T22:38:13.122Z","3.1.1":"2021-06-29T00:56:28.329Z"},"readmeFilename":"README.md","contributors":[{"name":"Gregg Caines","email":"gregg@caines.ca","url":"http://caines.ca"},{"name":"Joshua Ma","email":"github@joshma.com","url":"http://joshma.com"},{"name":"Alan Gutierrez","email":"alan@prettyrobots.com","url":"http://www.prettyrobots.com/"},{"name":"Kir Belevich","url":"https://github.com/svg"},{"name":"elliotcable","email":"github@elliottcable.name","url":"http://elliottcable.name/"},{"name":"Slotos","email":"slotos@gmail.com","url":"http://slotos.net"},{"name":"mattjmorrison","email":"mattjmorrison@mattjmorrison.com","url":"http://mattjmorrison.com"},{"name":"Arpad Borsos","email":"arpad.borsos@googlemail.com","url":"http://swatinem.de/"},{"name":"Adam Moss","url":"https://github.com/adam-moss"}],"homepage":"https://github.com/nickmerwin/node-coveralls#readme"}