{ "_args": [ [ "loader-runner@^2.4.0", "/home/herrhase/Workspace/tentakelfabrik/tiny-components/tiny-consent/node_modules/webpack" ] ], "_from": "loader-runner@>=2.4.0 <3.0.0", "_hasShrinkwrap": false, "_id": "loader-runner@2.4.0", "_inCache": true, "_installable": true, "_location": "/loader-runner", "_nodeVersion": "10.15.0", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/loader-runner_2.4.0_1547560015150_0.8059995476306019" }, "_npmUser": { "email": "tobias.koppers@googlemail.com", "name": "sokra" }, "_npmVersion": "6.4.1", "_phantomChildren": {}, "_requested": { "name": "loader-runner", "raw": "loader-runner@^2.4.0", "rawSpec": "^2.4.0", "scope": null, "spec": ">=2.4.0 <3.0.0", "type": "range" }, "_requiredBy": [ "/webpack" ], "_resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", "_shasum": "ed47066bfe534d7e84c4c7b9998c2a75607d9357", "_shrinkwrap": null, "_spec": "loader-runner@^2.4.0", "_where": "/home/herrhase/Workspace/tentakelfabrik/tiny-components/tiny-consent/node_modules/webpack", "author": { "name": "Tobias Koppers @sokra" }, "bugs": { "url": "https://github.com/webpack/loader-runner/issues" }, "dependencies": {}, "description": "Runs (webpack) loaders", "devDependencies": { "codecov.io": "^0.1.6", "coveralls": "^2.11.6", "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" }, "directories": {}, "dist": { "fileCount": 6, "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPeRPCRA9TVsSAnZWagAAooEP/jd+6k010eAZbJtXYYaJ\nFDURrIqHpuSiq1M3ErGWJZZsm7GctTKhyuxmI/Cbbs+2bEaj+nBN0vEzH6Cu\nlCyxRxRn284e13XYkAcskh+9JZAof5ut1XmTmQvDuasz/7mAzPWXRXeGDOSo\nexBE3vK9g1mjyRd4EhQPp14vEBV2on3qSWVON+z6xSj9kF7uhduBZ29I2Baz\nsxjNrbhDc8r2pioLO4xfDLtFnr65dq0uS8RCyVCFhECwndImU/NFIqKgTx9Y\nINp5GD+9dSz4rRTtuokmXgt0niToBwly78v3LrLEVMAY9AQXDDjuG4+eUf0U\nZt/qMkqmlxMasU0sgpqknSEbtiMUkM+ZPTU/28Gm9tV9ccSQua39PDwuWRbJ\nfztKxhaurUqcdajoJn0+9GsTuqCKE+J767Pb7QwzWn7kUUsFOhVmr+pLClJb\nvUlssEjB+Mvgl3VyKmACwhcaByB8pQLTIVdLgy/07QUczUQtGLSZfTr8E9Rv\nMYY7SkUIPrz8j3VabPdUUw+u8RQXdkG9kwUhxGcCtaMxulMJeceBgQIXBudC\nfQApB9/ep0AJnmKWHmWo9Qk+YLNP7Hi3zPUjOEnW8BAXE9Oc6yltJhvXsDAE\nwviO4Jy6al9JMzeO3yuNZ6suHAhKRFqAzM9JLHtXoJ/pCR9NZ/su7sMpFLkV\nEc2m\r\n=17l7\r\n-----END PGP SIGNATURE-----\r\n", "shasum": "ed47066bfe534d7e84c4c7b9998c2a75607d9357", "tarball": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", "unpackedSize": 16285 }, "engines": { "node": ">=4.3.0 <5.0.0 || >=5.10" }, "gitHead": "4e817fdf48ba866cbfa2e0a91c9b720f09410422", "homepage": "https://github.com/webpack/loader-runner#readme", "keywords": [ "loader", "webpack" ], "license": "MIT", "main": "lib/LoaderRunner.js", "maintainers": [ { "name": "sokra", "email": "tobias.koppers@googlemail.com" } ], "name": "loader-runner", "optionalDependencies": {}, "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\treadResource: fs.readFile.bind(fs)\n\t// A function to read the resource\n\t// Must have signature function(path, function(err, buffer))\n\n}, function(err, result) {\n\t// err: Error?\n\n\t// result.result: Buffer | String\n\t// The result\n\n\t// result.resourceBuffer: Buffer\n\t// The raw resource as Buffer (useful for SourceMaps)\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 (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", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git+https://github.com/webpack/loader-runner.git" }, "scripts": { "cover": "istanbul cover node_modules/mocha/bin/_mocha", "lint": "eslint lib test", "precover": "npm run lint", "pretest": "npm run lint", "test": "mocha --reporter spec", "travis": "npm run cover -- --report lcovonly" }, "version": "2.4.0" }