{
  "manifest": {
    "name": "loader-runner",
    "version": "4.3.0",
    "description": "Runs (webpack) loaders",
    "main": "lib/LoaderRunner.js",
    "scripts": {
      "lint": "eslint lib test",
      "pretest": "npm run lint",
      "test": "mocha --reporter spec",
      "precover": "npm run lint",
      "cover": "istanbul cover node_modules/mocha/bin/_mocha"
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/webpack/loader-runner.git"
    },
    "keywords": [
      "webpack",
      "loader"
    ],
    "author": {
      "name": "Tobias Koppers @sokra"
    },
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/webpack/loader-runner/issues"
    },
    "homepage": "https://github.com/webpack/loader-runner#readme",
    "engines": {
      "node": ">=6.11.5"
    },
    "files": [
      "lib/",
      "bin/",
      "hot/",
      "web_modules/",
      "schemas/"
    ],
    "devDependencies": {
      "eslint": "^3.12.2",
      "eslint-plugin-node": "^3.0.5",
      "eslint-plugin-nodeca": "^1.0.3",
      "istanbul": "^0.4.1",
      "mocha": "^3.2.0",
      "should": "^8.0.2"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-loader-runner-4.3.0-c1b4a163b99f614830353b16755e7149ac2314e1-integrity/node_modules/loader-runner/package.json",
    "readmeFilename": "README.md",
    "readme": "# loader-runner\n\n``` js\nimport { runLoaders } from \"loader-runner\";\n\nrunLoaders({\n\tresource: \"/abs/path/to/file.txt?query\",\n\t// String: Absolute path to the resource (optionally including query string)\n\n\tloaders: [\"/abs/path/to/loader.js?query\"],\n\t// String[]: Absolute paths to the loaders (optionally including query string)\n\t// {loader, options}[]: Absolute paths to the loaders with options object\n\n\tcontext: { minimize: true },\n\t// Additional loader context which is used as base context\n\n\tprocessResource: (loaderContext, resourcePath, callback) => { ... },\n\t// Optional: A function to process the resource\n\t// Must have signature function(context, path, function(err, buffer))\n\t// By default readResource is used and the resource is added a fileDependency\n\n\treadResource: fs.readFile.bind(fs)\n\t// Optional: A function to read the resource\n\t// Only used when 'processResource' is not provided\n\t// Must have signature function(path, function(err, buffer))\n\t// By default fs.readFile is used\n}, function(err, result) {\n\t// err: Error?\n\n\t// result.result: Buffer | String\n\t// The result\n\t// only available when no error occured\n\n\t// result.resourceBuffer: Buffer\n\t// The raw resource as Buffer (useful for SourceMaps)\n\t// only available when no error occured\n\n\t// result.cacheable: Bool\n\t// Is the result cacheable or do it require reexecution?\n\n\t// result.fileDependencies: String[]\n\t// An array of paths (existing files) on which the result depends on\n\n\t// result.missingDependencies: String[]\n\t// An array of paths (not existing files) on which the result depends on\n\n\t// result.contextDependencies: String[]\n\t// An array of paths (directories) on which the result depends on\n})\n```\n\nMore documentation following...\n\n",
    "licenseText": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz",
    "hash": "c1b4a163b99f614830353b16755e7149ac2314e1",
    "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
    "registry": "npm",
    "packageName": "loader-runner",
    "cacheIntegrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== sha1-wbShY7mfYUgwNTsWdV5xSawjFOE="
  },
  "registry": "npm",
  "hash": "c1b4a163b99f614830353b16755e7149ac2314e1"
}