{"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"dist-tags":{"latest":"3.0.3","next":"3.0.1"},"author":{"name":"Matt Lewis"},"description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","readme":"# karma-coverage-istanbul-reporter\n\n[![Sponsorship](https://img.shields.io/badge/funding-github-%23EA4AAA)](https://github.com/users/mattlewis92/sponsorship)\n[![Build Status](https://travis-ci.org/mattlewis92/karma-coverage-istanbul-reporter.svg?branch=master)](https://travis-ci.org/mattlewis92/karma-coverage-istanbul-reporter)\n[![codecov](https://codecov.io/gh/mattlewis92/karma-coverage-istanbul-reporter/branch/master/graph/badge.svg)](https://codecov.io/gh/mattlewis92/karma-coverage-istanbul-reporter)\n[![npm version](https://badge.fury.io/js/karma-coverage-istanbul-reporter.svg)](http://badge.fury.io/js/karma-coverage-istanbul-reporter)\n[![npm](https://img.shields.io/npm/dm/karma-coverage-istanbul-reporter.svg)](http://badge.fury.io/js/karma-coverage-istanbul-reporter)\n[![Twitter Follow](https://img.shields.io/twitter/follow/mattlewis92_.svg)](https://twitter.com/mattlewis92_)\n\n> A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.\n\n## About\n\nThis is a reporter only and does not perform the actual instrumentation of your code. Babel users should use the [istanbul babel plugin](https://github.com/istanbuljs/babel-plugin-istanbul) to instrument your code and webpack + typescript users should use the [coverage-istanbul-loader](https://github.com/JS-DevTools/coverage-istanbul-loader) and then use this karma reporter to do the actual reporting. See the [test config](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/blob/master/test/karma.conf.js) for an e2e example of how to combine them.\n\n## Installation\n\n```bash\nnpm install karma-coverage-istanbul-reporter --save-dev\n```\n\n## Configuration\n\n```js\n// karma.conf.js\nconst path = require('path');\n\nmodule.exports = function(config) {\n  config.set({\n    // ... rest of karma config\n\n    // anything named karma-* is normally auto included so you probably dont need this\n    plugins: ['karma-coverage-istanbul-reporter'],\n\n    reporters: ['coverage-istanbul'],\n\n    coverageIstanbulReporter: {\n      // reports can be any that are listed here: https://github.com/istanbuljs/istanbuljs/tree/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib\n      reports: ['html', 'lcovonly', 'text-summary'],\n\n      // base output directory. If you include %browser% in the path it will be replaced with the karma browser name\n      dir: path.join(__dirname, 'coverage'),\n\n      // Combines coverage information from multiple browsers into one report rather than outputting a report\n      // for each browser.\n      combineBrowserReports: true,\n\n      // if using webpack and pre-loaders, work around webpack breaking the source path\n      fixWebpackSourcePaths: true,\n\n      // Omit files with no statements, no functions and no branches covered from the report\n      skipFilesWithNoCoverage: true,\n\n      // Most reporters accept additional config options. You can pass these through the `report-config` option\n      'report-config': {\n        // all options available at: https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/html/index.js#L257-L261\n        html: {\n          // outputs the report in ./coverage/html\n          subdir: 'html'\n        }\n      },\n\n      // enforce percentage thresholds\n      // anything under these percentages will cause karma to fail with an exit code of 1 if not running in watch mode\n      thresholds: {\n        emitWarning: false, // set to `true` to not fail the test command when thresholds are not met\n        // thresholds for all files\n        global: {\n          statements: 100,\n          lines: 100,\n          branches: 100,\n          functions: 100\n        },\n        // thresholds per file\n        each: {\n          statements: 100,\n          lines: 100,\n          branches: 100,\n          functions: 100,\n          overrides: {\n            'baz/component/**/*.js': {\n              statements: 98\n            }\n          }\n        }\n      },\n\n      verbose: true // output config used by istanbul for debugging\n    }\n  });\n};\n```\n\n### List of reporters and options\n\n- [clover](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/clover/index.js#L14-L15)\n- [cobertura](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/cobertura/index.js#L16-L17)\n- [html-spa](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/html-spa/index.js#L47-L61)\n- [html](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/html/index.js#L257-L261)\n- [json-summary](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/json-summary/index.js#L12)\n- [json](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/json/index.js#L12)\n- [lcov](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/lcov/index.js#L13)\n- [lcovonly](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/lcovonly/index.js#L11-L12)\n- none\n- [teamcity](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/teamcity/index.js#L13-L14)\n- [text-lcov](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/text-lcov/index.js#L11)\n- [text-summary](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/text-summary/index.js#L13)\n- [text](https://github.com/istanbuljs/istanbuljs/blob/73c25ce79f91010d1ff073aa6ff3fd01114f90db/packages/istanbul-reports/lib/text/index.js#L231-L237)\n\n## Credits\n\n- [Original karma-coverage source](https://github.com/karma-runner/karma-coverage/blob/master/lib/reporter.js)\n- [Example of using the new reporter API](https://github.com/facebook/jest/blob/master/scripts/mapCoverage.js)\n- [Karma remap istanbul](https://github.com/marcules/karma-remap-istanbul)\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"users":{"rochejul":true,"lomocc":true},"bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"license":"MIT","versions":{"0.1.0":{"name":"karma-coverage-istanbul-reporter","version":"0.1.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^1.2.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","ts-loader":"^2.0.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"8fa05a198aa62af5385054f307061e35c3cdf0d3","_id":"karma-coverage-istanbul-reporter@0.1.0","_shasum":"63283949b64dcec2f89a9c6d99374a4847afa2b9","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"63283949b64dcec2f89a9c6d99374a4847afa2b9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.1.0.tgz","integrity":"sha512-vhBbvka6oiWKPFDubhaiF5b5USflQ/B4zPcASBqAKy/fVxxNifVcSvak7SL8YFBJ3u2cToXm4tK1EHEX8eHpxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxcmj1H8NiqCEl392SeQQfrscHbSL0LX00+EgGiPXBigIhAMRFdXXmU6NQnhL1ZfwcFyWKFLZWMXhOqPq6N2gdZZIf"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.1.0.tgz_1485366098500_0.46552428719587624"},"directories":{}},"0.2.0":{"name":"karma-coverage-istanbul-reporter","version":"0.2.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^1.2.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"6200735f9becaa5a26e48dfefd66d6c34f7b3be2","_id":"karma-coverage-istanbul-reporter@0.2.0","_shasum":"5766263338adeb0026f7e4ac7a89a5f056c5642c","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"5766263338adeb0026f7e4ac7a89a5f056c5642c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.2.0.tgz","integrity":"sha512-6LBgKS3/sqcRWoKGWvEhDIRpNMx+X2yY38uDQlqGo1cI7RyJOMJS2h7tP2oFKgPLjDJc/Aj8oaBLG0/0Zkakag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC5MtG0Dv+I3bD0j0BE2RdkfQA/mXZGddGEo3H5FJSBcAiAGT88xu6ZOGRwcYgJ4rLR2pibrVnfTm/49IpvyPN+EYg=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.2.0.tgz_1485368714588_0.05769583932124078"},"directories":{}},"0.2.1":{"name":"karma-coverage-istanbul-reporter","version":"0.2.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"885a85276f4f1779ef096cc2f9b8fc02f8d9021a","_id":"karma-coverage-istanbul-reporter@0.2.1","_shasum":"b204b2b58fba4bf85db6ee001e60351450e80ee6","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"b204b2b58fba4bf85db6ee001e60351450e80ee6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.2.1.tgz","integrity":"sha512-JtgYSEhU/P70VWBgt1Ry0Z3DVK6+Mggh1m5F3EQz4vyv5ViyjTIh4qSNud3ZORz0mMh41rRdR9Za24f1s2fFNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnWoS75iW1OgrzH9IW7vRdA706XSTvVYI+EcgVelqLQAIhAMdDMJ72qNOI5aYa10dypyoceV9k6SugnX+r1HBrj1x6"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.2.1.tgz_1487180130419_0.2811974426731467"},"directories":{}},"0.2.2":{"name":"karma-coverage-istanbul-reporter","version":"0.2.2","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src/reporter.js"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"0cd536f0b123301c960830ba0d0c06587052e4c6","_id":"karma-coverage-istanbul-reporter@0.2.2","_shasum":"d17bb802db4287d3b6a8ef4f10d79c318536e0c4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"d17bb802db4287d3b6a8ef4f10d79c318536e0c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.2.2.tgz","integrity":"sha512-GzCHkul400RssYV5jim29Qlo5IUByuXTQaCl7UG3ldTycDtHnrms5IddTNi7o4QkT4hLo3C/HFkUmq9epxy+hQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEzESvzT3ZUj04oHPhTkOGfBqehpc51E91vgsmJpIIwUAiAoQZPel2fL714Js0hgJy+RFMu6UPXZ8ezioI7AF7i1RQ=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.2.2.tgz_1487180927162_0.6226487210951746"},"directories":{}},"0.2.3":{"name":"karma-coverage-istanbul-reporter","version":"0.2.3","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src/reporter.js"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"e192c4f3dc87964b6ac7b6ab000c4443d69cb6d2","_id":"karma-coverage-istanbul-reporter@0.2.3","_shasum":"11f1be9cfa93755a77bac39ab16e315a7100b5c5","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"11f1be9cfa93755a77bac39ab16e315a7100b5c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.2.3.tgz","integrity":"sha512-i3Erg9KiQNrH3CYwodDHV17MM1KcK/bIVGBqUdzWvdK2R5fxgP4HDvSHH9V89wnPs+3WrKxd9eHxRfHXNen8Fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgRCQDA1PNyiSFm7iF7kGNJfdQjjRL7+h56J+3LswJZgIhAMPuShA/P2CBLfsZ5eu9xUCVwI9V28djPKmLvi1wZ6O6"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.2.3.tgz_1487326465518_0.4723230744712055"},"directories":{}},"0.3.0":{"name":"karma-coverage-istanbul-reporter","version":"0.3.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src/reporter.js"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.17.1"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"2703cdb56f4d60aa44ab356930c351ec77b864cf","_id":"karma-coverage-istanbul-reporter@0.3.0","_shasum":"035b736612425106caab4c4c403db7fc034b2ffc","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"035b736612425106caab4c4c403db7fc034b2ffc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.3.0.tgz","integrity":"sha512-pw/zgsn65Pz3W5d6fWXkiGeWhn+PuI6wG/CfpLCRW3APkgHx+S1SW+LnDzKlvx1ynJFEKyk5DhxTb1YdYNkyEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEEJBIB4o1B5Ae3fqs1bvDT+V/DXx/YlMhfQy98GC6mlAiAA1J1vTUMfDL1zb0CPGBW0tauj9aolLFRsbbK5uScj0Q=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.3.0.tgz_1488713814321_0.7354603747371584"},"directories":{}},"0.3.1":{"name":"karma-coverage-istanbul-reporter","version":"0.3.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.18.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"dd9bb59542c6fc546288da5805e46fb1e0faf15f","_id":"karma-coverage-istanbul-reporter@0.3.1","_shasum":"ea90c452ec1c514d688a2def1be844487b2689a7","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"ea90c452ec1c514d688a2def1be844487b2689a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-0.3.1.tgz","integrity":"sha512-5JlUN3KnTmObQeYnFRc7XLRoYBHqVAMMjsrmxsVwrMOG31+9nIOYMqvdWS/hjNeg4GwXkGxgUnsHRuRtEXWC2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCcbgqlD4jQ2YnlCwX1oYqBf8mG8Lsrn0h9yjzsfTgYdAIhAIDBPXfPPCKxPJBZ3FVxdH2kQAi3M+ZAfhPRK8PycRMq"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-0.3.1.tgz_1490018630808_0.550979501567781"},"directories":{}},"1.0.0":{"name":"karma-coverage-istanbul-reporter","version":"1.0.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.1"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","ts-loader":"^2.0.0","tslint":"^4.3.1","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.18.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"745b3e837549664b1668e5fe4f9d3dfd76af4837","_id":"karma-coverage-istanbul-reporter@1.0.0","_shasum":"8b216b9148a37dcbfad549cf2b825e594de47e98","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"8b216b9148a37dcbfad549cf2b825e594de47e98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.0.0.tgz","integrity":"sha512-dSqU3N2ItV5LT2FpYQ43R9xnaPF/CQnsuIOaQ5FGjfmA64dODd/4kQpew/+8pJu2iJHRqI0j1gHvzLVk3kvn/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuSVcZp8RhyPRLDF6YrgZXRtpHsz8B+aaW8zMJuSVFxwIgIy1LuCf1Fs3t3I0x9XV4Xgeav449Tyf+wOE8nqsj5Tc="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-1.0.0.tgz_1490020618116_0.1758832628838718"},"directories":{}},"1.1.0":{"name":"karma-coverage-istanbul-reporter","version":"1.1.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","preversion":"npm test","postversion":"npm publish","codecov":"cat coverage/lcov.info | codecov"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.7"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","ts-loader":"^2.0.0","tslint":"^5.1.0","tslint-loader":"^3.3.0","typescript":"^2.1.0","webpack":"^2.2.0","xo":"^0.18.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"gitHead":"ddc17775f668e8a94dd6eff96f95fb5a6947ca11","_id":"karma-coverage-istanbul-reporter@1.1.0","_shasum":"1357a534a77fe60befcfd83598383ced26c8f1b8","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.8.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"1357a534a77fe60befcfd83598383ced26c8f1b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.1.0.tgz","integrity":"sha512-5zoXup1vhUIodTnELEA2moqJ2d+5syL5RdRP3B4epVV5JBwm15K8do0TeOipwGRvFUaSBMCqwu2OHPIOXkxrSw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICOOXZB6RpHqxU8COpvxoB5mVu9Ie6tT89ZEKlbdcQe6AiA7QolJYmwx3YSjM4W/xJkFv6lZO8ZAsbKmB1QcJTwl8g=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-1.1.0.tgz_1491941025856_0.45728557324036956"},"directories":{}},"1.2.0":{"name":"karma-coverage-istanbul-reporter","version":"1.2.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"validate-commit-msg","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.7"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","husky":"^0.13.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^2.0.0","tslint":"^5.1.0","tslint-loader":"^3.3.0","typescript":"^2.1.0","validate-commit-msg":"^2.12.1","webpack":"^2.2.0","xo":"^0.18.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"gitHead":"1f591233a3dfd4527cae98a590f67f4d1fb4e622","_id":"karma-coverage-istanbul-reporter@1.2.0","_shasum":"f5ba3c5613c1b78721dff61a7765f5709e0e33cd","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.8.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"f5ba3c5613c1b78721dff61a7765f5709e0e33cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.2.0.tgz","integrity":"sha512-i7ytg9MdwGi32yB/01jkttIoSsV+LCU9uBqRWBs9KDyrtcNlYCbk/ZsUVLBqaKee1tBWyiahpWMvj/Bkr9YxkA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVYBnOwk3A2NF8d4fUy451TIbdundtCWvFV2el7R9UWQIgbJTlAlj/vIn0DQ2/FySu/x22MC2CEFDDUwhzpx2yjkU="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-1.2.0.tgz_1492263247579_0.6835445577744395"},"directories":{}},"1.2.1":{"name":"karma-coverage-istanbul-reporter","version":"1.2.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"validate-commit-msg","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.8"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^3.5.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","husky":"^0.13.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.3.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.2.0","nyc":"^10.0.0","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^2.0.0","tslint":"^5.1.0","tslint-loader":"^3.3.0","typescript":"^2.1.0","validate-commit-msg":"^2.12.1","webpack":"^2.2.0","xo":"^0.18.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"gitHead":"ea377759cc734a2dbc0573e660031d7573cd4e45","_id":"karma-coverage-istanbul-reporter@1.2.1","_shasum":"5e3ca7b9a153db1cbadffef4c46d978d38a53154","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"5e3ca7b9a153db1cbadffef4c46d978d38a53154","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.2.1.tgz","integrity":"sha512-Ou5X1DrDlYcBp3igh4m697sJw6kUAhlVp3WAjLTMxmQkDW9bd1ryxfIZpo33IRhmxWW8Wjk7BG1ocQA5T7Dx1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICi5cO5FfLwgjeXNj9ChLYxwDVdadCAq31KcBEWkHtjIAiA/Y2LAJVUpA2ULNu8OTxTlYEbXqppOHwIpBRroG/JsoQ=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/karma-coverage-istanbul-reporter-1.2.1.tgz_1493575150974_0.4281026611570269"},"directories":{}},"1.3.0":{"name":"karma-coverage-istanbul-reporter","version":"1.3.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"validate-commit-msg","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.8","minimatch":"^3.0.4"},"devDependencies":{"@types/chai":"^3.4.34","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","husky":"^0.13.3","istanbul-instrumenter-loader":"^2.0.0","karma":"^1.7.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.4.2","nyc":"^10.3.2","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^2.1.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","validate-commit-msg":"^2.12.1","webpack":"^2.6.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"gitHead":"e419a634d2f954566cfb1c444f4933947343ca17","_id":"karma-coverage-istanbul-reporter@1.3.0","_shasum":"d142cd9c55731c9e363ef7374e8ef1a31bebfadb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"shasum":"d142cd9c55731c9e363ef7374e8ef1a31bebfadb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.3.0.tgz","integrity":"sha512-1IqN1t9QOeh6T4KLvYO43kuT01nbE5SP63Bt271jvwf30Bh4Ak1Dz0Qi+dX4ZyX8L53RQ11H4ZyGYJAdoPADBQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4eKsBnrw1awDnA95napBuIKPYxCiufxAIzGPCQSoVcwIgAjc3shXagX3xWTvSNfaVvJq9DYda14WDfNUspyIRrU4="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter-1.3.0.tgz_1495806245133_0.8246404281817377"},"directories":{}},"1.3.1":{"name":"karma-coverage-istanbul-reporter","version":"1.3.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.14","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^5.2.6","@commitlint/config-conventional":"^5.2.3","@commitlint/prompt":"^5.2.6","@types/chai":"^4.0.4","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^4.0.1","nyc":"^11.2.1","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^3.2.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","webpack":"^3.7.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"facac56500450dd57db1044f7649a22b488ed320","_id":"karma-coverage-istanbul-reporter@1.3.1","_npmVersion":"5.6.0","_nodeVersion":"9.2.1","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"integrity":"sha512-Kk9uWpm7N+gJJEeP+g/oKoKc8bWrp/lvQ9eB7XyXAWp42V1kbXQOwGxhMOAOoQukjacB29U0Q4nHsYOImuP24Q==","shasum":"1baabd5afd038d107a14ac2ce11ee27f3dc67384","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.3.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdjXnqqXtDZw0gLzciVdLq5/KIPCtrv+0ZYiXtPYzTXAIhAK9/MxBrjyEueRypYGcU/UCGhm8l6UFBIdLqtDMrNHwd"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter-1.3.1.tgz_1514053572785_0.7185294777154922"},"directories":{}},"1.3.3":{"name":"karma-coverage-istanbul-reporter","version":"1.3.3","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.14","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^5.2.6","@commitlint/config-conventional":"^5.2.3","@commitlint/prompt":"^5.2.6","@types/chai":"^4.0.4","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^4.0.1","nyc":"^11.2.1","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^3.2.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","webpack":"^3.7.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"6a98e7eae446309128f1305e5f3b848713941e3a","_id":"karma-coverage-istanbul-reporter@1.3.3","_npmVersion":"5.6.0","_nodeVersion":"9.2.1","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"integrity":"sha512-MFkB6bh11J8nKygUdqyHb9sMz17XoBRYR4tiNxnSpi/UtDk0wk8eRGa0jRSJaILgCl4xyq1TL6Jidww1OWly/Q==","shasum":"daf26051d5a0daa5838a4ce81aa4a41724bdf36b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.3.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHewsxhnqrLcK2dwPoFE8aDc+//LGiRDlUiqflAacDXsAiEA0I6o8+KKWCoz+GxRQ/pX0nZtfFDcDXbEsrQBYVsol7I="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter-1.3.3.tgz_1514308980779_0.263690322637558"},"directories":{}},"1.4.0":{"name":"karma-coverage-istanbul-reporter","version":"1.4.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.14","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^5.2.6","@commitlint/config-conventional":"^5.2.3","@commitlint/prompt":"^5.2.6","@types/chai":"^4.0.4","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^4.0.1","nyc":"^11.2.1","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^3.2.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","webpack":"^3.7.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"9ab7560a97e7fc0bf16d0f5d552b7030b0aa29f0","_id":"karma-coverage-istanbul-reporter@1.4.0","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"integrity":"sha512-A+ssrpqSLICkT5M9TqLjLiZ+erIuEMjUCMccF7/qpDYS+fG0+S7F5+LREJDCsvKavNX2Mb/SAD8kbWJZf/OW3Q==","shasum":"705145594c613e471b09dee3856d0304cc78ae4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB4dmj3Mjpw2UThKumFMZvZtbEn/h1WNzB+JNDb8+0YPAiAUez2tDVweW8jvM2Pu9x6WGER9dXdpg9OOHPdFyRXf7Q=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter-1.4.0.tgz_1516725339428_0.0514780490193516"},"directories":{}},"1.4.1":{"name":"karma-coverage-istanbul-reporter","version":"1.4.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.14","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.0.2","@commitlint/config-conventional":"^6.0.2","@commitlint/prompt":"^6.0.2","@types/chai":"^4.0.4","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^5.0.0","nyc":"^11.2.1","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^3.2.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","webpack":"^3.7.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"fccc4721c48c19314686766caf07544a4ddf617a","_id":"karma-coverage-istanbul-reporter@1.4.1","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"integrity":"sha512-5og0toMjgLvsL9+TzGH4Rk1D0nr7pMIRJBg29xP4mHMKy/1KUJ12UzoqI6mBNCRFa4nDvZS2MRrN7p+RkZNWxQ==","shasum":"2b42d145ddbb4868d85d52888c495a21c61d873c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwsOmWQDpzMUyBwjTt7awS3CSrWpJqQdM3Yp3OEBfeXAIhALa8qYGbAezjLr6O1k3gSXLwvCOfr56aMW0e8PiPhnUM"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter-1.4.1.tgz_1516785183359_0.5403881785459816"},"directories":{}},"1.4.2":{"name":"karma-coverage-istanbul-reporter","version":"1.4.2","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.1.14","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.0.2","@commitlint/config-conventional":"^6.0.2","@commitlint/prompt":"^6.0.2","@types/chai":"^4.0.4","@types/mocha":"^2.2.33","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^5.0.0","nyc":"^11.2.1","rimraf":"^2.5.4","standard-version":"^4.0.0","ts-loader":"^3.2.0","tslint":"^5.3.2","tslint-loader":"^3.3.0","typescript":"^2.3.3","webpack":"^3.7.1","xo":"^0.18.2"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"b2f815b4b66e9e6341bad4a9bc19b3dc8c2f31d5","_id":"karma-coverage-istanbul-reporter@1.4.2","_npmVersion":"5.7.1","_nodeVersion":"9.4.0","_npmUser":{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"},"dist":{"integrity":"sha512-sQHexslLF+QHzaKfK8+onTYMyvSwv+p5cDayVxhpEELGa3z0QuB+l0IMsicIkkBNMOJKQaqueiRoW7iuo7lsog==","shasum":"a8d0c8815c7d6f6cea15a394a7c4b39ef151a939","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.2.tgz","fileCount":6,"unpackedSize":21797,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeYkm8+w6S8o60il0B+EtVT4ppU3ZZ2fmgn06IKjWL1AIgRoknvwzGGrcFdjBOuxb4mmiYZ2XaBupSw/O39JhG5nc="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_1.4.2_1520338802963_0.6865939552511322"},"_hasShrinkwrap":false},"1.4.3":{"name":"karma-coverage-istanbul-reporter","version":"1.4.3","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.3.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@commitlint/prompt":"^6.1.3","@types/chai":"^4.1.3","@types/mocha":"^5.2.0","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^2.0.2","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.1.1","nyc":"^11.8.0","prettier":"^1.12.1","pretty-quick":"^1.4.1","rimraf":"^2.5.4","standard-version":"^4.3.0","ts-loader":"^4.3.0","tslint":"^5.10.0","tslint-loader":"^3.6.0","typescript":"^2.8.3","webpack":"^4.8.3","xo":"^0.21.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"prefer-destructuring":0,"prefer-rest-params":0},"prettier":true},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"2ee4810cd7534547b8abe12a5dee57b8a2f4a1d3","_id":"karma-coverage-istanbul-reporter@1.4.3","_shasum":"3b5dff4664fa5b8d5196b9889e3f61c1fa2b80d9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"shasum":"3b5dff4664fa5b8d5196b9889e3f61c1fa2b80d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.3.tgz","fileCount":6,"unpackedSize":22863,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/VKgCRA9TVsSAnZWagAAdLgP/3sGkObkzvyHRXEObDdc\nCXCKR0OkyP4zrovpNPxWs7/BjMAeTGDdADfbbhQ9spJeA6rPGV90fuyhIPMq\nyE8/rYMrh+cxZHgCh/x9blBJgJ/t/DaqJAYQprYdA3kHhjt/InS5/2+pu4Wh\neT3NJ8yHCoiZVIsEEpuOKmUMbGxpeHjHNK55oP5kLiQsNB9cY7fUYkYaR/bK\nrmx64Qz+YDWyu+fS7TmdcbQnEgpyvb1HD5PHgf/AIwz1ovO5JS9EhA08p0Ul\nm3+DjR+3Ht3VQRsNmYTMuxPAIQgOlhRthyLymHP0Xochj+y6+FnqcOzvDZWl\n33lK17A5q5j9YBzvoexBOt8tb9rd7VNv4aVL5IMJDsyljsWghJMgg5gNMqXS\n1jsrOgs0iYHcpfPqGkuE4I8IqLByucjHo5E5pyFY8jSCYKAO5Lr4gKZ/hewx\n/VNOm2+yM3XKAvZlSRiD10f+glFpZp+crLeywSXh7B3zROcOM0I1K99blhR3\nvM+pOdGnovGZXJLm7icg4MuknvC5h/J5ChW5gMDxwLFYK72XInFUmSu8GAyM\nuBfnLpT43T8Pgf5zQjkofI0W5iijZlt6Oeu2neE7aj+Hs3lshy+pCJwyP7HP\nFUTgicd2Dvpz1nU1VqJ49BvYDfDIhZtxm9iocX84VRvwsTYhTfhG5D24eCBP\nyKk8\r\n=Y7X1\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-7/NxrKe7TuoHhscjFYguqR3u9d6rwhjrjmFxXa/Lqak27mCgVjHiUw0o9Y+8ecf7oFfz86C0b/ySFlx9Bf/soQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZJpQ6a+3TBJBYbQcnD3iFwYTUdZNxWQfRAixO26iI0wIgEoiftmS9Xn7T5wNyOur/BMpNoTitC9xhzcELdwvguAE="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_1.4.3_1526551199492_0.14745694915027574"},"_hasShrinkwrap":false},"2.0.0":{"name":"karma-coverage-istanbul-reporter","version":"2.0.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.3.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@commitlint/prompt":"^6.1.3","@types/chai":"^4.1.3","@types/mocha":"^5.2.0","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^2.0.2","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.1.1","nyc":"^11.8.0","prettier":"^1.12.1","pretty-quick":"^1.4.1","rimraf":"^2.5.4","standard-version":"^4.3.0","ts-loader":"^4.3.0","tslint":"^5.10.0","tslint-loader":"^3.6.0","typescript":"^2.8.3","webpack":"^4.8.3","xo":"^0.21.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0}},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"18f2c67fec85fb880066572005118c94ab092e90","_id":"karma-coverage-istanbul-reporter@2.0.0","_npmVersion":"6.0.1","_nodeVersion":"10.1.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-f9I5fro1Z3efBK1fhEmhb8xTQKiM5tlBSWTjJmdxR8ULy+oeI7fRpczCEaiWzHya0Zfz1/oBTrswEoZsEYXI6g==","shasum":"28ceeda1754ced5a9cb0aa8fef29118e73f4a7d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.0.tgz","fileCount":6,"unpackedSize":23190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/VmpCRA9TVsSAnZWagAA7jIQAJzGrf3ngHP9X/aGk4H7\n+OdiS1OtjJycaNNIhnUbXd6Webi13iAK8xDHPeKnhX+BihIcvzACuNXIkoGf\n3hU2wNB06Heb28HPFbssn323MPtdurei9G9Y9jhbvVLlv19gwLL+IPl1Ppl3\nMJCtWCCQ2zT1P2wV/I/5jOjT19XnucUt5AxDJBxE4/CbX3WMVN555OA5Roa4\nxznh0NujcEPaMHO0RaoLWAQMOa/d2Pl0bkXy+ZLQv1PdrBArqddQq/EWQfHg\nDDHMDn3LXVXY3ZBGMuUfXfQK3DFkwm1/YkGeOi8yh1vq9cwMxrEj/0TbNOKv\nTG2Yid7TGhEkLxi5Ig1G/ezCBYZ0zOsi0CqOaNEu4I3z+YfiEYOs6RgbYPuI\nBKH3oBLY2W9wPwCH+ybLCZmhRx8DAup31pCBW9kYJJO57otxAQV2tLeZ8spV\njJBQARNCD4DJN7D/VWYmYMKoCyTz2+XF0vy2OYtHuWJZ8TrBk0SgsFyditkq\nA2YyLqM+mZJxPMT/bGcoLZD2D2mK+xhZxWhc9Kmn9tq3tdGo+jjRSoDoNt4u\nK/f8SbuBmyiqsk8b3RrJOjmPR/XhUFGsSyR6XZzv4CPPXA19OL8PvrlZ/JyP\ncSg+DjwRBun8B58iITtnTYSYxw402hCOVjTxieLH07ulqZwRPSz/wk+XT110\nOo3D\r\n=Xu3H\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDW4yiNYEUtGTc18IjuuswZ6r0Mtb9xOSsW5IvNrdOPvwIhAJ35yiEF17IJZ5J6vWUlf/nPdZS+JvJPqBeJ2jUShjQU"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.0_1526553000317_0.7769507931848831"},"_hasShrinkwrap":false},"2.0.1-alpha.0":{"name":"karma-coverage-istanbul-reporter","version":"2.0.1-alpha.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.3.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@commitlint/prompt":"^6.1.3","@types/chai":"^4.1.3","@types/mocha":"^5.2.0","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^2.0.2","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.1.1","nyc":"^11.8.0","prettier":"^1.12.1","pretty-quick":"^1.4.1","rimraf":"^2.5.4","standard-version":"^4.3.0","ts-loader":"^4.3.0","tslint":"^5.10.0","tslint-loader":"^3.6.0","typescript":"^2.8.3","webpack":"^4.8.3","xo":"^0.21.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0}},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"readme":"# karma-coverage-istanbul-reporter\n\n[![Build Status](https://travis-ci.org/mattlewis92/karma-coverage-istanbul-reporter.svg?branch=master)](https://travis-ci.org/mattlewis92/karma-coverage-istanbul-reporter)\n[![codecov](https://codecov.io/gh/mattlewis92/karma-coverage-istanbul-reporter/branch/master/graph/badge.svg)](https://codecov.io/gh/mattlewis92/karma-coverage-istanbul-reporter)\n[![npm version](https://badge.fury.io/js/karma-coverage-istanbul-reporter.svg)](http://badge.fury.io/js/karma-coverage-istanbul-reporter)\n[![npm](https://img.shields.io/npm/dm/karma-coverage-istanbul-reporter.svg)](http://badge.fury.io/js/karma-coverage-istanbul-reporter)\n[![GitHub issues](https://img.shields.io/github/issues/mattlewis92/karma-coverage-istanbul-reporter.svg)](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues)\n[![GitHub stars](https://img.shields.io/github/stars/mattlewis92/karma-coverage-istanbul-reporter.svg)](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/stargazers)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/mattlewis92/karma-coverage-istanbul-reporter/master/LICENSE)\n\n> A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.\n\n## About\n\nThis is a reporter only and does not perform the actual instrumentation of your code. Babel users should use the [istanbul babel plugin](https://github.com/istanbuljs/babel-plugin-istanbul) to instrument your code and webpack + typescript users should use the [istanbul-instrumenter-loader](https://github.com/deepsweet/istanbul-instrumenter-loader) and then use this karma reporter to do the actual reporting. See the [test config](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/blob/master/test/karma.conf.js) for an e2e example of how to combine them.\n\n## Installation\n\n```bash\nnpm install karma-coverage-istanbul-reporter --save-dev\n```\n\n## Configuration\n\n```js\n// karma.conf.js\nconst path = require('path');\n\nmodule.exports = function(config) {\n  config.set({\n    // ... rest of karma config\n\n    // anything named karma-* is normally auto included so you probably dont need this\n    plugins: ['karma-coverage-istanbul-reporter'],\n\n    reporters: ['coverage-istanbul'],\n\n    // any of these options are valid: https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-api/lib/config.js#L33-L39\n    coverageIstanbulReporter: {\n      // reports can be any that are listed here: https://github.com/istanbuljs/istanbuljs/tree/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib\n      reports: ['html', 'lcovonly', 'text-summary'],\n\n      // base output directory. If you include %browser% in the path it will be replaced with the karma browser name\n      dir: path.join(__dirname, 'coverage'),\n\n      // Combines coverage information from multiple browsers into one report rather than outputting a report\n      // for each browser.\n      combineBrowserReports: true,\n\n      // if using webpack and pre-loaders, work around webpack breaking the source path\n      fixWebpackSourcePaths: true,\n\n      // stop istanbul outputting messages like `File [${filename}] ignored, nothing could be mapped`\n      skipFilesWithNoCoverage: true,\n\n      // Most reporters accept additional config options. You can pass these through the `report-config` option\n      'report-config': {\n        // all options available at: https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/html/index.js#L135-L137\n        html: {\n          // outputs the report in ./coverage/html\n          subdir: 'html'\n        }\n      },\n\n      // enforce percentage thresholds\n      // anything under these percentages will cause karma to fail with an exit code of 1 if not running in watch mode\n      thresholds: {\n        emitWarning: false, // set to `true` to not fail the test command when thresholds are not met\n        // thresholds for all files\n        global: {\n          statements: 100,\n          lines: 100,\n          branches: 100,\n          functions: 100\n        },\n        // thresholds per file\n        each: {\n          statements: 100,\n          lines: 100,\n          branches: 100,\n          functions: 100,\n          overrides: {\n            'baz/component/**/*.js': {\n              statements: 98\n            }\n          }\n        }\n      },\n\n      verbose: true // output config used by istanbul for debugging\n    }\n  });\n};\n```\n\n### List of reporters and options\n\n* [clover](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/clover/index.js#L8-L9)\n* [cobertura](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/cobertura/index.js#L9-L10)\n* [html](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/html/index.js#L135-L137)\n* [json-summary](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/json-summary/index.js#L8)\n* [json](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/json/index.js#L8)\n* lcov\n* [lcovonly](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/lcovonly/index.js#L8)\n* none\n* [teamcity](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/teamcity/index.js#L9-L10)\n* [text-lcov](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/text-lcov/index.js#L9)\n* [text-summary](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/text-summary/index.js#L9)\n* [text](https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/text/index.js#L159-L160)\n\n## Credits\n\n* [Original karma-coverage source](https://github.com/karma-runner/karma-coverage/blob/master/lib/reporter.js)\n* [Example of using the new reporter API](https://github.com/facebook/jest/blob/master/scripts/mapCoverage.js)\n* [Karma remap istanbul](https://github.com/marcules/karma-remap-istanbul)\n\n## License\n\nMIT\n","readmeFilename":"README.md","gitHead":"a17b6ca48053f2b5ff7659f1d5794317187b51d9","_id":"karma-coverage-istanbul-reporter@2.0.1-alpha.0","_npmVersion":"6.0.1","_nodeVersion":"10.1.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-kOTEPOevDMme13n1j6Sv0yzYNqMIp+FThQcf0u0mJtP5LDYpf73JQ6qJPHRCWy90EZOvXkdszbRA0Yu5VzERyg==","shasum":"3ea6b791fdd8820e4905a2920807d5e8ceca1105","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.1-alpha.0.tgz","fileCount":6,"unpackedSize":23556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBTA2CRA9TVsSAnZWagAA0SEP/3S2trY9xRpvrzEH+eDw\nxBGBZ26Kr3meS9DSxuPJdlsbpfEhLmptoCdTPb8ncZZrXyIro2PD3TzBMWPf\nxs6dirJkqI91xS1Qo1hk2tdULSrL+bD3NYRb5IhQMHLGq9x8ypyixval2Gcn\nn/ZnYGh2oC5+OhOpCj6UTfiwjrnqKhhtzLR2RSxh7O5vrvfckOJ8j14TaZv4\npVEJ7Ep3OjdFzrr+0Jm8NS6CK0Rr3+Ki1wDBNr37Tf0BYezygCizbPDSeJFe\nbLZC+cD47WzcDJPZxGn9u9lT661Zl9wCelC6ot0lU5RtPbKrlHZynGg9NDbK\nhVbX9btALftbPB70capXwusleerAK+6jrpmZW0om22AFK2/TdQOt3JJPNFzJ\nSBf7X8wQJNUNbPV9CZ+wpa1ueq2ufenU4xbXQtN/d8ow12p2ghlS8MA+qTno\nPAkv1VjLfbPb62/DcQiqjj3/SDIeeOEzSv7/mL7HZk8W89STYOHa9NPAeBiY\nKe8LD5bMQDFKLiZbhxVYWcW9pzmDYEsee6Sxj4tUFGsa+OjOv9doxIFqy7hX\nDS2YZP7ywg+QCQ9C1cIG2PNwpszQR77/Ab+/mmJFx8B7rwePWYhhxfH0BRwE\neGxLnbkOO/Rr+9xFL2BA+KJfqxBq69gtt/vQmGl/ZtT5bcS5l076eEgpst+W\n5rNx\r\n=LmLe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHWngz3E+LXfR/QMvu84ooLxo2HAjqQPYVEvYG5mWnwsAiEAnnpQJHnnUX/TFiBb8AQCVuX0HpKINfBFhDCSaLNPeq0="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.1-alpha.0_1527066678034_0.0798221083868722"},"_hasShrinkwrap":false},"2.0.1":{"name":"karma-coverage-istanbul-reporter","version":"2.0.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.3.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@commitlint/prompt":"^6.1.3","@types/chai":"^4.1.3","@types/mocha":"^5.2.0","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^2.0.2","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.1.1","nyc":"^11.8.0","prettier":"^1.12.1","pretty-quick":"^1.4.1","rimraf":"^2.5.4","standard-version":"^4.3.0","ts-loader":"^4.3.0","tslint":"^5.10.0","tslint-loader":"^3.6.0","typescript":"^2.8.3","webpack":"^4.8.3","xo":"^0.21.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0}},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"c484c1ae49ad1a4d0fc3b83314f8e4fbd781c822","_id":"karma-coverage-istanbul-reporter@2.0.1","_npmVersion":"6.0.1","_nodeVersion":"10.1.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-UcgrHkFehI5+ivMouD8NH/UOHiX4oCAtwaANylzPFdcAuD52fnCUuelacq2gh8tZ4ydhU3+xiXofSq7j5Ehygw==","shasum":"26b969317d191c6a897c783b4ffe7831cb92e684","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.1.tgz","fileCount":6,"unpackedSize":23938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBTMgCRA9TVsSAnZWagAAOMkP/10GtqVaS9GCD7R7pVwg\nzJAa5r8XZK8WU3GSIYLi5etnpgEUyzLXjsACNbCn5hrXDFRQMIGsS4maebVk\nqD/F6LNSMC/chR1wlybI3bJFV3JIYEP/Ipl854UsCQwDyrKE69Xlut9M0Usx\nDSR3vAEqy5wEvc2GC3d9fY7xAeUPklfeQTA7Pte3ZokVeItMjFhwbHj3ST9T\ncB7KLviGPC7qQYD6fzyxw5E5/deVlQD4e3Tq22XEcmR9f4bJyWRo+7pTlraJ\niTHpjAzQTO1tg+vdvefBqkS54m6AEaS0xAQ/imv60AEMFKzNkCXwosxXfu9u\nNEG51shO6K3882bckjeLp3lFoz1dL11CNo2DBQ5v3k+qfjwUSmVIWLbkWsH5\nuFDKHHrSvue6EF9Y2oG1aMYj1xkqnsNrkQ0xz5iSeG7S8te0Yii9dYWUktqi\nl5rCgwB5JacU3OKzDo2epA3ak32jZvD4V3pWxe/MBVmkJFFg3kgVNtVQ/o8n\nt2XQTbQGJ9/SDeerxQ5dGpEEq5gGnMFANh04emT6S5yyqnQo6EBnEZYJt3jt\nBMzmN7ATn6H0Oiia5WBZIHq5ZnS3fZZJuYcZ/1D8khzC4Wp+qRJKQ5yd3tv9\nix+SJ3brWUk7JH+L9NuthO8EMzb7SBYpvzqYtRtvU3e7GE9v5VWDrPEnRX2s\nZA2c\r\n=c45O\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtTV8ZEo5ZUyiQ32tnf3jecgliokcL8rmdr3itIAJHXgIhAKL+0k/iMmR+FT28EQXRtYBb73I7MdQh+yroLMVguGBY"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.1_1527067423425_0.9522262124056318"},"_hasShrinkwrap":false},"2.0.2":{"name":"karma-coverage-istanbul-reporter","version":"2.0.2","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","files":["src"],"scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^1.3.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@commitlint/prompt":"^6.1.3","@types/chai":"^4.1.3","@types/mocha":"^5.2.0","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.9.6","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^2.0.2","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.1.1","nyc":"^11.8.0","prettier":"^1.12.1","pretty-quick":"^1.4.1","rimraf":"^2.5.4","standard-version":"^4.3.0","ts-loader":"^4.3.0","tslint":"^5.10.0","tslint-loader":"^3.6.0","typescript":"^2.8.3","webpack":"^4.8.3","xo":"^0.21.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0}},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"6a166470a8d4fb6ad76c4cd82b7b6f04d3a29f88","_id":"karma-coverage-istanbul-reporter@2.0.2","_npmVersion":"6.4.0","_nodeVersion":"10.5.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-IIIrfsfYJKkAyyjRrBx8CZRl2UXi2OSrxKRAA95mkpOMF3Zw5FpjE+v79pWuwu1Keu0pdjcfElmmOuAEjFQshA==","shasum":"d56fc2a7a7f8c0d0607712aab541d9824f2b2d07","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.2.tgz","fileCount":6,"unpackedSize":24658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgIXwCRA9TVsSAnZWagAAopcP/jqaYTzvwp3+/XbI6PWX\nfeBJNDplC1w6LNnT81+DOVVyFa+5L0fy27Go9DuBmsaiBbGYL+BcMP9hOZ4q\ngjxo4EhG/G4ZEr7QT3sl5y1ENCLF9a6TfLU31pTTQ7HNzoTYLzfZMOZEoOCk\nx4JZ4aWkdMq9RnMtKgjMcKLxNMNkY5IDtdr9J4odRmYeme0q4bLeUfQ70wJk\nGPTxjKE9v7KsrtkdnaQeYG39WmB6TO+g793/h7iMBUGvRqQZfsZgA1iOcgV1\nY9ricn1G8+foWdG/NwBB4uBo2eRKH57xIl4Hr4xN0OGzDUZQA3ycb0cUGwuD\nzYwe2CG3dEmO9+kgB/ttqrqNwO3hBHnPw8jTCJcuhPHaO8Ec05zahB7Xubav\nJ9RT0JAoj5tHCKwmT75FYVQzSCjP0ZhNUGFK7GvfY6dKE4NgOKiBVnRBbBEh\nfZu1u08ZcgVq4EaUXCk8POHTV8v0e2pFqvEQLI+dzYHwCCT+97JiNWfzhYoL\nEYBM4WlmcoX/lD8wlSut7c31Hl1KDA1ziisi6L1Grz4jZutEkFYvH3gkHuJL\nfEXtEQf2RGjxVrCGJjTwCeBSwWUiZYkdIfJhuRWPzt2oqVpaSt9XUhjOsh7i\n9VQ/wpGOLpYU3OhM9jekTm6xdy2gTN38OaXtbMNMM6U7pScyiRnqt+YoX39G\nPIti\r\n=+ok/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBgf5hcn0ToM+FaG2nu9yaPEjlhMNuUmBEsZcN0/nb8LAiEAxsrjBNK0+iW1GVyZxO5cUj4v91cU/8tCzXYHxXjR+dE="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.2_1535149552003_0.9234242801583239"},"_hasShrinkwrap":false},"2.0.3":{"name":"karma-coverage-istanbul-reporter","version":"2.0.3","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.0.5","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^7.0.0","@commitlint/config-conventional":"^7.0.1","@commitlint/prompt":"^7.0.0","@types/chai":"^4.1.4","@types/mocha":"^5.2.5","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.10.1","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^3.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.2.0","nyc":"^13.0.1","prettier":"^1.14.2","pretty-quick":"^1.6.0","rimraf":"^2.5.4","standard-version":"^4.4.0","ts-loader":"^4.5.0","tslint":"^5.11.0","tslint-loader":"^3.6.0","typescript":"^3.0.1","webpack":"^4.17.1","xo":"^0.22.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"897653bbfab8441f64fd6a8b5b78ac8f5e75377c","_id":"karma-coverage-istanbul-reporter@2.0.3","_npmVersion":"6.4.1","_nodeVersion":"10.9.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-UVs9IDulfwkBxjEnUzfR/nIc3oBneOPuorpLVBvEMtz2hy0wnVLhCMxpkqAtuQWqvOZRQlGqs+dDtMUeRydTQA==","shasum":"ef08d1721ed108407a53f0d298acc6d2dc8a4008","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.3.tgz","fileCount":6,"unpackedSize":25396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbisQlCRA9TVsSAnZWagAARmkP/1pxuL1ES/yZMwIIhADl\nbQqs/uRKjopgZM7tzPt38zCCeGzsdHzmPJnL9PyegYCDChOa5+CrSCa50iXv\njFljI/R+SPQA4Gg95RWGKz0pIQy41zFuSJZMK0CnRMmB8WLEb5y1X9JMB6Vv\nUefaGB1/qjLrhWBJwISW6kJXODElwRjix2NsIhe/wWDQunDpx01Dk9GE3X0R\nut9V5cfrQ3PdTUya1IEnCorZN4G1GjZjq0HIrFHGZfUwgv57yrGUa2Dg3Vda\nn7kBDoABOnN7WvIYCBS0U9WuD4a941dMX/Oz96EB+lmIJU2rYEdc0F5zCDxw\nqLMdiJMIt5PbO5bWsd/2vXJ3HR9dfX6DPKq548achxip6EUSHGyJMWlPRQjn\nXWXiplLsLvZtG9+HcVETeZe/BW4PsBkicytibUUd7cSEeSbNG321yfEFjPgV\n7wp04q+2XdEXiI7fksmg5mco+C9s053TL/JfY09zSerID/fZazU/KfQjJYNe\neyj3pmar8hx5Yti0p8hPemmczVbvFa8ucAiH8nuNcHvztxy4XaoEICE2XOCy\n/i70kNss522nFxTrgKajSIxhFXjn/uEgx7/jyxKYVfw9wWt49sKOmADBaLLH\nl3DQZR+PuyGF1CGNOC7Sarf2CZ5mUDjShJxPcNacMOexIs62CmO35LZel4Ay\nlg23\r\n=Pl80\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwMZxFatBtBip8UZU1dC7bLP/jEFzzCNHv2YE/OUMlmwIhAL+MauSYyki4KaSyop3uBv8koqcKcHsK7qFAN9s9LxjC"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.3_1535820836278_0.7019021911430656"},"_hasShrinkwrap":false},"2.0.4":{"name":"karma-coverage-istanbul-reporter","version":"2.0.4","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commitmsg":"commitlint -e","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish","precommit":"pretty-quick --staged"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.0.5","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^7.0.0","@commitlint/config-conventional":"^7.0.1","@commitlint/prompt":"^7.0.0","@types/chai":"^4.1.4","@types/mocha":"^5.2.5","chai":"^4.0.0","codecov-lite":"^0.1.3","commitizen":"^2.10.1","husky":"^0.14.3","istanbul-instrumenter-loader":"^3.0.1","karma":"^3.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^3.0.0","mocha":"^5.2.0","nyc":"^13.0.1","prettier":"^1.14.2","pretty-quick":"^1.6.0","rimraf":"^2.5.4","standard-version":"^4.4.0","ts-loader":"^4.5.0","tslint":"^5.11.0","tslint-loader":"^3.6.0","typescript":"^3.0.1","webpack":"^4.17.1","xo":"^0.22.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"50f441f496622b8f923388182d2d9acaad596138","_id":"karma-coverage-istanbul-reporter@2.0.4","_npmVersion":"6.4.1","_nodeVersion":"10.9.0","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-xJS7QSQIVU6VK9HuJ/ieE5yynxKhjCCkd96NLY/BX/HXsx0CskU9JJiMQbd4cHALiddMwI4OWh1IIzeWrsavJw==","shasum":"402ae4ed6eadb9d9dafbd408ffda17897c0d003a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.4.tgz","fileCount":6,"unpackedSize":25863,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblCV1CRA9TVsSAnZWagAAv8YP/0uiGHtyj6AcBK9TxMQu\nnj3Vlk+WbR1gLVJj/ZGsY/T59RcdFHmTS8WvkeUDFW7gaMVDCUzxSxBHSVEP\nHcP5HdUcE3QBaTBKQCLL90cice5cvGFuQoy6O92SmWfd3KYbGnHUmFtogJsu\nH26RBkB90zChOzXs8qCaot5ZWCLXK/Zs1V4ApIdV/QgMZxMzYIvYvlm5H+k9\nBcj+JoZ/wzhJCmVWjEpwD2FgdnndZCiqTOhGwo6+pjCvqhN0PhKCw7nhjOcP\nbrIOg2qLmErRzGJUKsEUnrDAoyJgwMhGCCqEvwA0cspPSXNUgwj2+gFwrOoT\nS26Y+jrKUTkuWJw7+2Z8+pfNvjPVvgP/9eI1CNZgRPq8Dgbm84h6SjkiccDd\nTGjmLbnUmG4jebqJvqWJTGjG4VEc7uB3rie7DPUe6xJra7PxfVzeV0oHFn/b\n0E/TWcsIDtvESxZV6O09n7pcinG5v+/CN9Xn/jye+v65A0UEVEEhy5Va0zo0\ns07ZRxKWzaOE1chKw1LFtHPtDf5gxurRYaFrIE78egoLPz/vWaZg/1+jEZ6v\nZdRN3J4NIUmEaD2wTcHQghuD4nH4LqIXT2MLyyTHmAME9Km++vTFG6ynwrpE\nFCHzXpsBwE3U3sRSHJQtAp8SI1OXSnXJ7rOBLU8cY/YFufLbu1J/cJ3GPcpo\nU8f+\r\n=6f/Q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCj/WRSNNqLnuNSI2lpq4hj79Aa/oD/IXkrU4DaM4xxTwIgGT2iry3JFcqr5TxJEOc/NYEg3uca9n4v1ZDdvrkk9jQ="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.4_1536435572548_0.06553338819741672"},"_hasShrinkwrap":false},"2.0.5":{"name":"karma-coverage-istanbul-reporter","version":"2.0.5","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.1.1","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^7.5.2","@commitlint/config-conventional":"^7.5.0","@commitlint/prompt":"^7.5.0","@types/chai":"^4.1.7","@types/mocha":"^5.2.6","chai":"^4.2.0","codecov-lite":"^0.1.3","commitizen":"^3.0.5","husky":"^1.3.1","istanbul-instrumenter-loader":"^3.0.1","karma":"^4.0.0","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.0-rc.6","mocha":"^5.2.0","nyc":"^13.3.0","prettier":"^1.16.4","pretty-quick":"^1.10.0","rimraf":"^2.6.3","standard-version":"^5.0.0","ts-loader":"^5.3.3","tslint":"^5.12.1","tslint-loader":"^3.6.0","typescript":"^3.3.3","webpack":"^4.29.4","xo":"^0.24.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"gitHead":"a7cc756f5be0d2bd5024c11777ff1e88f0cf0a38","_id":"karma-coverage-istanbul-reporter@2.0.5","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"dist":{"integrity":"sha512-yPvAlKtY3y+rKKWbOo0CzBMVTvJEeMOgbMXuVv3yWvS8YtYKC98AU9vFF0mVBZ2RP1E9SgS90+PT6Kf14P3S4w==","shasum":"ca5899d4905e44a5984dd4f963adfc1a74dce767","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.5.tgz","fileCount":6,"unpackedSize":26894,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcaTHfCRA9TVsSAnZWagAAx/8P/jHpm9hvjZXQbulhQabH\nWpUO+AMZ3Xx70vuT9RB5y298dVFPW8DIuEVhzho2Un2c0fF4XrC7S6Ok/hq/\nuNObCq4i2QPCKyxvXIB1nZdi533jpC99388Sp79AoKNZ7I0+t7WkUMM6RCn2\nAitg5cgpk1djv3jkjbSZqx65Ik3Gmh6UikRztHMvjqXTRZWxM9j/0ROYpx/j\ntgRpYy9XV0eVPDtJR8rwYZOUKB+f1pJS6I2CrJK6yZ41HBiWwpXr+XBBk0kO\nyveo0yT3LPikoMineR4tyBVL1hKn/rvQdB/S/Qux+p8C5+UrI0byZMRVJBHC\nD52GVgbQd6wM2zYaDePagPwEVT5t8I+dhNg0lteCrMz80ocG3udrJ9iWJ5vV\nJ2nzMgkrQbOohyO7JRGWJbUzGV88GXbKATpm2YD+o/8adrgaWIdLHTQ2y5eF\nWDWY3Fp7uGARs1N4DTSLPwL49m5bwxWiS6yl+Xi2womvOcRezxymUblR8Dbh\nKoNNx14oYshW+erIDzgFMe5mX2jSeZiJ5MRFYFdv079Mjbg+uFKijOQIqdKG\nD7DoTeXKbvRLesP6Lxet2ZhcEvaedbWq0szt4pTZHorAOAPbR+zqcQ2ngEG2\nNf3t8h7jeoMmYJiHpW/jIexc56ifSXWr7Fro1hyj6sZ+kSUfKYL44n5+UQKX\npkgh\r\n=qrDw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICPzfkH0ZYT9ypOwpYnojhvEkfAMb94JgpUJ4koPDwBiAiAig7poWhh2u3UOWr80oZh0BrdLD2tkAOaM4o/3/7W5MA=="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.5_1550397918396_0.017096709211888772"},"_hasShrinkwrap":false},"2.0.6":{"name":"karma-coverage-istanbul-reporter","version":"2.0.6","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.1.6","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","@commitlint/prompt":"^8.1.0","@types/chai":"^4.1.7","@types/mocha":"^5.2.7","chai":"^4.2.0","codecov":"^3.5.0","commitizen":"^4.0.3","husky":"^1.3.1","istanbul-instrumenter-loader":"^3.0.1","karma":"^3.1.4","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^5.2.0","nyc":"^14.1.1","prettier":"^1.18.2","pretty-quick":"^1.11.1","rimraf":"^2.6.3","standard-version":"^5.0.2","ts-loader":"^5.4.5","tslint":"^5.18.0","tslint-loader":"^3.6.0","typescript":"^3.5.3","webpack":"^4.36.1","xo":"^0.24.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"gitHead":"8fee4a98a9c138aaa829cc62cf1a5b3e0a031f37","_id":"karma-coverage-istanbul-reporter@2.0.6","_nodeVersion":"12.4.0","_npmVersion":"6.10.1","dist":{"integrity":"sha512-WFh77RI8bMIKdOvI/1/IBmgnM+Q7NOLhnwG91QJrM8lW+CIXCjTzhhUsT/svLvAkLmR10uWY4RyYbHMLkTglvg==","shasum":"7b6e9c88781447bb87aa6ac24bf74b93e558adc3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.6.tgz","fileCount":6,"unpackedSize":26982,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMvaACRA9TVsSAnZWagAAIcMP/3jKIr36/huSPHVVgDHZ\nQNIcZjm5eJJyU55Qf3OBcJHjAB3s/0xZdFYO37K30/ZyAIUIu6ettZENqFwj\n7q9X4Y86N2Cs2oYT68IqhmTEqsKlARaRWA4IKW07+nvuYjwhe5s0n2scxWJS\noBglBiVEzTZ/GGQ1YmFbWkVsTme0y6zDcLbUCEHW8EJzVOg2GAT9HzwjgpFH\nPFzo2EOZEqLx0p+xu9oQiqd8fjFhvALQd07qw/Krh8TofEg5zt6V0/q9DkiL\nOeZN+GtsmtsqCxHytyK6YChX1aerlRbB9P3LPazqtCxLuDm2z5PPZHHCMfw5\nelSHD0v3TScfWsI7tb8E2f2K4I2EBrZMGxHZr9K9204f/VGpPVojCrq85iXQ\nDNQZqiyz3cplM92qHmqxSLIg6dyzNQcLDKQ5RM1JbmkG4n+RgIhdiiibPPnY\nmmLaH3kxcQLWhdF8BGx8ID2Kyb+MUykkdfjSb1ivNHC8kDXcA9EFgqKRlVPS\nIxE9+otC4TrR+gAx0cs/FIGysGvXCd+i9A+b+KRtKbGSzKgkoZcJ0GzbndMm\n3fXCjUWXwegkFogTvpp14Zv+yt/eAsRmdWfV9DsL9UncieCOhNUXq+gbuU/B\nbjh36b7TU/Nxj6im2yAwfd336m8RQZRDGn7uheyA6eD9iP+T/CkoEwDkYwa1\n9M53\r\n=AocU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGqMTo61aXKnDtybzmh3qvMEdcWItNQNz60wN76dsjTHAiEA09SQv+wSDoQN+SjAda7ravat5IFqFWG2Pz76DMORgOI="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.0.6_1563620991872_0.6946903409595895"},"_hasShrinkwrap":false},"2.1.0":{"name":"karma-coverage-istanbul-reporter","version":"2.1.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.1.6","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","@commitlint/prompt":"^8.1.0","@types/chai":"^4.1.7","@types/mocha":"^5.2.7","chai":"^4.2.0","codecov":"^3.5.0","commitizen":"^4.0.3","husky":"^1.3.1","istanbul-instrumenter-loader":"^3.0.1","karma":"^3.1.4","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^5.2.0","nyc":"^14.1.1","prettier":"^1.18.2","pretty-quick":"^1.11.1","rimraf":"^2.6.3","standard-version":"^5.0.2","ts-loader":"^5.4.5","tslint":"^5.18.0","tslint-loader":"^3.6.0","typescript":"^3.5.3","webpack":"^4.36.1","xo":"^0.24.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"gitHead":"4a919b4be1bb84609f7503a095467905a7f5dbda","_id":"karma-coverage-istanbul-reporter@2.1.0","_nodeVersion":"12.4.0","_npmVersion":"6.10.1","dist":{"integrity":"sha512-UH0mXPJFJyK5uiK7EkwGtQ8f30lCBAfqRResnZ4pzLJ04SOp4SPlYkmwbbZ6iVJ6sQFVzlDUXlntBEsLRdgZpg==","shasum":"5f1bcc13c5e14ee1d91821ee8946861674f54c75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.1.0.tgz","fileCount":6,"unpackedSize":27650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOHplCRA9TVsSAnZWagAAq6kQAIgxdrSCqe2odL1QhKT2\nktwTeDtVAnuEU2/jndz1T6z/zbDRljSkH3aevYspKVZ4ksVT2GtCX5oLvm6u\nCT9lA5w9PsgGek56FZopyyYm71BoSahY5oZwTA2yPyzAXHT7XIireQ0KZiDM\n68Kg8rWKyIzq46gnxS0f2ICwdIl3TAfPZKMLMYg7Vg1L84s4freqe2jZ6hPj\nxoMoHWpXWUt0Y0lClaejt6P4kXfjOTFG5t1xRFQDPMPGtX1jmJ/kZgdzpNrM\n/1JxDGJEsJIxt8y3KI9rbBAmXXtlKYAFaG8LJm13o0aDKONqPClFaVJkL+FY\nRUF04eHmGSOh89d+tLfQBXOcXzymWbDPmBQJsk60YkP5uS+OkBwIAX2VWpG+\nOTIKhxlpL0WPFWYViBtd5To/JquKp8dFCH8g97qRFpXUm7cDzuHD+jT3xHO6\nKHgHbuksNRD5fdh1ZDKbqAV+2m4x68a/9VS/e6Odbfbin8wwSFgKIUE9Sa9K\n09u0BPK9rgBoQtnvmQmxm+Lo0HeQtd4LFDt462k9gssIRdP+eWMqHlpanSf6\nmUD+Fkw3UX0tuEKKnaVrvB/TIU3cccYWfPwcFBjmKfp0jbOTLhBYcFQgDRQR\nhETwm+IahFh3ewGVpn3fcnx3XCc9IYD0ruJd6Ym61f0e3Wf5eIe6JDW+W72a\nfWEA\r\n=YkSl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4sWJj5T0aFRh9Zwran2EMEB5kSSHylb27a5gfhvyIzQIhAP5QeN3QwkkS+0Lifocqtm3DrOIVoKFqFrX/+Ntj9wBh"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.1.0_1563982436594_0.8783021695831479"},"_hasShrinkwrap":false},"2.1.1":{"name":"karma-coverage-istanbul-reporter","version":"2.1.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","funding":{"url":"https://github.com/sponsors/mattlewis92"},"main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-api":"^2.1.6","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.2.0","@commitlint/config-conventional":"^8.2.0","@commitlint/prompt":"^8.2.0","@types/chai":"^4.2.5","@types/mocha":"^5.2.7","chai":"^4.2.0","codecov":"^3.6.1","commitizen":"^4.0.3","husky":"^1.3.1","istanbul-instrumenter-loader":"^3.0.1","karma":"^3.1.4","karma-mocha":"^1.3.0","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^5.2.0","nyc":"^14.1.1","prettier":"^1.19.1","pretty-quick":"^1.11.1","rimraf":"^2.7.1","standard-version":"^5.0.2","ts-loader":"^5.4.5","tslint":"^5.20.1","tslint-loader":"^3.6.0","typescript":"^3.7.2","webpack":"^4.41.2","xo":"^0.24.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"gitHead":"30ce860848105bf69864402d1381e2d3e3894a68","_id":"karma-coverage-istanbul-reporter@2.1.1","_nodeVersion":"12.10.0","_npmVersion":"6.13.0","dist":{"integrity":"sha512-CH8lTi8+kKXGvrhy94+EkEMldLCiUA0xMOiL31vvli9qK0T+qcXJAwWBRVJWnVWxYkTmyWar8lPz63dxX6/z1A==","shasum":"37a775fbfbb3cbe98cebf19605c94c6277c3b88a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.1.1.tgz","fileCount":6,"unpackedSize":27969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1uATCRA9TVsSAnZWagAA/cUP/3r7gIc9Sfpwf0XW6ucS\nelfEwxG7QtN3a8TEkQbsVyYuyeddaiVsAtuV+ugD/163Q6wxN9EOikgL8jwy\nOGrFXWjqIv5n0TUgZUY7ulnQmOdm0YFy/1qWh9Kwvkqcb2xXeKEC/Km50pJR\nJF3STkLRA/BIWJljGEgJxSmfSNQzf+R6r6d4/Ifibcgkg1Yonb7K4y7tS7vO\ncC86KnsFoJdi+YJC3HAkDJIk6iwWFERjsEY3spufm2axTGG5khHVsKResblr\nH/m0DsYJiQL5ZEYhfO1T0iBwNrGQinN4ZzH5Qsz0DHgDfl19s3W/7pgUdI+L\nAxwUhZEiZ4/FZR1ITUUTat/57xBoRA7/ExWflpu6bWd7MN7HoDpzgKkgKnzc\ny1ICKUPpC3B0eaEkabwsneJdqNVZeJrljbTHtdOItxMs7PqIk7noKjwj8XIC\nO5xiLxcoRt3fB1BJ2TEe39lMOoz5/6xhHtN+MLnhJb0X1c5J3XAcNL6iRp6x\nSwqd/BQ8q8GaQce0yNC7tYsfXoTFT0ZtLb3xI2iocgRayCjY4w1bymHZHKQ+\noIbh2Tupb+/9tX1F8iilJzWHy3Ro05awAhvJvZnuotN4fETdNb+mqDWWAfIM\n1AnkQufNcnqtmCyuFKFcn1tiTpy54lw2DB6mR6WBYcUzmmbMPf8n+1BQk5gW\nZm0b\r\n=BoSV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqUHywAg75Ce1W3fBz9r0w9/Rapilf0tvQqcg1+UGGYwIgQpYGCzw0bM3OMYOJ7Y3W5EujXz5S2ZhbN8yUdNhgJvE="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_2.1.1_1574363155314_0.5267121643087205"},"_hasShrinkwrap":false},"3.0.0":{"name":"karma-coverage-istanbul-reporter","version":"3.0.0","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","funding":{"url":"https://github.com/sponsors/mattlewis92"},"main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-lib-coverage":"^3.0.0","istanbul-lib-report":"^3.0.0","istanbul-lib-source-maps":"^4.0.0","istanbul-reports":"^3.0.2","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@commitlint/prompt":"^8.3.5","@types/chai":"^4.2.11","@types/mocha":"^7.0.2","chai":"^4.2.0","codecov":"^3.6.5","commitizen":"^4.0.5","coverage-istanbul-loader":"^3.0.3","husky":"^4.2.5","karma":"^5.0.4","karma-mocha":"^2.0.1","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^7.1.2","nyc":"^15.0.1","prettier":"^2.0.5","pretty-quick":"^2.0.1","rimraf":"^3.0.2","standard-version":"^7.1.0","ts-loader":"^7.0.2","tslint":"^6.1.2","tslint-loader":"^3.6.0","typescript":"^3.8.3","webpack":"^4.43.0","xo":"^0.30.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"prettier":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"gitHead":"5304cd67c5a2f9e7ecad73f8255c845cca2e0579","_id":"karma-coverage-istanbul-reporter@3.0.0","_nodeVersion":"14.0.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-b/SHVcm9g0MxpwuaqM+AE7jiKbD89eGR2nkk2zCjowVX+OpXBQSaLL9vqN+L3oO0hZi2wf5f6I66/S9iEBFzHA==","shasum":"d3cb7a0b9150e3dd9dbc6dcec42e15218587bfbb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.0.tgz","fileCount":6,"unpackedSize":29205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerF5DCRA9TVsSAnZWagAAgb4P/31EVALoCfyxoprkOAnw\nfsAeDP3xZk9bbaHdVz/BZRtuXPVcYniuWhN/s1HiNtK9jGKi9FqZQYdq/kG7\n4d4MXTqSExeWx1MQ3Yonszx4ierfnojaoOYM4VWl65QFaZzFRHRPBN72PxCg\nkWpKluVyvAkiGe50Lf9ZwvvSgRA15ZB+pIqLyfYFGj4/ru8RAaOvguMECR9O\nyuFOJi/N0lswJ20DauZIRkDezqeVD7Kj52BrzpYgiCClxxk8KOiv4hDTAlwK\nElyVThSUtB6E8s7KOhsDeqqEGOvyyaVrQBdiwaecJFIyTlxrYloP+GZ+/hiq\n+Sxp1Jv6xLcSL4DRTL/CpfG0NJyZEUDEfT6M29ndyY3prcNPijoigX7N0oAm\nNV5e9wpe59P4vyMHlkUk+hDstcR/6onRZhAL5tQmL2B1927SxNHwQ0U8lv7d\nE3pdE9A6Pvewpm8Mc8czet0OwGElfyb2UhXL15niQTFPdUecveJrHbOWMP0V\nrD779AB1zxQgsNhL9o3RNNitGJgeOQp9iOu+DZxwYMpJAI6x8t2CdEJKMdBC\nIt48GNvm5YGLqiIPFTSBRZikRRzVdsWgIQQ9e/64h2KobtcIW6yG4ki4zsy1\nN4H6fp8Di2Grv3h0Vla/yUak9AL3dR35GyR0A7wdKk6a9Qniju9JIqrmWTyU\nxwaz\r\n=pZXE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7F1j1tBK0z5+qogUDXvZu/KDC3R3fkJnd+T9kqKq5owIhAPcywzI8cR8iJpT7avFiInjbf8Nxc8c3C2THDECCKlft"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_3.0.0_1588354627239_0.26920283761112285"},"_hasShrinkwrap":false},"3.0.1":{"name":"karma-coverage-istanbul-reporter","version":"3.0.1","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","funding":{"url":"https://github.com/sponsors/mattlewis92"},"main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-lib-coverage":"^3.0.0","istanbul-lib-report":"^3.0.0","istanbul-lib-source-maps":"^4.0.0","istanbul-reports":"^3.0.2","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@commitlint/prompt":"^8.3.5","@types/chai":"^4.2.11","@types/mocha":"^7.0.2","chai":"^4.2.0","codecov":"^3.6.5","commitizen":"^4.0.5","coverage-istanbul-loader":"^3.0.3","husky":"^4.2.5","karma":"^5.0.4","karma-mocha":"^2.0.1","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^7.1.2","nyc":"^15.0.1","prettier":"^2.0.5","pretty-quick":"^2.0.1","rimraf":"^3.0.2","sinon":"^9.0.2","standard-version":"^7.1.0","ts-loader":"^7.0.2","tslint":"^6.1.2","tslint-loader":"^3.6.0","typescript":"^3.8.3","webpack":"^4.43.0","xo":"^0.30.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"prettier":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"mocha":{"timeout":10000},"gitHead":"a50d4e55edaeda210f656462b2469a8c4ef8d6b0","_id":"karma-coverage-istanbul-reporter@3.0.1","_nodeVersion":"14.0.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-DELhddSw2Epj91CdBualCgUFdKBQzXaGNN4kVk+hqM3BLaBxZVaudxx+TKYjbmHGtvnsoe2o6kxkMsJintuHbQ==","shasum":"92ed1e2262ae3bdbfea17a2c5252f585359cbc65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.1.tgz","fileCount":6,"unpackedSize":29814,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesCZ1CRA9TVsSAnZWagAAAKIP/1S8MBGPU3SfZfA2gu+3\n6FFgl+BA6rSGgkfJefQ7Yuivs37wGKS2Q7gDagcvoc+cqcOhhrXomgEMVleM\nHlSuyMkAbDnuWDGbw+WQnaoNKEUnEgRbeReUm+/gRhAXBJcqY4xjP/G4rt1S\nN8T8auaylnwMhSK0KELQyXUgWN3W75xmVi0RjlovMqhQjPyLrqgSi7M6HYRb\ns/BI9uZoGpNNC+TQryIQ8xg4qnlkTd+qc1nsX59mr7h1c1ZuVX7pyjmgHCoI\nesZ+OBipfA3BAWtR2CrxYYbGLdL1ISn6kqayoXW+9vaa+B9DwiR7nJ1nyap+\n7/qA+WDQXFtAQD0hCjC23gI+s9bgpvcjoK9XkM9uQuELODFJDaLpcs/TVOHL\nZSc+uSleRyVl/8pKVbie6HiygEieDs539Z8vROZcpaNn7LdNNEwvTPg2Lihy\n3Z85aeQxjuFvYFApKQylqgJoHuOoCeA/PDOxl7KznYbtvVUzcNzCKIbUHALQ\np1KuYMJGWTAn0L+Q6pnBA6ljHhmeccm/ldx0VKsNLmB9qNh+uKNpUvkkegsd\n+1RBWKtEGgkFFZ2/x9HzCx3/HKhFmCz8flof958eoigGYvsIEwlmMFKiX8bP\nK9tcwAF51DvG5WL8MbH2VCMvcPPHVDOS/A09y/kJSIEM63GfodqexXiJN4pe\nTEya\r\n=tCg4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH5FEX5K2rm5Wu1OwYFiHTZV2jq8FrDqhxfyYyYFcA9WAiEA2ivQA1C836fahDuES67WX61FEmMtiwHtZEEXS2suM/0="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_3.0.1_1588602485457_0.4796268712604881"},"_hasShrinkwrap":false},"3.0.2":{"name":"karma-coverage-istanbul-reporter","version":"3.0.2","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","funding":{"url":"https://github.com/sponsors/mattlewis92"},"main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-lib-coverage":"^3.0.0","istanbul-lib-report":"^3.0.0","istanbul-lib-source-maps":"^3.0.6","istanbul-reports":"^3.0.2","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@commitlint/prompt":"^8.3.5","@types/chai":"^4.2.11","@types/mocha":"^7.0.2","chai":"^4.2.0","codecov":"^3.6.5","commitizen":"^4.0.5","coverage-istanbul-loader":"^3.0.3","husky":"^4.2.5","karma":"^5.0.4","karma-mocha":"^2.0.1","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^7.1.2","nyc":"^15.0.1","prettier":"^2.0.5","pretty-quick":"^2.0.1","rimraf":"^3.0.2","sinon":"^9.0.2","standard-version":"^7.1.0","ts-loader":"^7.0.2","tslint":"^6.1.2","tslint-loader":"^3.6.0","typescript":"^3.8.3","webpack":"^4.43.0","xo":"^0.30.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"prettier":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"mocha":{"timeout":10000},"gitHead":"5f5ca05f888a9fdab49020a81101ec2913248dbe","_id":"karma-coverage-istanbul-reporter@3.0.2","_nodeVersion":"14.0.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-pg23tKKF867UIJUIZF252cNbiBnuMIPOMkeiULzjysr9K267Js2O/SoQBL1PCPctJVzvhOkE47yQPUKrWtyl6w==","shasum":"b7f3393b13c7e3dafa5410a68d98d327ae21e807","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.2.tgz","fileCount":6,"unpackedSize":30503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesTF3CRA9TVsSAnZWagAAwIIP/0QcCa465yBWVHcNS878\nSxmzYKrFKUnkv33RNDP5mPzEzWJCU93G+pmMy329njmIib9MStyuHVJ7AlJW\nBHqaf1yKJqe0vxPB5/YGo28qVzB3LClfFAji2sRJQfTQe/Ly+evwqbDrZK6t\nPukUCVo8Nj1FGPoFKowpkG+9iUUYXFBZlBZ4L7+KssSliklTeLMSfq2tqhFi\naLY46uydxGDis3Rx/hinoFuKvVjT9isZdKGTMEAVY13VtJi2455h/e0UNhjk\nsWRuiq8XPzbBgHvLiiL3VQZ8/glH6tjz9JXMYI7p42ZGcdMbPrFY1YgFUY4b\nxR0jvWkthIRvJMnaYubK1UojvSmOciKTJzOaElmzqs+kLrBu44tFvLKtaBBC\nRrxkCj+B9gGirYcQsCDk8SWIT0hacqy7jv/C0yVQn5UOMlUb30iMzZr7UHDn\n45ajkpcF2z0JJi5t7eJ9YDIFNL4vnXnnvMpcaErH0CuPzruxeioWXPlNxAf5\nB3vlIojUhRgpRLe1fk6bxBuctMRYViNzokNfPFUTmGq/xlIh3c6gnMnZsX1q\nnmOHSRdQTcK8xQIZWni1gaaD9W3J7gafKgLdDWYmMlwvH8vnBrMJioGFmhjI\nxrxMM7j3ZgDt9bZUY6J/wJRu7zM7ivALkQFrki4Qb48uN6i+jNaL4pmgfzq0\nfCuP\r\n=GiGn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWwEGivCg4spIa88IVvSVc/ElkBNMufLY0QoHFesHC+QIhAPz4lDnvUq1w6W4bFn/P2IOyHUz567X8czFR2K9zIk3Z"}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_3.0.2_1588670838644_0.5956828653548532"},"_hasShrinkwrap":false},"3.0.3":{"name":"karma-coverage-istanbul-reporter","version":"3.0.3","description":"A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.","funding":{"url":"https://github.com/sponsors/mattlewis92"},"main":"src/reporter.js","scripts":{"start":"npm run test:watch","lint":"xo","pretest":"npm run lint","test":"nyc mocha","test:watch":"mocha --watch","codecov":"cat coverage/lcov.info | codecov","commit":"git-cz","prerelease":"npm test","release":"standard-version && git push --follow-tags origin master","postrelease":"npm publish"},"repository":{"type":"git","url":"git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"},"keywords":["karma-plugin","karma-reporter","coverage","istanbul","istanbuljs"],"author":{"name":"Matt Lewis"},"license":"MIT","bugs":{"url":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"},"homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme","dependencies":{"istanbul-lib-coverage":"^3.0.0","istanbul-lib-report":"^3.0.0","istanbul-lib-source-maps":"^3.0.6","istanbul-reports":"^3.0.2","minimatch":"^3.0.4"},"devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@commitlint/prompt":"^8.3.5","@types/chai":"^4.2.11","@types/mocha":"^7.0.2","chai":"^4.2.0","codecov":"^3.6.5","commitizen":"^4.0.5","coverage-istanbul-loader":"^3.0.3","husky":"^4.2.5","karma":"^5.0.4","karma-mocha":"^2.0.1","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^4.0.2","mocha":"^7.1.2","nyc":"^15.0.1","prettier":"^2.0.5","pretty-quick":"^2.0.1","rimraf":"^3.0.2","sinon":"^9.0.2","standard-version":"^7.1.0","ts-loader":"^7.0.2","tslint":"^6.1.2","tslint-loader":"^3.6.0","typescript":"^3.8.3","webpack":"^4.43.0","xo":"^0.30.0"},"nyc":{"reporter":["html","text-summary","lcovonly"]},"xo":{"space":true,"prettier":true,"envs":["node","mocha"],"rules":{"space-before-function-paren":0,"object-curly-spacing":0,"operator-linebreak":0,"indent":0},"ignore":["{test,tests,spec,__tests__}/fixture{s,}/**"]},"config":{"commitizen":{"path":"@commitlint/prompt"}},"commitlint":{"extends":["@commitlint/config-conventional"]},"husky":{"hooks":{"commit-msg":"commitlint -e","pre-commit":"pretty-quick --staged"}},"mocha":{"timeout":10000},"gitHead":"b61dd3067a4c60270a71508fdce8d4f95ed1f4bc","_id":"karma-coverage-istanbul-reporter@3.0.3","_nodeVersion":"14.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==","shasum":"f3b5303553aadc8e681d40d360dfdc19bc7e9fe9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz","fileCount":6,"unpackedSize":30556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0AwUCRA9TVsSAnZWagAAmccP/3ZrRAMiJcM0thYCj2Bd\nI48qFJ7TTaYaoO5voqmRCduxxkF6CUQDku1Tfzu8UcXmvrZb/K8dtFcxfTQN\naVc2JdfkDXmGQYbd8YONnUfiX6wrdPgbxfjiWTzkPvUp9hUSG4JiLO3YAwQs\nJf6Alr5B+wo5dKte8UgZkm/n0uaIu7OCHfYvuSWcF3h2hrGEJZ5hgTETRjYx\nxYQcvChZ3DVCL9tYVH5pCTO96kSjha/lKRnNH5XRiDStNmOzmCM4uEBObRf8\nuRiOKHkk3bkkCZDF+u/z+uSzjaEqS2w4IGyWPyYwihglS6SF1+uZ/zvnnSpr\nVqYNLNdBhcuEaoY3DqO7M8rw45QRdHxrLA+wJvNE78Waj0qseo5tb30QxApM\nX066D7xmt21Akz7r1KpCjqqbk252AQlWu5nDbUeVAtfzycHUW1caGDZQC5LL\ncP432cug62UblHy0fXODoMtHTY73NEFWp2Ws/R05axAjiayTuAM+nk12+QWJ\nbdfPIhpC6+BiLhtgMNjILafzMT74Jeg6zPh50wP3+dRWtpqphqfzAyPv+RCj\nDbbHqzOwbrdp+r/NEA1lxY4lZZXcMOQF+cGs/diwUL8WaQaTGCTjJTnAg953\nONxuYk8N6Y/sdFG18y+vVCOzeX5cXnS7bjedheNQaIU+Ddf1im1X5JoPaZjr\nccfa\r\n=pmz5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCre29dfBIgrkbBQ8pSIf/w7z/jrcA2MSXEngtxyo7TuQIgJnyy1zE1hhV6aYVys381PC2IebdqmHek735/hkanIUQ="}]},"maintainers":[{"name":"dev","email":"matthew.lewis@socialsignin.co.uk"}],"_npmUser":{"name":"dev","email":"npm@mattlewis.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/karma-coverage-istanbul-reporter_3.0.3_1590692883597_0.8183929312913674"},"_hasShrinkwrap":false}},"name":"karma-coverage-istanbul-reporter","time":{"modified":"2022-06-19T07:56:03.970Z","created":"2017-01-25T17:41:40.349Z","0.1.0":"2017-01-25T17:41:40.349Z","0.2.0":"2017-01-25T18:25:16.574Z","0.2.1":"2017-02-15T17:35:31.062Z","0.2.2":"2017-02-15T17:48:47.742Z","0.2.3":"2017-02-17T10:14:26.243Z","0.3.0":"2017-03-05T11:36:55.003Z","0.3.1":"2017-03-20T14:03:51.369Z","1.0.0":"2017-03-20T14:36:58.696Z","1.1.0":"2017-04-11T20:03:46.440Z","1.2.0":"2017-04-15T13:34:08.433Z","1.2.1":"2017-04-30T17:59:11.732Z","1.3.0":"2017-05-26T13:44:06.182Z","1.3.1":"2017-12-23T18:26:13.851Z","1.3.3":"2017-12-26T17:23:01.784Z","1.4.0":"2018-01-23T16:35:40.545Z","1.4.1":"2018-01-24T09:13:04.377Z","1.4.2":"2018-03-06T12:20:03.083Z","1.4.3":"2018-05-17T09:59:59.581Z","2.0.0":"2018-05-17T10:30:00.463Z","2.0.1-alpha.0":"2018-05-23T09:11:18.149Z","2.0.1":"2018-05-23T09:23:43.534Z","2.0.2":"2018-08-24T22:25:52.088Z","2.0.3":"2018-09-01T16:53:56.522Z","2.0.4":"2018-09-08T19:39:32.670Z","2.0.5":"2019-02-17T10:05:18.542Z","2.0.6":"2019-07-20T11:09:52.000Z","2.1.0":"2019-07-24T15:33:56.737Z","2.1.1":"2019-11-21T19:05:55.408Z","3.0.0":"2020-05-01T17:37:07.403Z","3.0.1":"2020-05-04T14:28:05.579Z","3.0.2":"2020-05-05T09:27:18.765Z","3.0.3":"2020-05-28T19:08:03.779Z"},"readmeFilename":"README.md","homepage":"https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme"}