{
  "manifest": {
    "name": "istanbul-lib-report",
    "version": "3.0.1",
    "description": "Base reporting library for istanbul",
    "author": {
      "name": "Krishnan Anantheswaran",
      "email": "kananthmail-github@yahoo.com"
    },
    "main": "index.js",
    "files": [
      "lib",
      "index.js"
    ],
    "scripts": {
      "test": "nyc mocha"
    },
    "dependencies": {
      "istanbul-lib-coverage": "^3.0.0",
      "make-dir": "^4.0.0",
      "supports-color": "^7.1.0"
    },
    "devDependencies": {
      "chai": "^4.2.0",
      "mocha": "^6.2.2",
      "nyc": "^15.0.0-beta.2",
      "rimraf": "^3.0.0"
    },
    "license": "BSD-3-Clause",
    "bugs": {
      "url": "https://github.com/istanbuljs/istanbuljs/issues"
    },
    "homepage": "https://istanbul.js.org/",
    "repository": {
      "type": "git",
      "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
      "directory": "packages/istanbul-lib-report"
    },
    "keywords": [
      "istanbul",
      "report",
      "api",
      "lib"
    ],
    "engines": {
      "node": ">=10"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-istanbul-lib-report-3.0.1-908305bac9a5bd175ac6a74489eafd0fc2445a7d-integrity/node_modules/istanbul-lib-report/package.json",
    "readmeFilename": "README.md",
    "readme": "# istanbul-lib-report\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/istanbuljs/istanbul-lib-report.svg)](https://greenkeeper.io/)\n[![Build Status](https://travis-ci.org/istanbuljs/istanbul-lib-report.svg?branch=master)](https://travis-ci.org/istanbuljs/istanbul-lib-report)\n\nCore reporting utilities for istanbul.\n\n## Example usage\n\n```js\nconst libReport = require('istanbul-lib-report');\nconst reports = require('istanbul-reports');\n\n// coverageMap, for instance, obtained from istanbul-lib-coverage\nconst coverageMap;\n\nconst configWatermarks = {\n  statements: [50, 80],\n  functions: [50, 80],\n  branches: [50, 80],\n  lines: [50, 80]\n};\n\n// create a context for report generation\nconst context = libReport.createContext({\n  dir: 'report/output/dir',\n  // The summarizer to default to (may be overridden by some reports)\n  // values can be nested/flat/pkg. Defaults to 'pkg'\n  defaultSummarizer: 'nested',\n  watermarks: configWatermarks,\n  coverageMap,\n})\n\n// create an instance of the relevant report class, passing the\n// report name e.g. json/html/html-spa/text\nconst report = reports.create('json', {\n  skipEmpty: configSkipEmpty,\n  skipFull: configSkipFull\n})\n\n// call execute to synchronously create and write the report to disk\nreport.execute(context)\n```\n",
    "licenseText": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n      notice, this list of conditions and the following disclaimer in the\n      documentation and/or other materials provided with the distribution.\n    * Neither the name of the Yahoo! Inc. nor the\n      names of its contributors may be used to endorse or promote products\n      derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
    "hash": "908305bac9a5bd175ac6a74489eafd0fc2445a7d",
    "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
    "registry": "npm",
    "packageName": "istanbul-lib-report",
    "cacheIntegrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== sha1-kIMFusmlvRdaxqdEier9D8JEWn0="
  },
  "registry": "npm",
  "hash": "908305bac9a5bd175ac6a74489eafd0fc2445a7d"
}