{"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"keywords":["coverage","reporter","subprocess","testing"],"dist-tags":{"latest":"10.3.2","next":"10.3.2-candidate.0"},"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"description":"the Istanbul command line interface","readme":"# nyc\n\n[![Join the chat at https://gitter.im/istanbuljs/nyc](https://badges.gitter.im/istanbuljs/nyc.svg)](https://gitter.im/istanbuljs/nyc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Build Status](https://travis-ci.org/istanbuljs/nyc.svg?branch=master)](https://travis-ci.org/istanbuljs/nyc)\n[![Coverage Status](https://coveralls.io/repos/bcoe/nyc/badge.svg?branch=)](https://coveralls.io/r/bcoe/nyc?branch=master)\n[![NPM version](https://img.shields.io/npm/v/nyc.svg)](https://www.npmjs.com/package/nyc)\n[![Windows Tests](https://img.shields.io/appveyor/ci/bcoe/nyc-ilw23/master.svg?label=Windows%20Tests)](https://ci.appveyor.com/project/bcoe/nyc-ilw23)\n[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)\n\nIstanbul's state of the art command line interface, with support for:\n\n* applications that spawn subprocesses.\n* ES2015 transforms, via [babel-plugin-istanbul](https://github.com/istanbuljs/babel-plugin-istanbul), or source-maps.\n\n## Instrumenting your code\n\nYou can install nyc as a development dependency and add it to the test stanza\nin your package.json.\n\n```shell\nnpm i nyc --save-dev\n```\n\n```json\n{\n  \"script\": {\n    \"test\": \"nyc mocha\"\n  }\n}\n```\n\nAlternatively, you can install nyc globally and use it to execute `npm test`:\n\n```shell\nnpm i nyc -g\n```\n\n```shell\nnyc npm test\n```\n\nnyc accepts a wide variety of configuration arguments, run `nyc --help` for\nthorough documentation.\n\nConfiguration arguments should be provided prior to the program that nyc\nis executing. As an example, the following command executes `npm test`,\nand indicates to nyc that it should output both an `lcov`\nand a `text-lcov` coverage report.\n\n```shell\nnyc --reporter=lcov --reporter=text-lcov npm test\n```\n\n### Accurate stack traces using source maps\n\nWhen `produce-source-map` is set to true, then the instrumented source files will\ninclude inline source maps for the instrumenter transform. When combined with\n[source-map-support](https://github.com/evanw/node-source-map-support),\nstack traces for instrumented code will reflect their original lines.\n\n### Support for custom require hooks (babel, webpack, etc.)\n\nnyc supports custom require hooks like\n[`babel-register`](http://babeljs.io/docs/usage/require/). nyc can\nload the hooks for you, [using the `--require`\nflag](#require-additional-modules).\n\nSource maps are used to map coverage information back to the appropriate lines\nof the pre-transpiled code. You'll have to configure your custom require hook\nto inline the source map in the transpiled code. For Babel that means setting\nthe `sourceMaps` option to `inline`.\n\n## Use with `babel-plugin-istanbul` for ES2015+ Support\n\n[`babel-plugin-istanbul`](https://github.com/istanbuljs/babel-plugin-istanbul) can be used to enable first-class ES2015+ support.\n\n1. enable the `babel-plugin-istanbul` plugin:\n\n  ```json\n    {\n      \"babel\": {\n        \"presets\": [\"es2015\"],\n        \"env\": {\n          \"test\": {\n            \"plugins\": [\"istanbul\"]\n          }\n        }\n      }\n    }\n  ```\n\n  Note: With this configuration, the Istanbul instrumentation will only be active when `NODE_ENV` or `BABEL_ENV` is `test`.\n\n  We recommend using the [`cross-env`](https://npmjs.com/package/cross-env) package to set these environment variables\n  in your `package.json` scripts in a way that works cross-platform.\n\n2. disable nyc's instrumentation and source-maps, e.g. in `package.json`:\n\n  ```json\n  {\n    \"nyc\": {\n      \"require\": [\n        \"babel-register\"\n      ],\n      \"sourceMap\": false,\n      \"instrument\": false\n    },\n    \"scripts\": {\n      \"test\": \"cross-env NODE_ENV=test nyc mocha\"\n    }\n  }\n  ```\n\nThat's all there is to it, better ES2015+ syntax highlighting awaits:\n\n<img width=\"500\" src=\"screen2.png\">\n\n## Support for alternate file extensions (.jsx, .es6)\n\nSupporting file extensions can be configured through either the configuration arguments or with the `nyc` config section in `package.json`.\n\n```shell\nnyc --extension .jsx --extension .es6 npm test\n```\n\n```json\n{\n  \"nyc\": {\n    \"extension\": [\n      \".jsx\",\n      \".es6\"\n    ]\n  }\n}\n```\n\n## Checking coverage\n\nnyc can fail tests if coverage falls below a threshold.\nAfter running your tests with nyc, simply run:\n\n```shell\nnyc check-coverage --lines 95 --functions 95 --branches 95\n```\n\nnyc also accepts a `--check-coverage` shorthand, which can be used to\nboth run tests and check that coverage falls within the threshold provided:\n\n```shell\nnyc --check-coverage --lines 100 npm test\n```\n\nThe above check fails if coverage falls below 100%.\n\n## Running reports\n\nOnce you've run your tests with nyc, simply run:\n\n```bash\nnyc report\n```\n\nTo view your coverage report:\n\n<img width=\"500\" src=\"screen.png\">\n\nyou can use [any reporters that are supported by `istanbul`](https://github.com/istanbuljs/istanbuljs/tree/master/packages/istanbul-reports/lib):\n\n```bash\nnyc report --reporter=lcov\n```\n\n## Excluding files\n\nYou can tell nyc to exclude specific files and directories by adding\nan `nyc.exclude` array to your `package.json`. Each element of\nthe array is a glob pattern indicating which paths should be omitted.\n\nGlobs are matched using [micromatch](https://www.npmjs.com/package/micromatch).\n\nFor example, the following config will exclude any files with the extension `.spec.js`,\nand anything in the `build` directory:\n\n```json\n{\n  \"nyc\": {\n    \"exclude\": [\n      \"**/*.spec.js\",\n      \"build\"\n    ]\n  }\n}\n```\n> Note: Since version 9.0 files under `node_modules/` are excluded by default.\n  add the exclude rule `!**/node_modules/` to stop this.\n\n> Note: exclude defaults to `['test', 'test{,-*}.js', '**/*.test.js', '**/__tests__/**', '**/node_modules/**']`,\nwhich would exclude `test`/`__tests__` directories as well as `test.js`, `*.test.js`,\nand `test-*.js` files. Specifying your own exclude property overrides these defaults.\n\n## Including files\n\nAs an alternative to providing a list of files to `exclude`, you can provide\nan `include` key with a list of globs to specify specific files that should be covered:\n\n```json\n{\n  \"nyc\": {\n    \"include\": [\"**/build/umd/moment.js\"]\n  }\n}\n```\n\n> Note: include defaults to `['**']`\n\n> ### Use the `--all` flag to include files that have not been required in your tests.\n\n## Require additional modules\n\nThe `--require` flag can be provided to `nyc` to indicate that additional\nmodules should be required in the subprocess collecting coverage:\n\n`nyc --require babel-register --require babel-polyfill mocha`\n\n## Caching\n\nYou can run `nyc` with the optional `--cache` flag, to prevent it from\ninstrumenting the same files multiple times. This can significantly\nimprove runtime performance.\n\n## Configuring `nyc`\n\nAny configuration options that can be set via the command line can also be specified in the `nyc` stanza of your package.json, or within a `.nycrc` file:\n\n**package.json:**\n\n```json\n{\n  \"description\": \"These are just examples for demonstration, nothing prescriptive\",\n  \"nyc\": {\n    \"check-coverage\": true,\n    \"lines\": 99,\n    \"statements\": 99,\n    \"functions\": 99,\n    \"branches\": 99,\n    \"include\": [\n      \"src/**/*.js\"\n    ],\n    \"exclude\": [\n      \"src/**/*.spec.js\"\n    ],\n    \"reporter\": [\n      \"lcov\",\n      \"text-summary\"\n    ],\n    \"require\": [\n      \"./test/helpers/some-helper.js\"\n    ],\n    \"extension\": [\n      \".jsx\"\n    ],\n    \"cache\": true,\n    \"all\": true,\n    \"report-dir\": \"./alternative\"\n  }\n}\n```\n\n## High and low watermarks\n\nSeveral of the coverage reporters supported by nyc display special information\nfor high and low watermarks:\n\n* high-watermarks represent healthy test coverage (in many reports\n  this is represented with green highlighting).\n* low-watermarks represent sub-optimal coverage levels (in many reports\n  this is represented with red highlighting).\n\nYou can specify custom high and low watermarks in nyc's configuration:\n\n```json\n{\n  \"nyc\": {\n    \"watermarks\": {\n      \"lines\": [80, 95],\n      \"functions\": [80, 95],\n      \"branches\": [80, 95],\n      \"statements\": [80, 95]\n    }\n  }\n}\n```\n\n## Other advanced features\n\nTake a look at http://istanbul.js.org/docs/advanced/ and please feel free to [contribute documentation](https://github.com/istanbuljs/istanbuljs.github.io/tree/development/content).\n\n## Integrating with coveralls\n\n[coveralls.io](https://coveralls.io) is a great tool for adding\ncoverage reports to your GitHub project. Here's how to get nyc\nintegrated with coveralls and travis-ci.org:\n\n1. add the coveralls and nyc dependencies to your module:\n\n  ```shell\n  npm install coveralls nyc --save-dev\n  ```\n\n2. update the scripts in your package.json to include these bins:\n\n  ```json\n  {\n     \"script\": {\n       \"test\": \"nyc mocha\",\n       \"coverage\": \"nyc report --reporter=text-lcov | coveralls\"\n     }\n  }\n  ```\n\n3. For private repos, add the environment variable `COVERALLS_REPO_TOKEN` to travis.\n\n4. add the following to your `.travis.yml`:\n\n  ```yaml\n  after_success: npm run coverage\n  ```\n\nThat's all there is to it!\n\n> Note: by default coveralls.io adds comments to pull-requests on GitHub, this can feel intrusive. To disable this, click on your repo on coveralls.io and uncheck `LEAVE COMMENTS?`.\n\n## Integrating with codecov\n\n`nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov`\n\n[codecov](https://codecov.io/) is a great tool for adding\ncoverage reports to your GitHub project, even viewing them inline on GitHub with a browser extension:\n\nHere's how to get `nyc` integrated with codecov and travis-ci.org:\n\n1. add the codecov and nyc dependencies to your module:\n\n  ```shell\n  npm install codecov nyc --save-dev\n  ```\n\n2. update the scripts in your package.json to include these bins:\n\n  ```json\n  {\n     \"script\": {\n       \"test\": \"nyc tap ./test/*.js\",\n       \"coverage\": \"nyc report --reporter=text-lcov > coverage.lcov && codecov\"\n     }\n  }\n  ```\n\n3. For private repos, add the environment variable `CODECOV_TOKEN` to travis.\n\n4. add the following to your `.travis.yml`:\n\n  ```yaml\n  after_success: npm run coverage\n  ```\n\nThat's all there is to it!\n\n## More tutorials\n\nYou can find more tutorials at http://istanbul.js.org/docs/tutorials\n","repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"users":{"jalcine":true,"mantoni":true,"bcoe":true,"wenbing":true,"markthethomas":true,"n370":true,"nickeltobias":true,"tobiasnickel":true,"ridermansb":true,"charlotteis":true,"gr2m":true,"bojand":true,"timdp":true,"bencevans":true,"shannonmoeller":true,"novemberborn":true,"equimper":true,"slurm":true,"preco21":true,"ayyash":true,"abhisekp":true,"fdaciuk":true,"ubenzer":true,"santosharakere":true,"knownasilya":true,"qqcome110":true,"olabalboa":true,"jmsherry":true,"mhaidarh":true,"arttse":true,"hagith":true,"jamescostian":true,"langri-sha":true,"jerrywu":true,"mtscout6":true,"xueboren":true,"gher":true,"barenko":true,"wangnan0610":true,"monolithed":true,"gvhinks":true,"seangenabe":true,"abuelwafa":true,"nichoth":true,"fintanak":true,"russianator":true,"mauricedb":true,"suemcnab":true,"rsaa":true,"quafoo":true,"panlw":true,"gregh":true,"iseif":true,"princetoad":true,"erikvold":true,"mikestaub":true,"ifeature":true,"drweberdk":true,"ricardogobbosouza":true,"edm00se":true},"bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"license":"ISC","versions":{"1.1.0":{"name":"nyc","version":"1.1.0","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && mocha --ui exports"},"bin":{"nyc":"./bin/nyc","nyc-report":"./bin/nyc-report"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.13","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"8662c431a7c20c240b001d8562104d3653d34f39","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.0","_shasum":"9154bb5213eb001284771a940cdb2bf415309e79","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"9154bb5213eb001284771a940cdb2bf415309e79","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"}],"directories":{}},"1.1.1":{"name":"nyc","version":"1.1.1","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && mocha --ui exports"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.13","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"06fc18aed980a08338d15c22ed471273d92983e3","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.1","_shasum":"0a7dba52644d34edde1ebfb6844a80e186aea029","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"0a7dba52644d34edde1ebfb6844a80e186aea029","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"}],"directories":{}},"1.1.2":{"name":"nyc","version":"1.1.2","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"git://github.com/bcoe/istanbul.git#text-lcov","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"c30d15be8df929093cd1e8bf067ad7dc601f7610","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.2","_shasum":"17333756b4fbb0958f2b0b52737cbaa06dbd19bb","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.36","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"17333756b4fbb0958f2b0b52737cbaa06dbd19bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"}],"directories":{}},"1.1.3":{"name":"nyc","version":"1.1.3","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"ca7aca75b76b8a7db2096930bbce03ebde9e2945","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.3","_shasum":"d742d003019fe8804429df51f1f103c45058e368","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d742d003019fe8804429df51f1f103c45058e368","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.4":{"name":"nyc","version":"1.1.4","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"ff414667704c7310e52e161b5e545d4250f02944","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.4","_shasum":"3b6d78f5c4166358b6a33c1823f8449e4951445a","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"3b6d78f5c4166358b6a33c1823f8449e4951445a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.5":{"name":"nyc","version":"1.1.5","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"c695a3599001a7a81f39a0d586dd459444b1ce36","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.5","_shasum":"6f1964ffc4a63f2fd98cf82d1a52f439f90ca809","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6f1964ffc4a63f2fd98cf82d1a52f439f90ca809","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.5.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.6":{"name":"nyc","version":"1.1.6","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"1363d89fa6c48f39a84572d61d08a52f3d7babcc","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.6","_shasum":"db7af9dec4011304cf3c21fa727db55d99ca19f1","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"db7af9dec4011304cf3c21fa727db55d99ca19f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.6.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.7":{"name":"nyc","version":"1.1.7","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.0","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"ffb236cfcbcf15519d38819464a577cc43b61205","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.7","_shasum":"f28b69fb56576dc116b20992a4390cc2faca8ff4","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f28b69fb56576dc116b20992a4390cc2faca8ff4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.7.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.8":{"name":"nyc","version":"1.1.8","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"9bd3cd14cc7448da4c20cadd7fb0ab2c51b3a50e","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.1.8","_shasum":"3212729eee80c0a685683dd14e22749f94d17318","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"3212729eee80c0a685683dd14e22749f94d17318","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.8.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.1.9":{"name":"nyc","version":"1.1.9","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/","test/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","strip-bom":"^1.0.0","yargs":"^3.8.0","spawn-wrap":"0.0.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"25fcac7fa1c7e4558dedf55500598b25113a49bd","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","bundleDependencies":["spawn-wrap"],"_id":"nyc@1.1.9","_shasum":"9cc372f9f919722087cc76ef751ad2d8879c84aa","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"9cc372f9f919722087cc76ef751ad2d8879c84aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.1.9.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.2.0":{"name":"nyc","version":"1.2.0","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","strip-bom":"^1.0.0","yargs":"^3.8.0","spawn-wrap":"0.0.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","mocha":"^2.2.4","standard":"^3.7.3"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"610e7c012b4c9d1056033b3002706ea72f8fe94f","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","bundleDependencies":["spawn-wrap"],"_id":"nyc@1.2.0","_shasum":"1d82af59d2c301b62dabe187888eef842676ab68","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"1d82af59d2c301b62dabe187888eef842676ab68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.3.0":{"name":"nyc","version":"1.3.0","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"0f701da5aa3ad8a02872c4c6c8c37d0deb2c5877","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.3.0","_shasum":"d07101fdc6ffdfff7346a05b15dce2f6ec7296a2","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d07101fdc6ffdfff7346a05b15dce2f6ec7296a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.4.0":{"name":"nyc","version":"1.4.0","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.0.1","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"ea31a6f7bbb16c7aea301b7dda35b7fd5e6720b9","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.4.0","_shasum":"784957d2d24b532cbb499f813bdc2dc2db34478b","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"784957d2d24b532cbb499f813bdc2dc2db34478b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.4.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"1.4.1":{"name":"nyc","version":"1.4.1","description":"forking code-coverage using istanbul.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc-report.js --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js","nyc-report":"./bin/nyc-report.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.1.0","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"ae0534617a59c86905f1da290d067945bf7d1bb9","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@1.4.1","_shasum":"264032a49e94d87a9aaccb5e72c3ea725185b453","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"264032a49e94d87a9aaccb5e72c3ea725185b453","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-1.4.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.0":{"name":"nyc","version":"2.0.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.1.0","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"d27794e3c527ccf743501f328b9749f1bcf9cefe","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@2.0.0","_shasum":"947a3e42d8ba71402e0a4c51eef6a46299887073","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.6.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"947a3e42d8ba71402e0a4c51eef6a46299887073","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.1":{"name":"nyc","version":"2.0.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.2.0","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"404a3f80df15eaef0986b2f343e74fa3d6fe4130","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.1","_shasum":"0551f6e8ba48aaea923e77821f70f4252da03c51","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"0551f6e8ba48aaea923e77821f70f4252da03c51","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.2":{"name":"nyc","version":"2.0.2","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.2.0","spawn-wrap":"0.0.9","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"bf0bf1d6dcd829b03e942cde8791391fea06cd90","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.2","_shasum":"be209f6ef74923ef7e2ff6607194460598ffd109","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"be209f6ef74923ef7e2ff6607194460598ffd109","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.3":{"name":"nyc","version":"2.0.3","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.2.0","spawn-wrap":"^0.1.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"812260d761061578a72e37b24740bbde9fe6f32f","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.3","_shasum":"2f7164d9925062b372ffb96195311793104f42ad","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"2f7164d9925062b372ffb96195311793104f42ad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.4":{"name":"nyc","version":"2.0.4","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.3.0","spawn-wrap":"^0.1.2","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"57f1c34a542a0266086527c1b559e247e3453e63","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.4","_shasum":"c3e17a65451e7554c2f9e3c1ff636efe773fd22c","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"c3e17a65451e7554c2f9e3c1ff636efe773fd22c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.5":{"name":"nyc","version":"2.0.5","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^1.3.0","spawn-wrap":"^0.1.2","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"891e849049cdb4b08801b08a94d671d5b8d7b92a","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.5","_shasum":"bf3b007aa3bf6faa843863f643d88abaa6045f2e","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"bf3b007aa3bf6faa843863f643d88abaa6045f2e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.5.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.0.6":{"name":"nyc","version":"2.0.6","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter","email":"i@izs.me"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.1.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.0.0","spawn-wrap":"^0.1.2","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","standard":"^3.7.3","tap":"^1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"14789cae7979e81ff229a04d9224606254da9be2","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.0.6","_shasum":"778ecff69e132ca8b54e0d535986c6dcfe6d2953","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"778ecff69e132ca8b54e0d535986c6dcfe6d2953","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.0.6.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.1.0":{"name":"nyc","version":"2.1.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.0.0","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"6668c72aa33b43947d2e6e0839fbf8b185aaace8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.1.0","_shasum":"8857a15046002a677ff6dbddce47fa879c773aa8","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"8857a15046002a677ff6dbddce47fa879c773aa8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.1.1":{"name":"nyc","version":"2.1.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.0","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"80f51948325d6ac5c6db3c9a25b641225978f29f","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.1.1","_shasum":"68e89e8a97089056e72cc7e6ced90c33d42c7c60","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"68e89e8a97089056e72cc7e6ced90c33d42c7c60","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.1.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.1.2":{"name":"nyc","version":"2.1.2","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git@github.com:bcoe/nyc.git"},"gitHead":"d4141231af79106034660a3ddce98dd8e100282f","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc","_id":"nyc@2.1.2","_shasum":"a7a647ceebbaf68c91990d796a7e109a14b1e2a1","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.36","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"a7a647ceebbaf68c91990d796a7e109a14b1e2a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.1.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.1.3":{"name":"nyc","version":"2.1.3","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"75475cb3c0115c450a8dc0fecdef66845c6a7650","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.1.3","_shasum":"e749567a218cf2bffdd50e465606c069630dc35c","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"e749567a218cf2bffdd50e465606c069630dc35c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.1.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.1.4":{"name":"nyc","version":"2.1.4","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"8ef114d90b0baeb49a79663ec5daf0935002d4c1","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.1.4","_shasum":"6cc2e070dfaf5a5db957345f1f6ae0227387ef87","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6cc2e070dfaf5a5db957345f1f6ae0227387ef87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.1.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.2.0":{"name":"nyc","version":"2.2.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","jsonstream":"^1.0.3","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"0051bf32a243abe0e547a23a53c9dc9c8aa1d321","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.2.0","_shasum":"52ccc2711a02df0eeb69f82252c1692d6f369f0b","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"52ccc2711a02df0eeb69f82252c1692d6f369f0b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.2.1":{"name":"nyc","version":"2.2.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && ./bin/nyc.js tap ./test/nyc-test.js","coverage":"./bin/nyc.js report --reporter=text-lcov | coveralls"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","sinon":"^1.14.1","standard":"^3.7.3","tap":"1.0.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"29f92584efb3257a79bee3673bfe7344dd218dc6","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.2.1","_shasum":"73ef453a65ae9f880c77b966c3d833f4a32a80e9","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"73ef453a65ae9f880c77b966c3d833f4a32a80e9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.2.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.3.0":{"name":"nyc","version":"2.3.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.14","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.8.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.14.1","standard":"^4.0.1","tap":"^1.2.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"2de4037a47b1b631e3a2800795e09a64990287b0","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.3.0","_shasum":"fb7ecfa917ccc9b7d01befffb7a699cbca21daf2","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"fb7ecfa917ccc9b7d01befffb7a699cbca21daf2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"2.4.0":{"name":"nyc","version":"2.4.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.2.0","istanbul":"^0.3.16","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.4.0","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.12.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^4.3.2","tap":"^1.3.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"c0d4b8d41d0be4bee2e9c1c3abac957d2e1db0c6","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@2.4.0","_shasum":"02e9ca6d12e5ce9a1a6eee667c1c359a7e7ee3e7","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"02e9ca6d12e5ce9a1a6eee667c1c359a7e7ee3e7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-2.4.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.0.0":{"name":"nyc","version":"3.0.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","subprocess","testing","reporter"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.3.0","istanbul":"^0.3.16","lodash":"^3.8.0","mkdirp":"^0.5.0","rimraf":"^2.4.0","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^1.0.0","yargs":"^3.13.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^4.3.2","tap":"^1.3.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"fb38e400845ba658a181526684e371a3fae636ee","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.0.0","_shasum":"7fe791b061cebf418a26f0d9a4f0826db9dd0ee1","_from":".","_npmVersion":"2.12.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"7fe791b061cebf418a26f0d9a4f0826db9dd0ee1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.0.1":{"name":"nyc","version":"3.0.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules/"]}},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.3.0","istanbul":"^0.3.16","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^4.5.4","tap":"^1.3.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"457999cb1f99ef1e7e38ce06531c2bf0a5d201a8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.0.1","_shasum":"d75ef80c19e30539520803f63059cafb4531d4c7","_from":".","_npmVersion":"3.0.0","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d75ef80c19e30539520803f63059cafb4531d4c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.0.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.1.0":{"name":"nyc","version":"3.1.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules"]}},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"^1.3.0","istanbul":"^0.3.16","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^4.5.4","tap":"^1.3.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"312b4ae73e809cb0b4c090143946e9de29ac4b87","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.1.0","_shasum":"a6ce62b2820d73ec822d8157f05813dec1b84be1","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.0.2","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"a6ce62b2820d73ec822d8157f05813dec1b84be1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.2.0":{"name":"nyc","version":"3.2.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"57e24cdf36e4fbbd28c4ea671d09730581507be8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.2.0","_shasum":"b27cf7b44bd7eaf804352b29669d8885ad138475","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"b27cf7b44bd7eaf804352b29669d8885ad138475","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.2.1":{"name":"nyc","version":"3.2.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["foreground-child","spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a53b266e615dc710177ff4223d1380a42934a65d","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.2.1","_shasum":"1c636faefd3c9cb655b59c6a425185f6abebf189","_from":".","_npmVersion":"2.14.2","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"1c636faefd3c9cb655b59c6a425185f6abebf189","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.2.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"3.2.2":{"name":"nyc","version":"3.2.2","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","test":"standard && tap --coverage ./test/nyc-test.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["foreground-child","spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"4e9545a0c039032585149bf503c797f975e1e982","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@3.2.2","_shasum":"a21223ffcd86bf3d2d2ae9e14b8a08aeade046ee","_from":".","_npmVersion":"2.14.2","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"a21223ffcd86bf3d2d2ae9e14b8a08aeade046ee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-3.2.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"4.0.0-alpha":{"name":"nyc","version":"4.0.0-alpha","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"istanbul":"istanbul","pretest":"standard","test":" tap --coverage ./test/*.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"standard":{"ignore":["**/fixtures/**"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"convert-source-map":"^1.1.2","foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"babel-core":"^6.2.1","babel-preset-es2015":"^6.1.18","chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["foreground-child","spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"334e479bd0db7ef476b844dd53a55fa0ca6b952c","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@4.0.0-alpha","_shasum":"6c35f82a9b3dfb5c5d95346f717633a05b6bdb4e","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6c35f82a9b3dfb5c5d95346f717633a05b6bdb4e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-4.0.0-alpha.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"4.0.0":{"name":"nyc","version":"4.0.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"tap --coverage ./test/*.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"standard":{"ignore":["**/fixtures/**"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"convert-source-map":"^1.1.2","foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"babel-core":"^6.2.1","babel-preset-es2015":"^6.1.18","chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["foreground-child","spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"efacafa5e51ae4a4aa6ba83fb764de20aa6651d1","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@4.0.0","_shasum":"97aeadcbe307a06ab07fbe40bb94895f58b72f7e","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"97aeadcbe307a06ab07fbe40bb94895f58b72f7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-4.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"4.0.1":{"name":"nyc","version":"4.0.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"tap --coverage ./test/*.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin"]}},"standard":{"ignore":["**/fixtures/**"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"convert-source-map":"^1.1.2","foreground-child":"1.3.0","glob":"^5.0.14","istanbul":"^0.3.19","lodash":"^3.10.0","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"babel-core":"^6.2.1","babel-preset-es2015":"^6.1.18","chai":"^3.0.0","sinon":"^1.15.3","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["foreground-child","spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"c927dd2a3631838000dda278944e6f2e02261569","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@4.0.1","_shasum":"d31d065463df9aed998a798ab2b18c10d0871997","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d31d065463df9aed998a798ab2b18c10d0871997","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-4.0.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.0.0":{"name":"nyc","version":"5.0.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"tap --coverage ./test/*.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/nyc-test.js","test/source-map-cache.js","test/fixtures/_generateCoverage.js"]}},"standard":{"ignore":["**/fixtures/**"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"convert-source-map":"^1.1.2","foreground-child":"^1.3.0","glob":"^5.0.14","istanbul":"^0.4.1","lodash":"^3.10.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","source-map-fixtures":"^0.2.0","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"7cce64302bdc7e2b6585ea43dfc10c2a3c19bc4e","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.0.0","_shasum":"f064d68f72153c9268c8ab99d247a675b617c0f4","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f064d68f72153c9268c8ab99d247a675b617c0f4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.0.1":{"name":"nyc","version":"5.0.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"tap --coverage ./test/*.js"},"bin":{"nyc":"./bin/nyc.js"},"config":{"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/nyc-test.js","test/source-map-cache.js","test/fixtures/_generateCoverage.js"]}},"standard":{"ignore":["**/fixtures/**"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"convert-source-map":"^1.1.2","foreground-child":"^1.3.0","glob":"^5.0.14","istanbul":"^0.4.1","lodash":"^3.10.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","rimraf":"^2.4.2","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.0.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"chai":"^3.0.0","sinon":"^1.15.3","source-map-fixtures":"^0.2.0","standard":"^5.2.1","tap":"^1.3.4"},"bundleDependencies":["spawn-wrap"],"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"36a4b4d02f3317f856b25f3fbf362653cceec304","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.0.1","_shasum":"511a17f2034fb80a311ea9073049778314f51c49","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"511a17f2034fb80a311ea9073049778314f51c49","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.0.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.1.0":{"name":"nyc","version":"5.1.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"config":{"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]}},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","foreground-child":"^1.3.0","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.0","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.5","win-spawn":"^2.0.0","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"3a9a4dc4714069ec073dc51345b33e0ac119e485","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.1.0","_shasum":"d9306890e641537c33dfa7d69fa10f8a40a67a39","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d9306890e641537c33dfa7d69fa10f8a40a67a39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.1.1":{"name":"nyc","version":"5.1.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"config":{"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]}},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","foreground-child":"^1.3.0","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.0","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","win-spawn":"^2.0.0","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"706e2ed33a5edab007633f74defd40325bb806d7","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.1.1","_shasum":"dbd6ae007d839470358e3602c9dcfb96da4d71ad","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"dbd6ae007d839470358e3602c9dcfb96da4d71ad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.1.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.2.0":{"name":"nyc","version":"5.2.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"config":{"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]}},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","find-cache-dir":"^0.1.1","foreground-child":"^1.3.3","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a1e98cda80040ae5c2ed8c6fbdf67bfb9d64ee94","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.2.0","_shasum":"05a353fbc35d7a3b5cb38d270ac240fda50dbfce","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"05a353fbc35d7a3b5cb38d270ac240fda50dbfce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.3.0":{"name":"nyc","version":"5.3.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","find-cache-dir":"^0.1.1","foreground-child":"1.3.3","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","pkg-up":"^1.0.0","read-pkg":"^1.1.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"325fac0454fe402dfd42b0adbf5c1935d4803710","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.3.0","_shasum":"d31a584a68821d9ac9c51ace05f1f1b96f0073d2","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d31a584a68821d9ac9c51ace05f1f1b96f0073d2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.4.0":{"name":"nyc","version":"5.4.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","find-cache-dir":"^0.1.1","foreground-child":"1.3.3","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","pkg-up":"^1.0.0","read-pkg":"^1.1.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"44747b56cee8a8180a8ae8afe194a83a177cac73","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.4.0","_shasum":"f293f76ccc7a572d824e442488f5fd9eb9609cd6","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f293f76ccc7a572d824e442488f5fd9eb9609cd6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.4.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.5.0":{"name":"nyc","version":"5.5.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","find-cache-dir":"^0.1.1","foreground-child":"^1.3.5","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","pkg-up":"^1.0.0","read-pkg":"^1.1.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^0.4.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"3621913b54095eba70df7f37b79c413b58a43722","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.5.0","_shasum":"5782ae776e11e0fad96e84978d68ecd61be3410c","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"5782ae776e11e0fad96e84978d68ecd61be3410c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.5.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"directories":{}},"5.6.0":{"name":"nyc","version":"5.6.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Ollie Buck"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","find-cache-dir":"^0.1.1","foreground-child":"^1.3.5","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","pkg-up":"^1.0.0","read-pkg":"^1.1.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^3.15.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"27a189c49b224f2e04dfc9182ebf13dab049a7e8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@5.6.0","_shasum":"0eb394d16f3ef9ff1b440fd93b1a7ab530092754","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"0eb394d16f3ef9ff1b440fd93b1a7ab530092754","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-5.6.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/nyc-5.6.0.tgz_1454572618359_0.1655546200927347"},"directories":{}},"6.0.0":{"name":"nyc","version":"6.0.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.2.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","foreground-child":"^1.3.5","glob":"^6.0.2","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"~2.1.6","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^4.1.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","clear-require":"^1.0.1","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^3.10.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^5.2.1","tap":"^2.3.4","zero-fill":"^2.2.1"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"57c2cde775462a7ef4508903b32559acd7999da2","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@6.0.0","_shasum":"ba8b122a32ed575974e517d584cbf4b21ab13c1d","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"ba8b122a32ed575974e517d584cbf4b21ab13c1d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/nyc-6.0.0.tgz_1456000721275_0.6430440628901124"},"directories":{}},"6.1.0":{"name":"nyc","version":"6.1.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.3.5","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^4.3.1"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"9ce65e7bc030066e28393e495a30c8531577eadf","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@6.1.0","_shasum":"d7b8f069213fea5a1bc6327561cae9c3a7162939","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d7b8f069213fea5a1bc6327561cae9c3a7162939","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/nyc-6.1.0.tgz_1457828453116_0.8793002080637962"},"directories":{}},"6.1.1":{"name":"nyc","version":"6.1.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.3.5","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^4.3.1"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"d16c1472e1af89154f2d677d63f956d3b96568a4","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","_id":"nyc@6.1.1","_shasum":"fe12cacb8c69f93d8c6a6232dca259d18d9720ca","_from":".","_npmVersion":"3.3.0","_nodeVersion":"3.2.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"fe12cacb8c69f93d8c6a6232dca259d18d9720ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.1.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/nyc-6.1.1.tgz_1457917549150_0.1828021821565926"},"directories":{}},"6.2.0-alpha1":{"name":"nyc","version":"6.2.0-alpha1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.3.5","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.1.1","strip-bom":"^2.0.0","yargs":"^4.3.1"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a95b32041ddfcac151eec7227b902d554f8a10c3","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.2.0-alpha1","_shasum":"78d32acb7e1d387f983385cb0d44e88baced52b7","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"78d32acb7e1d387f983385cb0d44e88baced52b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.2.0-alpha1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.2.0-alpha1.tgz_1459721175009_0.5291788917966187"},"directories":{}},"6.2.0":{"name":"nyc","version":"6.2.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"conventional-recommended-workflow"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.0","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","conventional-recommended-workflow":"^1.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a785f80c983a99f41bbe3999bde8559317f85472","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.2.0","_shasum":"695bde0202d7b80b340928f8051b0f6a26be4432","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"695bde0202d7b80b340928f8051b0f6a26be4432","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.2.0.tgz_1459831672812_0.23977026296779513"},"directories":{}},"6.2.0-alpha":{"name":"nyc","version":"6.2.0-alpha","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"conventional-recommended-workflow"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.0","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","conventional-recommended-workflow":"^1.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"b3d8718b6d3cee57f29efaca5e74d95ed851c6fe","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.2.0-alpha","_shasum":"7f22e9491f93284c9953aec54476cd69f017ad24","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"7f22e9491f93284c9953aec54476cd69f017ad24","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.2.0-alpha.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.2.0-alpha.tgz_1459832772853_0.4622875628992915"},"directories":{}},"6.2.0-alpha3":{"name":"nyc","version":"6.2.0-alpha3","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"conventional-recommended-workflow"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.0","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","conventional-recommended-workflow":"^1.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"b3d8718b6d3cee57f29efaca5e74d95ed851c6fe","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.2.0-alpha3","_shasum":"94d9d61abbeaf7abb7553805ebd9f5b1ef9f1dac","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"94d9d61abbeaf7abb7553805ebd9f5b1ef9f1dac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.2.0-alpha3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.2.0-alpha3.tgz_1459833167631_0.22283859574235976"},"directories":{}},"6.2.1":{"name":"nyc","version":"6.2.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"conventional-recommended-workflow"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.1","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.0","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","conventional-recommended-workflow":"^1.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","tap":"^5.7.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"c4de9b4bb5daa0ce275de26b5481544f91367ea0","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.2.1","_shasum":"cc011d2215588b4c158f7a09bf77929a56a859ee","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"cc011d2215588b4c158f7a09bf77929a56a859ee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.2.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.2.1.tgz_1459833779493_0.5102585898712277"},"directories":{}},"6.3.0":{"name":"nyc","version":"6.3.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.1","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^1.1.0","tap":"^5.7.1","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"545cf919dde430b5af0ce044b78848697f278ab5","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.3.0","_shasum":"35a06ef6b1b792c60de418e3690c43e0746bc490","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"35a06ef6b1b792c60de418e3690c43e0746bc490","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.3.0.tgz_1460158871322_0.24935032753273845"},"directories":{}},"6.4.0-next":{"name":"nyc","version":"6.4.0-next","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.1","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.1.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"b8ac5eed8db8346510517327c1b83e8c8c58b40c","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.0-next","_shasum":"b528b17dbf1f74b5ecd9190d515b30392325c8a6","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"b528b17dbf1f74b5ecd9190d515b30392325c8a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.0-next.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.4.0-next.tgz_1460335319214_0.12691417546011508"},"directories":{}},"6.4.0":{"name":"nyc","version":"6.4.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.1","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.1.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"ea544ef85c09b2f781776220b7b6cbf29c9d1236","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.0","_shasum":"20ff3c1e46d1fb53ae9d0810fc007f0b15261bc4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"20ff3c1e46d1fb53ae9d0810fc007f0b15261bc4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.4.0.tgz_1460342644212_0.2639539900701493"},"directories":{}},"6.4.1":{"name":"nyc","version":"6.4.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.1","strip-bom":"^2.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.1.2","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"693b797e5f95639469e2d64b4fc668a8177fa6e7","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.1","_shasum":"66a2dbc041cd8dda8b3229cc80420f92970d3c77","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"66a2dbc041cd8dda8b3229cc80420f92970d3c77","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.4.1.tgz_1461783541002_0.1958855411503464"},"directories":{}},"6.4.2":{"name":"nyc","version":"6.4.2","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","strip-bom":"^3.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.2.0","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"1b625ff550f8185a5f553df51b32529330400826","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.2","_shasum":"6e36f6702b3a08b09e30cb81ec2e63663b4f352c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6e36f6702b3a08b09e30cb81ec2e63663b4f352c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.4.2.tgz_1462162473284_0.176653902977705"},"directories":{}},"6.4.3":{"name":"nyc","version":"6.4.3","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","strip-bom":"^3.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"8a63f8ba1d0751b41d278948463e996a7190ee77","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.3","_shasum":"998262b3ce8a37be584e2cb23c80f201df7a1d35","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"998262b3ce8a37be584e2cb23c80f201df7a1d35","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.4.3.tgz_1462510537237_0.33222084515728056"},"directories":{}},"6.4.3-bundle":{"name":"nyc","version":"6.4.3-bundle","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","strip-bom":"^3.0.0","yargs":"^4.4.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^6.0.8","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"8a63f8ba1d0751b41d278948463e996a7190ee77","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.3-bundle","_shasum":"cec0c51f087e121862b84b2d7b65c728f7f280b2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"cec0c51f087e121862b84b2d7b65c728f7f280b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.3-bundle.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.4.3-bundle.tgz_1462514617837_0.7241621178109199"},"directories":{}},"6.4.4":{"name":"nyc","version":"6.4.4","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","lodash":"^4.9.0","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","strip-bom":"^3.0.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.1.0","lodash":"^4.6.1","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"f5d6262eb2bb968b23822b1a3aedaca88fed28c7","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","lodash","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","strip-bom","yargs"],"_id":"nyc@6.4.4","_shasum":"43d7dbfab83e116ab7f29d124eaec9b87fb9fe93","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"43d7dbfab83e116ab7f29d124eaec9b87fb9fe93","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.4.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.4.4.tgz_1462642051580_0.9487117824610323"},"directories":{}},"6.5.0-candidate":{"name":"nyc","version":"6.5.0-candidate","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"8dc6c094770c18627386514e4d4dc09cc659d152","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.5.0-candidate","_shasum":"9b93e448dd300dbb4d03940ae6c119b90843b688","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"9b93e448dd300dbb4d03940ae6c119b90843b688","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.5.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.5.0-candidate.tgz_1465530311671_0.8411260081920773"},"directories":{}},"6.5.0-candidate2":{"name":"nyc","version":"6.5.0-candidate2","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"c621f9dd869e94907e0a534879d88c8fe1f2a29e","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.5.0-candidate2","_shasum":"9d08d7a6413248ef6ed666d94872d08e5f9efeb5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"9d08d7a6413248ef6ed666d94872d08e5f9efeb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.5.0-candidate2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.5.0-candidate2.tgz_1465531072540_0.019955482566729188"},"directories":{}},"6.5.0":{"name":"nyc","version":"6.5.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.4.0","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^2.1.1","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"8df87dca27a57e444db0f62f653d62aa84b8e19c","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.5.0","_shasum":"96f686e52926ad5580af905c4a23ded51bf6c888","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"96f686e52926ad5580af905c4a23ded51bf6c888","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.5.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.5.0.tgz_1465790559353_0.1348956988658756"},"directories":{}},"6.5.1":{"name":"nyc","version":"6.5.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"ea028b985f44d1a2cd48c545441abcaa75287da5","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.5.1","_shasum":"20164a63988e3e12f84bde2c6461954dcc23ffec","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"20164a63988e3e12f84bde2c6461954dcc23ffec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.5.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.5.1.tgz_1465922129262_0.853828506777063"},"directories":{}},"6.6.0":{"name":"nyc","version":"6.6.0","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"b9a3023d97ce0350e4325cf240cf60de662f1e3b","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.6.0","_shasum":"987875b5bb2927b9e26470948c15c08c9483b832","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"987875b5bb2927b9e26470948c15c08c9483b832","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.6.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-6.6.0.tgz_1465927028174_0.3598504876717925"},"directories":{}},"6.6.1":{"name":"nyc","version":"6.6.1","description":"a code coverage tool that works well with subprocesses.","main":"index.js","scripts":{"pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul":"^0.4.3","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"6de49bff5d31168340944b251fedfe6b5fbc468b","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@6.6.1","_shasum":"2f6014610a57070021c4c067e9b9e330a23ac6a7","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"2f6014610a57070021c4c067e9b9e330a23ac6a7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-6.6.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-6.6.1.tgz_1465928506957_0.3981948005966842"},"directories":{}},"7.0.0-alpha.1":{"name":"nyc","version":"7.0.0-alpha.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-reports":"^1.0.0-alpha.6","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"dd15ddb0c8df1ace855dc78827ed39e61cc3aa81","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-alpha.1","_shasum":"19816512994640a46d924bd72f8c9d9ca667a0df","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"19816512994640a46d924bd72f8c9d9ca667a0df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-alpha.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-alpha.1.tgz_1466984758927_0.728425411041826"},"directories":{}},"7.0.0-alpha.2":{"name":"nyc","version":"7.0.0-alpha.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-reports":"^1.0.0-alpha.6","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"dd15ddb0c8df1ace855dc78827ed39e61cc3aa81","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-alpha.2","_shasum":"66b9578eb9169c4a956e294cf091b6450b95b729","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"66b9578eb9169c4a956e294cf091b6450b95b729","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-alpha.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-alpha.2.tgz_1466987471098_0.17305726232007146"},"directories":{}},"7.0.0-alpha.3":{"name":"nyc","version":"7.0.0-alpha.3","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","test/source-map-cache.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.1","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-reports":"^1.0.0-alpha.6","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","source-map":"^0.5.3","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-fixtures":"^2.1.0","source-map-support":"^0.4.0","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^5.7.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"2e008f7c66aae8a3de8b1cb64b72e5f26ccee3fc","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","source-map","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-alpha.3","_shasum":"5395e4113e02c1c5461e7b1f07eba5eb7e670f89","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"5395e4113e02c1c5461e7b1f07eba5eb7e670f89","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-alpha.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-alpha.3.tgz_1467001182957_0.23461296455934644"},"directories":{}},"7.0.0-alpha.4":{"name":"nyc","version":"7.0.0-alpha.4","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.6","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.0","signal-exit":"^3.0.0","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.1","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^6.1.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"74b1487d97679fbe93c8527cc883f5ade260b4e8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-alpha.4","_shasum":"53502461f8126a39474671e3c34ea776126d37b3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"53502461f8126a39474671e3c34ea776126d37b3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-alpha.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-alpha.4.tgz_1467496096906_0.38473610719665885"},"directories":{}},"7.0.0-alpha.5":{"name":"nyc","version":"7.0.0-alpha.5","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.7","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.3","signal-exit":"^3.0.0","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.1","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^6.1.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a181e279af37168ad38308df16f0902aba86a1f5","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-alpha.5","_shasum":"e1433bddf95a2a81d434ff0cae76c75aad7ad046","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"e1433bddf95a2a81d434ff0cae76c75aad7ad046","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-alpha.5.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-alpha.5.tgz_1467873743143_0.33472488867118955"},"directories":{}},"7.0.0":{"name":"nyc","version":"7.0.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"istanbul report --include=./.self_coverage/*.json lcov text","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"append-transform":"^0.4.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.7","md5-hex":"^1.2.0","micromatch":"^2.3.7","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.3","signal-exit":"^3.0.0","spawn-wrap":"^1.2.2","test-exclude":"^1.1.0","yargs":"^4.7.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.4","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","istanbul":"^0.4.4","lodash":"^4.12.0","newline-regex":"^0.2.1","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.1","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.2.1","tap":"^6.1.1","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"60843a4c9978b6161cfc14146659ece461a709cf","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0","_shasum":"1809941e399f2ccfe5e088cd8fc479d1372898b0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"1809941e399f2ccfe5e088cd8fc479d1372898b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.0.0.tgz_1468048073013_0.46512221498414874"},"directories":{}},"7.1.0-candidate":{"name":"nyc","version":"7.1.0-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.3","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^1.1.0","yargs":"^4.7.0","append-transform":"*"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","yargs":"^4.8.0","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"476b5193afdac80a5504759730eb49bdb624025e","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-hook","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.1.0-candidate","_shasum":"10cb4a76071c3714e2274eab48ec8d251411e94e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"10cb4a76071c3714e2274eab48ec8d251411e94e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.1.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-7.1.0-candidate.tgz_1468642972838_0.2261543874628842"},"directories":{}},"7.0.0-candidate2":{"name":"nyc","version":"7.0.0-candidate2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.3","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^1.1.0","yargs":"^4.8.0","append-transform":"*"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"db257cd0b605fccb48d7a27876d0df5131ccabae","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-hook","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.0.0-candidate2","_shasum":"1b9e16d83c89ebeb15de7d0f83d281806461d2cb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"1b9e16d83c89ebeb15de7d0f83d281806461d2cb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.0.0-candidate2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-7.0.0-candidate2.tgz_1468649454358_0.15750409895554185"},"directories":{}},"7.1.0-candidate2":{"name":"nyc","version":"7.1.0-candidate2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.1.2","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.3","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^1.1.0","yargs":"^4.8.0","append-transform":"*"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"db257cd0b605fccb48d7a27876d0df5131ccabae","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["append-transform","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-instrument","istanbul-lib-hook","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs"],"_id":"nyc@7.1.0-candidate2","_shasum":"e2d5bf2722b78f468bff1cfca1ff15448e83a401","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"e2d5bf2722b78f468bff1cfca1ff15448e83a401","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.1.0-candidate2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.1.0-candidate2.tgz_1468653234149_0.7421847600489855"},"directories":{}},"7.1.0":{"name":"nyc","version":"7.1.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0-alpha.4","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0-alpha.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^1.1.0","yargs":"^4.8.1","yargs-parser":"^2.4.1"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"de1defa9ea288fc410d60a96e23c61441d62c7b8","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@7.1.0","_shasum":"8e14971f3a15d1abbec7ac610ef54cb889e9ffb4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"8e14971f3a15d1abbec7ac610ef54cb889e9ffb4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-7.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-7.1.0.tgz_1469461827370_0.82201510341838"},"directories":{}},"8.0.0-candidate":{"name":"nyc","version":"8.0.0-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^2.1.1","yargs":"^4.8.1","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"e7b5d81917bfe7d0de0e20b9e416f7edcc014efd","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.0.0-candidate","_shasum":"9f908a607aeadeb5b13fce8f41e8aa7bea35f8af","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"9f908a607aeadeb5b13fce8f41e8aa7bea35f8af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.0.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-8.0.0-candidate.tgz_1470982247418_0.18847128725610673"},"directories":{}},"8.0.0":{"name":"nyc","version":"8.0.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^2.1.1","yargs":"^4.8.1","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"e7b5d81917bfe7d0de0e20b9e416f7edcc014efd","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.0.0","_shasum":"bc40e48bc5fd74f23581b1a0d7a258c08b3da5bb","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"bc40e48bc5fd74f23581b1a0d7a258c08b3da5bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-8.0.0.tgz_1471124184430_0.8889868722762913"},"directories":{}},"8.1.0-candidate":{"name":"nyc","version":"8.1.0-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^2.1.1","yargs":"^4.8.1","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a54dc7faf486bd3c46fd716d350ded88d2eaec0a","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.1.0-candidate","_shasum":"19688edad5b10be9f76dbd6ad4b5ab2e5b236147","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"19688edad5b10be9f76dbd6ad4b5ab2e5b236147","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.1.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-8.1.0-candidate.tgz_1471162216054_0.061046515591442585"},"directories":{}},"8.1.0":{"name":"nyc","version":"8.1.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.3","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0-alpha.10","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^2.1.1","yargs":"^4.8.1","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^7.0.1","standard-version":"^2.4.0","tap":"^6.2.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/bcoe/nyc.git"},"gitHead":"a54dc7faf486bd3c46fd716d350ded88d2eaec0a","bugs":{"url":"https://github.com/bcoe/nyc/issues"},"homepage":"https://github.com/bcoe/nyc#readme","bundleDependencies":["arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.1.0","_shasum":"eaad1e95e33d52f87651cfbf79a9fb697d343e3a","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"eaad1e95e33d52f87651cfbf79a9fb697d343e3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-8.1.0.tgz_1471162787187_0.6714774949941784"},"directories":{}},"8.2.0-candidate1":{"name":"nyc","version":"8.2.0-candidate1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.0","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","pkg-up":"^1.0.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.0","spawn-wrap":"^1.2.4","test-exclude":"^2.1.2","yargs":"^5.0.0","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.2.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.4","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"gitHead":"b9c0aeaa6e0bf8997d6a43ff810fc6a0064a331b","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","pkg-up","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.2.0-candidate1","_shasum":"cb8f8c1c6179a00263171c34edc494af2bd7d47b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"cb8f8c1c6179a00263171c34edc494af2bd7d47b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.2.0-candidate1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-8.2.0-candidate1.tgz_1472860928667_0.9143616212531924"},"directories":{}},"8.2.0-candidate2":{"name":"nyc","version":"8.2.0-candidate2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.1","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.2","yargs":"^5.0.0","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"gitHead":"f08ba45e6c8a557986cb5eb241224f925950076f","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.2.0-candidate2","_shasum":"7cf5a8720d0681f64665b4ebe106957f2cd59141","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"7cf5a8720d0681f64665b4ebe106957f2cd59141","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.2.0-candidate2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-8.2.0-candidate2.tgz_1473809273293_0.5628243535757065"},"directories":{}},"8.3.0-candidate":{"name":"nyc","version":"8.3.0-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.1","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.2","yargs":"^5.0.0","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"gitHead":"0aae39d8ed158703347cd28931a072c594751282","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.3.0-candidate","_shasum":"acc961e3d54e182ebaa5ddf785412dc7cc48165a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"acc961e3d54e182ebaa5ddf785412dc7cc48165a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.3.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-8.3.0-candidate.tgz_1473958811891_0.8735386326443404"},"directories":{}},"8.3.0":{"name":"nyc","version":"8.3.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","version":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.1","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.2","yargs":"^5.0.0","yargs-parser":"^3.1.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"gitHead":"0aae39d8ed158703347cd28931a072c594751282","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.3.0","_shasum":"bb78fb0630bf93985f8143b73943b856aea0f0d1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"bb78fb0630bf93985f8143b73943b856aea0f0d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-8.3.0.tgz_1473960147797_0.9827699167653918"},"directories":{}},"8.3.1-candidate":{"name":"nyc","version":"8.3.1-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.2","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.3","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"fad3586cae6ab7f272a2ea5824430c8f9f2a3f9a","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.3.1-candidate","_shasum":"78480b8c7f1ffd0a7d5f0d04072a3d504f8dc28d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"78480b8c7f1ffd0a7d5f0d04072a3d504f8dc28d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.3.1-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-8.3.1-candidate.tgz_1475729291669_0.8989575172308832"},"directories":{}},"8.3.1":{"name":"nyc","version":"8.3.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.2","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.3","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^2.4.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"fad3586cae6ab7f272a2ea5824430c8f9f2a3f9a","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.3.1","_shasum":"5761e96b0d5871844e8768e35d8c8a0b7fd6b67c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"5761e96b0d5871844e8768e35d8c8a0b7fd6b67c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.3.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/nyc-8.3.1.tgz_1475867150847_0.06735462974756956"},"directories":{}},"8.3.2":{"name":"nyc","version":"8.3.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.1.3","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.2","istanbul-reports":"^1.0.0-alpha.8","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.3","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^7.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"c487eb34e0d3d917222139f921e3673c69b526f1","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.3.2","_shasum":"a3b7a590fe1c6c4b2d0e3f24afe28b62bfafd745","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"a3b7a590fe1c6c4b2d0e3f24afe28b62bfafd745","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.3.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-8.3.2.tgz_1476920935581_0.14389473223127425"},"directories":{}},"8.4.0-candidate":{"name":"nyc","version":"8.4.0-candidate","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.2.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.2","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.3","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"aa9ab4fb3026abafb1a2bafd3c33bdb7f0dab800","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.4.0-candidate","_shasum":"c68e8abf9901fbb918f703dab2e6de14813fab77","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"c68e8abf9901fbb918f703dab2e6de14813fab77","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.4.0-candidate.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-8.4.0-candidate.tgz_1477790293558_0.5280531202442944"},"directories":{}},"8.4.0":{"name":"nyc","version":"8.4.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.2.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.0.2","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^2.1.3","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.3","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.2","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"aa9ab4fb3026abafb1a2bafd3c33bdb7f0dab800","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@8.4.0","_shasum":"660371c807caef0427fb9b0948f74180624ea6e4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"660371c807caef0427fb9b0948f74180624ea6e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-8.4.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-8.4.0.tgz_1478106755229_0.9370335573330522"},"directories":{}},"9.0.0-candidate.1":{"name":"nyc","version":"9.0.0-candidate.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.0.0","yargs":"^6.0.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","split-lines":"^1.0.0","source-map-support":"^0.4.6","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"b6713a39ddddf8835a88e23bca62d7edccc98298","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@9.0.0-candidate.1","_shasum":"2ef3b9b63218b1bb9e508e483b03262107382b8f","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"2ef3b9b63218b1bb9e508e483b03262107382b8f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-9.0.0-candidate.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-9.0.0-candidate.1.tgz_1479003135053_0.9116365052759647"},"directories":{}},"9.0.1-candidate.1":{"name":"nyc","version":"9.0.1-candidate.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.2.2","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","split-lines":"^1.0.0","source-map-support":"^0.4.6","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"c3c4d3815590b6bef9f65a80240e9311d487dae7","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@9.0.1-candidate.1","_shasum":"ef31a32b0460b44a0bcf1e4aa5c97d0b19f22c52","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"ef31a32b0460b44a0bcf1e4aa5c97d0b19f22c52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-9.0.1-candidate.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-9.0.1-candidate.1.tgz_1479167622249_0.31765128928236663"},"directories":{}},"9.0.1":{"name":"nyc","version":"9.0.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.2.2","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","split-lines":"^1.0.0","source-map-support":"^0.4.6","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"c3c4d3815590b6bef9f65a80240e9311d487dae7","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@9.0.1","_shasum":"82775ed5c7f2734595a2c5e7c64f5d7199904db0","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"82775ed5c7f2734595a2c5e7c64f5d7199904db0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-9.0.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-9.0.1.tgz_1479168774378_0.8441717887762934"},"directories":{}},"10.0.0-candidate.1":{"name":"nyc","version":"10.0.0-candidate.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.3.0","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","debug-log":"^1.0.1","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"0dd970c0a98d48933b7196eaa281efa15ac19579","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.0.0-candidate.1","_shasum":"419d217e499d944546d5ad9e4144198b81cf983c","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"419d217e499d944546d5ad9e4144198b81cf983c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.0.0-candidate.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.0.0-candidate.1.tgz_1479801655387_0.3767129983752966"},"directories":{}},"10.0.0-candidate.2":{"name":"nyc","version":"10.0.0-candidate.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.3.0","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"a3c7f83059b98011ad71514076a2074f5103f04d","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.0.0-candidate.2","_shasum":"3d1f440d41e71ee009298f837326583e0cd4ce86","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"3d1f440d41e71ee009298f837326583e0cd4ce86","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.0.0-candidate.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.0.0-candidate.2.tgz_1479802152547_0.9108953103423119"},"directories":{}},"10.0.0":{"name":"nyc","version":"10.0.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.2.4","test-exclude":"^3.3.0","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^0.2.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^3.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"68b78e3068ee99a5dc89f184358b19c550c256d1","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.0.0","_shasum":"95bd4a2c3487f33e1e78f213c6d5a53d88074ce6","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"95bd4a2c3487f33e1e78f213c6d5a53d88074ce6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.0.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.0.0.tgz_1479833836148_0.2873055269010365"},"directories":{}},"10.0.1-candidate.0":{"name":"nyc","version":"10.0.1-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.3.1","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"^1.3.4","test-exclude":"^3.3.0","yargs":"^6.4.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"2e39e004f8ceeb3f0e530999ef01db7ff959a223","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.0.1-candidate.0","_shasum":"09cdc6c0df20536ac325fd9affe6f50ee7cf44d4","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"09cdc6c0df20536ac325fd9affe6f50ee7cf44d4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.0.1-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.0.1-candidate.0.tgz_1482823245888_0.9546192192938179"},"directories":{}},"10.0.2-candidate.0":{"name":"nyc","version":"10.0.2-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0-alpha.4","istanbul-lib-instrument":"^1.4.0-candidate.0","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^8.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"093963bc02d93d2075523b14a32aa997144c66c4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.0.2-candidate.0","_shasum":"da323dfd409e1afb4b5f0d4fedb65706034f1277","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"da323dfd409e1afb4b5f0d4fedb65706034f1277","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.0.2-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.0.2-candidate.0.tgz_1483394021740_0.41767710563726723"},"directories":{}},"10.1.0-candidate.0":{"name":"nyc","version":"10.1.0-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^9.0.3","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"8f7af3a5acb87f1380f18d6c516a3439610d12e4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.1.0-candidate.0","_shasum":"6fa45ad8ace56a905845f6a9a31e6cbc136fc705","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6fa45ad8ace56a905845f6a9a31e6cbc136fc705","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.1.0-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.1.0-candidate.0.tgz_1484630301565_0.6148118986748159"},"directories":{}},"10.1.0":{"name":"nyc","version":"10.1.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.0","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^9.0.3","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"8f7af3a5acb87f1380f18d6c516a3439610d12e4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.1.0","_shasum":"ca28b48f1bbefbfa75e14a2c4d02494c0a785242","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"ca28b48f1bbefbfa75e14a2c4d02494c0a785242","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.1.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.1.0.tgz_1484704549550_0.8700637181755155"},"directories":{}},"10.1.1-candidate.0":{"name":"nyc","version":"10.1.1-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.1","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^9.0.3","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"e03cd4803872d4650d19171239d60c2feef2fc3c","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.1.1-candidate.0","_shasum":"f10e4ae5c847e383940c48312cd56df777e5d549","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f10e4ae5c847e383940c48312cd56df777e5d549","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.1.1-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.1.1-candidate.0.tgz_1484716384168_0.5840113023295999"},"directories":{}},"10.1.2-candidate.0":{"name":"nyc","version":"10.1.2-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.1","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^9.0.3","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"e46335fc1c19859663f7c23ea96ea068ed272d4c","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.1.2-candidate.0","_shasum":"d2f73d16d4e83082a4792bd23e18b9e308adbede","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"d2f73d16d4e83082a4792bd23e18b9e308adbede","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.1.2-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.1.2-candidate.0.tgz_1484717756302_0.6797477472573519"},"directories":{}},"10.1.2":{"name":"nyc","version":"10.1.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.1","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^3.3.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^9.0.3","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"e46335fc1c19859663f7c23ea96ea068ed272d4c","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.1.2","_shasum":"ea7acaa20a235210101604f4e7d56d28453b0274","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"ea7acaa20a235210101604f4e7d56d28453b0274","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.1.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.1.2.tgz_1484717951187_0.9738509021699429"},"directories":{}},"10.2.0-candidate.0":{"name":"nyc","version":"10.2.0-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.1","istanbul-lib-hook":"^1.0.0","istanbul-lib-instrument":"^1.4.2","istanbul-lib-report":"^1.0.0-alpha.3","istanbul-lib-source-maps":"^1.1.0","istanbul-reports":"^1.0.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^6.6.0","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^1.15.3","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^8.0.0","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"fe639c13dc48cad0ff2df62846c4ac1eca954d41","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.0-candidate.0","_shasum":"70bda0cffc7da0a883a977ee4738ed884c8b5d83","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"70bda0cffc7da0a883a977ee4738ed884c8b5d83","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.0-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.2.0-candidate.0.tgz_1489470313018_0.6431850281078368"},"directories":{}},"10.2.0-candidate.1":{"name":"nyc","version":"10.2.0-candidate.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"8d5d8fc63c4730b69bc29cc396283abf5b428b61","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.0-candidate.1","_shasum":"afff99a68ddad265447a5f113e29eb294693505d","_from":".","_npmVersion":"4.4.1","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"afff99a68ddad265447a5f113e29eb294693505d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.0-candidate.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.2.0-candidate.1.tgz_1490597119093_0.4140564273111522"},"directories":{}},"10.2.0":{"name":"nyc","version":"10.2.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"455619f9fdd0a1f4fa08b0621e030cceda969011","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.0","_shasum":"facd90240600c9aa4dd81ea99c2fb6a85c53de0c","_from":".","_npmVersion":"3.3.0","_nodeVersion":"4.0.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"facd90240600c9aa4dd81ea99c2fb6a85c53de0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.2.0.tgz_1490677513445_0.21252468670718372"},"directories":{}},"10.2.1":{"name":"nyc","version":"10.2.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"fdc59c5bdb9eaf63814ad8139358afe9ed053d5d","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.1","_shasum":"b193b29116fb1116d41fab86b369471af842119b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"b193b29116fb1116d41fab86b369471af842119b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.2.1.tgz_1492588285766_0.8788694767281413"},"directories":{}},"10.2.2":{"name":"nyc","version":"10.2.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"fdc59c5bdb9eaf63814ad8139358afe9ed053d5d","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.2","_shasum":"1b1c8ca4636d810cb3e281558dc9fcb08389f204","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"1b1c8ca4636d810cb3e281558dc9fcb08389f204","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.2.2.tgz_1492589598745_0.23673564521595836"},"directories":{}},"10.2.2-candidate.2":{"name":"nyc","version":"10.2.2-candidate.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"c60b9e2ce387349e65602dcab3fcab009cd8aeec","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.2-candidate.2","_shasum":"c8a5c806f2d1eb0fa2d951f779f0323cd0a4bb40","_from":".","_npmVersion":"4.5.0","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"c8a5c806f2d1eb0fa2d951f779f0323cd0a4bb40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.2-candidate.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.2.2-candidate.2.tgz_1492627129697_0.05917383823543787"},"directories":{}},"10.2.2-candidate.3":{"name":"nyc","version":"10.2.2-candidate.3","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"8f7bec778b727f8521a7f4761e44e56dfb72fa7a","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.2-candidate.3","_shasum":"ace348d9a02c67fc9b5a3027263bc19e4cb7c823","_from":".","_npmVersion":"4.5.0","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"ace348d9a02c67fc9b5a3027263bc19e4cb7c823","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.2-candidate.3.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.2.2-candidate.3.tgz_1492627478495_0.7243636252824217"},"directories":{}},"10.2.2-candidate.4":{"name":"nyc","version":"10.2.2-candidate.4","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run cover","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","run-tests":"tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","cover":"npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report","dev":"npm run clean && npm run build && npm run run-tests","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/nyc-test.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"5dc02cd57081591b055a41b0fda36890e3611678","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.2.2-candidate.4","_shasum":"f025fac30850a066b82062d3a41f1c32892de61b","_from":".","_npmVersion":"4.5.0","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f025fac30850a066b82062d3a41f1c32892de61b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.2.2-candidate.4.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.2.2-candidate.4.tgz_1492628587876_0.7440255000256002"},"directories":{}},"10.3.0-candidate.0":{"name":"nyc","version":"10.3.0-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/src/nyc-bin.js","test-mocha":"./bin/nyc.js --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.0.2","istanbul-lib-hook":"^1.0.5","istanbul-lib-instrument":"^1.7.0","istanbul-lib-report":"^1.0.0","istanbul-lib-source-maps":"^1.1.1","istanbul-reports":"^1.0.2","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.0.0","yargs":"^7.0.2","yargs-parser":"^4.0.2"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"eeebdd7615eb48a8583e7688f8677bd522371313","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.0-candidate.0","_shasum":"7f107fc0557dbae5e39da15d109ac3159be348ac","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.5.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"7f107fc0557dbae5e39da15d109ac3159be348ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.0-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.3.0-candidate.0.tgz_1492673815139_0.04123461712151766"},"directories":{}},"10.3.0-candidate.1":{"name":"nyc","version":"10.3.0-candidate.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/src/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^7.1.0","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"55e826dd8aaa062957460c4b7b43a9339aac04b4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.0-candidate.1","_shasum":"532ac292b865f3f61703e068315a486b11bbba6e","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"532ac292b865f3f61703e068315a486b11bbba6e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.0-candidate.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.3.0-candidate.1.tgz_1493447867492_0.3962609679438174"},"directories":{}},"10.3.0":{"name":"nyc","version":"10.3.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/src/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^7.1.0","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"55e826dd8aaa062957460c4b7b43a9339aac04b4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.0","_shasum":"a7051ac03f89d17e719a586a66a84ce4bdfde857","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"a7051ac03f89d17e719a586a66a84ce4bdfde857","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.3.0.tgz_1493449442876_0.8565425658598542"},"directories":{}},"11.0.0-candidate.0":{"name":"nyc","version":"11.0.0-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/src/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^8.0.0-candidate.1","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"55e826dd8aaa062957460c4b7b43a9339aac04b4","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@11.0.0-candidate.0","_shasum":"8d984467819a1a4d6d674e09110ca23d3b727e51","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"8d984467819a1a4d6d674e09110ca23d3b727e51","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-11.0.0-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-11.0.0-candidate.0.tgz_1493601741917_0.20512034511193633"},"directories":{}},"10.3.1":{"name":"nyc","version":"10.3.1","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/src/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^7.1.0","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"75713d8b73c80f7f159c95ad1d79cfef660eac08","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.1","_shasum":"6a22100f585f72cd522e517c1854adad01aa0e33","_from":".","_npmVersion":"4.5.0","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"6a22100f585f72cd522e517c1854adad01aa0e33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.1.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.3.1.tgz_1493941298284_0.903600201010704"},"directories":{}},"10.3.2-candidate.0":{"name":"nyc","version":"10.3.2-candidate.0","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^7.1.0","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"e062a86eac91497381ba656f058849cc63540ab3","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.2-candidate.0","_shasum":"0c8524857cf6c5dd3205dfccca545a263b74eb97","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"0c8524857cf6c5dd3205dfccca545a263b74eb97","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.2-candidate.0.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/nyc-10.3.2-candidate.0.tgz_1493966152614_0.6935582228470594"},"directories":{}},"10.3.2":{"name":"nyc","version":"10.3.2","description":"the Istanbul command line interface","main":"index.js","scripts":{"bundle":"bundle-dependencies update","pretest":"standard","test":"npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report","clean":"rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js","build":"node ./build-tests","instrument":"node ./build-self-coverage.js","test-integration":"tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/nyc-bin.js","test-mocha":"node ./bin/nyc --no-clean --silent --temp-directory=./.self_coverage mocha ./test/nyc.js ./test/process-args.js","report":"node ./bin/nyc  --temp-directory ./.self_coverage/ -r text -r lcov report","release":"standard-version"},"bin":{"nyc":"./bin/nyc.js"},"files":["index.js","bin/*.js","lib/*.js","lib/commands/*.js","lib/instrumenters/*.js","!**/*covered.js"],"nyc":{"exclude":["node_modules","bin","coverage","test/fixtures/coverage.js","test/build/*","test/src/*","test/nyc.js","test/process-args.js","index.covered.js","test/fixtures/_generateCoverage.js"]},"standard":{"ignore":["**/fixtures/**","**/test/build/*"]},"keywords":["coverage","reporter","subprocess","testing"],"contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"author":{"name":"Ben Coe","email":"ben@npmjs.com"},"license":"ISC","dependencies":{"archy":"^1.0.0","arrify":"^1.0.1","caching-transform":"^1.0.0","convert-source-map":"^1.3.0","debug-log":"^1.0.1","default-require-extensions":"^1.0.0","find-cache-dir":"^0.1.1","find-up":"^1.1.2","foreground-child":"^1.5.3","glob":"^7.0.6","istanbul-lib-coverage":"^1.1.0","istanbul-lib-hook":"^1.0.6","istanbul-lib-instrument":"^1.7.1","istanbul-lib-report":"^1.1.0","istanbul-lib-source-maps":"^1.2.0","istanbul-reports":"^1.1.0","md5-hex":"^1.2.0","merge-source-map":"^1.0.2","micromatch":"^2.3.11","mkdirp":"^0.5.0","resolve-from":"^2.0.0","rimraf":"^2.5.4","signal-exit":"^3.0.1","spawn-wrap":"1.2.4","test-exclude":"^4.1.0","yargs":"^7.1.0","yargs-parser":"^5.0.0"},"devDependencies":{"any-path":"^1.3.0","bundle-dependencies":"^1.0.2","chai":"^3.0.0","coveralls":"^2.11.11","exists-sync":"0.0.4","forking-tap":"^0.1.1","is-windows":"^1.0.0","lodash":"^4.12.0","mocha":"^3.2.0","newline-regex":"^0.2.1","requirejs":"^2.3.0","sanitize-filename":"^1.5.3","sinon":"^2.1.0","source-map-support":"^0.4.6","split-lines":"^1.0.0","standard":"^9.0.2","standard-version":"^4.0.0","tap":"^10.0.0","which":"^1.2.11","zero-fill":"^2.2.3"},"repository":{"type":"git","url":"git+ssh://git@github.com/istanbuljs/nyc.git"},"greenkeeper":{"ignore":["find-up"]},"gitHead":"e062a86eac91497381ba656f058849cc63540ab3","bugs":{"url":"https://github.com/istanbuljs/nyc/issues"},"homepage":"https://github.com/istanbuljs/nyc#readme","bundleDependencies":["archy","arrify","caching-transform","convert-source-map","debug-log","default-require-extensions","find-cache-dir","find-up","foreground-child","glob","istanbul-lib-coverage","istanbul-lib-hook","istanbul-lib-instrument","istanbul-lib-report","istanbul-lib-source-maps","istanbul-reports","md5-hex","merge-source-map","micromatch","mkdirp","resolve-from","rimraf","signal-exit","spawn-wrap","test-exclude","yargs","yargs-parser"],"_id":"nyc@10.3.2","_shasum":"f27f4d91f2a9db36c24f574ff5c6efff0233de46","_from":".","_npmVersion":"4.5.0","_nodeVersion":"6.9.5","_npmUser":{"name":"bcoe","email":"ben@npmjs.com"},"dist":{"shasum":"f27f4d91f2a9db36c24f574ff5c6efff0233de46","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/nyc/-/nyc-10.3.2.tgz"},"maintainers":[{"name":"bcoe","email":"ben@npmjs.com"},{"name":"isaacs","email":"isaacs@npmjs.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/nyc-10.3.2.tgz_1494009321229_0.6029933881945908"},"directories":{}}},"name":"nyc","contributors":[{"name":"Isaac Schlueter"},{"name":"Mark Wubben"},{"name":"James Talmage"},{"name":"Krishnan Anantheswaran"}],"time":{"modified":"2017-05-05T19:02:48.554Z","created":"2015-05-09T04:34:33.490Z","1.0.1":"2015-05-09T04:34:33.490Z","1.1.0":"2015-05-10T01:33:41.673Z","1.1.1":"2015-05-10T01:38:59.010Z","1.1.2":"2015-05-11T06:55:30.744Z","1.1.3":"2015-05-11T18:31:55.865Z","1.1.4":"2015-05-11T18:35:26.170Z","1.1.5":"2015-05-11T18:38:24.402Z","1.1.6":"2015-05-11T18:59:48.196Z","1.1.7":"2015-05-11T19:02:59.931Z","1.1.8":"2015-05-11T22:12:37.264Z","1.1.9":"2015-05-11T22:26:16.419Z","1.2.0":"2015-05-13T20:22:47.994Z","1.3.0":"2015-05-15T15:57:11.118Z","1.4.0":"2015-05-16T09:12:25.360Z","1.4.1":"2015-05-16T19:24:15.792Z","2.0.0":"2015-05-16T21:41:25.109Z","2.0.1":"2015-05-18T01:46:27.953Z","2.0.2":"2015-05-18T01:47:09.048Z","2.0.3":"2015-05-18T01:52:24.351Z","2.0.4":"2015-05-19T04:58:58.360Z","2.0.5":"2015-05-20T05:44:24.088Z","2.0.6":"2015-05-23T06:52:56.844Z","2.1.0":"2015-05-23T20:58:19.526Z","2.1.1":"2015-05-25T02:54:15.386Z","2.1.2":"2015-05-25T06:03:25.777Z","2.1.3":"2015-05-25T06:32:13.653Z","2.1.4":"2015-05-25T08:29:17.136Z","2.2.0":"2015-05-25T21:08:48.934Z","2.2.1":"2015-05-26T04:41:53.986Z","2.3.0":"2015-06-04T06:43:34.655Z","2.4.0":"2015-06-24T15:59:45.477Z","3.0.0":"2015-06-28T19:52:27.204Z","3.0.1":"2015-07-25T20:54:48.197Z","3.1.0":"2015-08-02T19:07:10.391Z","3.2.0":"2015-09-09T05:39:41.603Z","3.2.1":"2015-09-12T03:09:46.530Z","3.2.2":"2015-09-12T05:08:36.090Z","4.0.0-alpha":"2015-11-26T21:38:44.784Z","4.0.0":"2015-11-29T18:29:04.316Z","4.0.1":"2015-11-30T01:24:15.151Z","5.0.0":"2015-12-10T07:08:40.943Z","5.0.1":"2015-12-14T17:15:13.043Z","5.1.0":"2015-12-28T05:16:08.310Z","5.1.1":"2015-12-30T22:59:58.058Z","5.2.0":"2016-01-03T01:33:31.536Z","5.3.0":"2016-01-05T22:29:47.065Z","5.4.0":"2016-01-21T06:22:00.844Z","5.5.0":"2016-01-24T21:10:32.822Z","5.6.0":"2016-02-04T07:57:00.663Z","6.0.0":"2016-02-20T20:38:45.447Z","6.1.0":"2016-03-13T00:20:53.558Z","6.1.1":"2016-03-14T01:05:49.574Z","6.2.0-alpha1":"2016-04-03T22:06:15.603Z","6.2.0":"2016-04-05T04:47:55.869Z","6.2.0-alpha":"2016-04-05T05:06:13.398Z","6.2.0-alpha3":"2016-04-05T05:12:48.158Z","6.2.1":"2016-04-05T05:22:59.998Z","6.3.0":"2016-04-08T23:41:14.290Z","6.4.0-next":"2016-04-11T00:42:02.186Z","6.4.0":"2016-04-11T02:44:07.406Z","6.4.1":"2016-04-27T18:59:03.835Z","6.4.2":"2016-05-02T04:14:34.318Z","6.4.3":"2016-05-06T04:55:37.749Z","6.4.3-bundle":"2016-05-06T06:03:41.485Z","6.4.4":"2016-05-07T17:27:32.559Z","6.5.0-candidate":"2016-06-10T03:45:15.307Z","6.5.0-candidate2":"2016-06-10T03:57:54.952Z","6.5.0":"2016-06-13T04:02:42.720Z","6.5.1":"2016-06-14T16:35:30.068Z","6.6.0":"2016-06-14T17:57:14.288Z","6.6.1":"2016-06-14T18:21:47.651Z","7.0.0-alpha.1":"2016-06-26T23:46:05.175Z","7.0.0-alpha.2":"2016-06-27T00:31:14.524Z","7.0.0-alpha.3":"2016-06-27T04:19:46.290Z","7.0.0-alpha.4":"2016-07-02T21:48:19.055Z","7.0.0-alpha.5":"2016-07-07T06:42:26.619Z","7.0.0":"2016-07-09T07:07:53.483Z","7.1.0-candidate":"2016-07-16T04:22:57.241Z","7.0.0-candidate2":"2016-07-16T06:10:55.522Z","7.1.0-candidate2":"2016-07-16T07:13:57.715Z","7.1.0-candidate3":"2016-07-24T18:29:43.634Z","7.1.0":"2016-07-25T15:50:30.565Z","8.0.0-candidate":"2016-08-12T06:10:48.849Z","8.0.0":"2016-08-13T21:36:24.729Z","8.1.0-candidate":"2016-08-14T08:10:16.344Z","8.1.0":"2016-08-14T08:19:50.791Z","8.2.0-candidate1":"2016-09-03T00:02:08.989Z","8.2.0-candidate2":"2016-09-13T23:27:53.570Z","8.3.0-candidate":"2016-09-15T17:00:15.206Z","8.3.0":"2016-09-15T17:22:29.364Z","8.3.1-candidate":"2016-10-06T04:48:16.836Z","8.3.1":"2016-10-07T19:05:55.447Z","8.3.2":"2016-10-19T23:48:57.788Z","8.4.0-candidate":"2016-10-30T01:18:14.185Z","8.4.0":"2016-11-02T17:12:35.977Z","9.0.0-candidate.1":"2016-11-13T02:12:18.248Z","9.0.1-candidate.1":"2016-11-14T23:53:45.563Z","9.0.1":"2016-11-15T00:12:55.058Z","10.0.0-candidate.1":"2016-11-22T08:00:58.465Z","10.0.0-candidate.2":"2016-11-22T08:09:13.213Z","10.0.0":"2016-11-22T16:57:16.850Z","10.0.1-candidate.0":"2016-12-27T07:20:48.870Z","10.0.2-candidate.0":"2017-01-02T21:53:45.201Z","10.1.0-candidate.0":"2017-01-17T05:18:24.659Z","10.1.0":"2017-01-18T01:55:50.364Z","10.1.1-candidate.0":"2017-01-18T05:13:06.188Z","10.1.2-candidate.0":"2017-01-18T05:35:56.980Z","10.1.2":"2017-01-18T05:39:11.835Z","10.2.0-candidate.0":"2017-03-14T05:45:13.798Z","10.2.0-candidate.1":"2017-03-27T06:45:21.599Z","10.2.0":"2017-03-28T05:05:13.751Z","10.2.1":"2017-04-19T07:51:26.500Z","10.2.2":"2017-04-19T08:13:21.705Z","10.2.2-candidate.2":"2017-04-19T18:38:52.459Z","10.2.2-candidate.3":"2017-04-19T18:44:44.363Z","10.2.2-candidate.4":"2017-04-19T19:03:10.792Z","10.3.0-candidate.0":"2017-04-20T07:36:57.879Z","10.3.0-candidate.1":"2017-04-29T06:37:51.284Z","10.3.0":"2017-04-29T07:04:05.226Z","11.0.0-candidate.0":"2017-05-01T01:22:24.641Z","10.3.1":"2017-05-04T23:41:38.626Z","10.3.2-candidate.0":"2017-05-05T06:35:52.944Z","10.3.2":"2017-05-05T18:35:25.045Z"},"readmeFilename":"README.md","homepage":"https://github.com/istanbuljs/nyc#readme"}