{"maintainers":[{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"}],"dist-tags":{"latest":"1.1.0"},"author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","readme":"# loader-utils\n\n## Methods\n\n### `getOptions`\n\nRecommended way to retrieve the options of a loader invocation:\n\n```javascript\n// inside your loader\nconst options = loaderUtils.getOptions(this);\n```\n\n1. If `this.query` is a string:\n\t- Tries to parse the query string and returns a new object\n\t- Throws if it's not a valid query string\n2. If `this.query` is object-like, it just returns `this.query`\n3. In any other case, it just returns `null`\n\n**Please note:** The returned `options` object is *read-only*. It may be re-used across multiple invocations.\nIf you pass it on to another library, make sure to make a *deep copy* of it:\n\n```javascript\nconst options = Object.assign(\n\t{},\n\tloaderUtils.getOptions(this), // it is safe to pass null to Object.assign()\n\tdefaultOptions\n);\n// don't forget nested objects or arrays\noptions.obj = Object.assign({}, options.obj); \noptions.arr = options.arr.slice();\nsomeLibrary(options);\n```\n\n[clone-deep](https://www.npmjs.com/package/clone-deep) is a good library to make a deep copy of the options.\n\n#### Options as query strings\n\nIf the loader options have been passed as loader query string (`loader?some&params`), the string is parsed by using [`parseQuery`](#parsequery).\n\n### `parseQuery`\n\nParses a passed string (e.g. `loaderContext.resourceQuery`) as a query string, and returns an object.\n\n``` javascript\nconst params = loaderUtils.parseQuery(this.resourceQuery); // resource: `file?param1=foo`\nif (params.param1 === \"foo\") {\n\t// do something\n}\n```\n\nThe string is parsed like this:\n\n``` text\n                             -> Error\n?                            -> {}\n?flag                        -> { flag: true }\n?+flag                       -> { flag: true }\n?-flag                       -> { flag: false }\n?xyz=test                    -> { xyz: \"test\" }\n?xyz=1                       -> { xyz: \"1\" } // numbers are NOT parsed\n?xyz[]=a                     -> { xyz: [\"a\"] }\n?flag1&flag2                 -> { flag1: true, flag2: true }\n?+flag1,-flag2               -> { flag1: true, flag2: false }\n?xyz[]=a,xyz[]=b             -> { xyz: [\"a\", \"b\"] }\n?a%2C%26b=c%2C%26d           -> { \"a,&b\": \"c,&d\" }\n?{data:{a:1},isJSON5:true}   -> { data: { a: 1 }, isJSON5: true }\n```\n\n### `stringifyRequest`\n\nTurns a request into a string that can be used inside `require()` or `import` while avoiding absolute paths.\nUse it instead of `JSON.stringify(...)` if you're generating code inside a loader.\n\n**Why is this necessary?** Since webpack calculates the hash before module paths are translated into module ids, we must avoid absolute paths to ensure\nconsistent hashes across different compilations.\n\nThis function:\n\n- resolves absolute requests into relative requests if the request and the module are on the same hard drive\n- replaces `\\` with `/` if the request and the module are on the same hard drive\n- won't change the path at all if the request and the module are on different hard drives\n- applies `JSON.stringify` to the result\n\n```javascript\nloaderUtils.stringifyRequest(this, \"./test.js\");\n// \"\\\"./test.js\\\"\"\n\nloaderUtils.stringifyRequest(this, \".\\\\test.js\");\n// \"\\\"./test.js\\\"\"\n\nloaderUtils.stringifyRequest(this, \"test\");\n// \"\\\"test\\\"\"\n\nloaderUtils.stringifyRequest(this, \"test/lib/index.js\");\n// \"\\\"test/lib/index.js\\\"\"\n\nloaderUtils.stringifyRequest(this, \"otherLoader?andConfig!test?someConfig\");\n// \"\\\"otherLoader?andConfig!test?someConfig\\\"\"\n\nloaderUtils.stringifyRequest(this, require.resolve(\"test\"));\n// \"\\\"../node_modules/some-loader/lib/test.js\\\"\"\n\nloaderUtils.stringifyRequest(this, \"C:\\\\module\\\\test.js\");\n// \"\\\"../../test.js\\\"\" (on Windows, in case the module and the request are on the same drive)\n\nloaderUtils.stringifyRequest(this, \"C:\\\\module\\\\test.js\");\n// \"\\\"C:\\\\module\\\\test.js\\\"\" (on Windows, in case the module and the request are on different drives)\n\nloaderUtils.stringifyRequest(this, \"\\\\\\\\network-drive\\\\test.js\");\n// \"\\\"\\\\\\\\network-drive\\\\\\\\test.js\\\"\" (on Windows, in case the module and the request are on different drives)\n```\n\n### `urlToRequest`\n\nConverts some resource URL to a webpack module request.\n\n```javascript\nconst url = \"path/to/module.js\";\nconst request = loaderUtils.urlToRequest(url); // \"./path/to/module.js\"\n```\n\n#### Module URLs\n\nAny URL containing a `~` will be interpreted as a module request. Anything after the `~` will be considered the request path.\n\n```javascript\nconst url = \"~path/to/module.js\";\nconst request = loaderUtils.urlToRequest(url); // \"path/to/module.js\"\n```\n\n#### Root-relative URLs\n\nURLs that are root-relative (start with `/`) can be resolved relative to some arbitrary path by using the `root` parameter:\n\n```javascript\nconst url = \"/path/to/module.js\";\nconst root = \"./root\";\nconst request = loaderUtils.urlToRequest(url, root); // \"./root/path/to/module.js\"\n```\n\nTo convert a root-relative URL into a module URL, specify a `root` value that starts with `~`:\n\n```javascript\nconst url = \"/path/to/module.js\";\nconst root = \"~\";\nconst request = loaderUtils.urlToRequest(url, root); // \"path/to/module.js\"\n```\n\n### `interpolateName`\n\nInterpolates a filename template using multiple placeholders and/or a regular expression.\nThe template and regular expression are set as query params called `name` and `regExp` on the current loader's context.\n\n```javascript\nconst interpolatedName = loaderUtils.interpolateName(loaderContext, name, options);\n```\n\nThe following tokens are replaced in the `name` parameter:\n\n* `[ext]` the extension of the resource\n* `[name]` the basename of the resource\n* `[path]` the path of the resource relative to the `context` query parameter or option.\n* `[folder]` the folder of the resource is in.\n* `[emoji]` a random emoji representation of `options.content`\n* `[emoji:<length>]` same as above, but with a customizable number of emojis\n* `[hash]` the hash of `options.content` (Buffer) (by default it's the hex digest of the md5 hash)\n* `[<hashType>:hash:<digestType>:<length>]` optionally one can configure\n  * other `hashType`s, i. e. `sha1`, `md5`, `sha256`, `sha512`\n  * other `digestType`s, i. e. `hex`, `base26`, `base32`, `base36`, `base49`, `base52`, `base58`, `base62`, `base64`\n  * and `length` the length in chars\n* `[N]` the N-th match obtained from matching the current file name against `options.regExp`\n\nExamples\n\n``` javascript\n// loaderContext.resourcePath = \"/app/js/javascript.js\"\nloaderUtils.interpolateName(loaderContext, \"js/[hash].script.[ext]\", { content: ... });\n// => js/9473fdd0d880a43c21b7778d34872157.script.js\n\n// loaderContext.resourcePath = \"/app/page.html\"\nloaderUtils.interpolateName(loaderContext, \"html-[hash:6].html\", { content: ... });\n// => html-9473fd.html\n\n// loaderContext.resourcePath = \"/app/flash.txt\"\nloaderUtils.interpolateName(loaderContext, \"[hash]\", { content: ... });\n// => c31e9820c001c9c4a86bce33ce43b679\n\n// loaderContext.resourcePath = \"/app/img/image.gif\"\nloaderUtils.interpolateName(loaderContext, \"[emoji]\", { content: ... });\n// => 👍\n\n// loaderContext.resourcePath = \"/app/img/image.gif\"\nloaderUtils.interpolateName(loaderContext, \"[emoji:4]\", { content: ... });\n// => 🙍🏢📤🐝\n\n// loaderContext.resourcePath = \"/app/img/image.png\"\nloaderUtils.interpolateName(loaderContext, \"[sha512:hash:base64:7].[ext]\", { content: ... });\n// => 2BKDTjl.png\n// use sha512 hash instead of md5 and with only 7 chars of base64\n\n// loaderContext.resourcePath = \"/app/img/myself.png\"\n// loaderContext.query.name =\nloaderUtils.interpolateName(loaderContext, \"picture.png\");\n// => picture.png\n\n// loaderContext.resourcePath = \"/app/dir/file.png\"\nloaderUtils.interpolateName(loaderContext, \"[path][name].[ext]?[hash]\", { content: ... });\n// => /app/dir/file.png?9473fdd0d880a43c21b7778d34872157\n\n// loaderContext.resourcePath = \"/app/js/page-home.js\"\nloaderUtils.interpolateName(loaderContext, \"script-[1].[ext]\", { regExp: \"page-(.*)\\\\.js\", content: ... });\n// => script-home.js\n```\n\n### `getHashDigest`\n\n``` javascript\nconst digestString = loaderUtils.getHashDigest(buffer, hashType, digestType, maxLength);\n```\n\n* `buffer` the content that should be hashed\n* `hashType` one of `sha1`, `md5`, `sha256`, `sha512` or any other node.js supported hash type\n* `digestType` one of `hex`, `base26`, `base32`, `base36`, `base49`, `base52`, `base58`, `base62`, `base64`\n* `maxLength` the maximum length in chars\n\n## License\n\nMIT (http://www.opensource.org/licenses/mit-license.php)\n","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"users":{},"bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"license":"MIT","versions":{"0.1.0":{"name":"loader-utils","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"loader-utils@0.1.0","dist":{"shasum":"c806ab8550eec0f0b716cc5b07fa7641261399e3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.1.0.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.1":{"name":"loader-utils","version":"0.1.1","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"loader-utils@0.1.1","dist":{"shasum":"2eb185fdec466d145507077f3ea2435e1cf9cc8e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.1.1.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.2":{"name":"loader-utils","version":"0.1.2","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_id":"loader-utils@0.1.2","dist":{"shasum":"94b2b270822ae0f53a6bab74394c1d6f557c296b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.1.2.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.0":{"name":"loader-utils","version":"0.2.0","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"loader-utils@0.2.0","dist":{"shasum":"3ab46086a1397e0fd52470e69106998fd70644a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.0.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.1":{"name":"loader-utils","version":"0.2.1","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"loader-utils@0.2.1","dist":{"shasum":"c8d03c4fe8c91e0ae362bd3aeb7fcc445f9b7890","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.1.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.2":{"name":"loader-utils","version":"0.2.2","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"loader-utils@0.2.2","dist":{"shasum":"4c0fe718dd3ab62d1d47d03a2b1af54dd7fda382","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.3":{"name":"loader-utils","version":"0.2.3","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.3","dist":{"shasum":"87fe021587458f10f7eb755c75af60a1fcf4b392","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.3.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.4":{"name":"loader-utils","version":"0.2.4","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x"},"scripts":{"test":"mocha test index.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"devDependencies":{"mocha":"^1.21.4"},"gitHead":"bf11c1c2737360c1daf77925cc718fc48e147128","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.4","_shasum":"b1fbdd1cf3b57ed111c202ffc193bafd1217f8c5","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"b1fbdd1cf3b57ed111c202ffc193bafd1217f8c5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"loader-utils","version":"0.2.5","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x","big.js":"~2.5.1"},"scripts":{"test":"mocha test index.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"devDependencies":{"mocha":"^1.21.4"},"gitHead":"db3c7cd123355f61846497ebeef614670c075ed9","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.5","_shasum":"8dec38ecbcc3a81a01627f2605bec98390ccd5d0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"8dec38ecbcc3a81a01627f2605bec98390ccd5d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.5.tgz"},"directories":{}},"0.2.6":{"name":"loader-utils","version":"0.2.6","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x","big.js":"~2.5.1"},"scripts":{"test":"mocha test index.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"devDependencies":{"mocha":"^1.21.4"},"gitHead":"3e9dfceeae52a23e5e027bdb67b30a21b52d2ae2","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.6","_shasum":"306b798f6a24a5d78505fdb0db2ddd5bb2b90810","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"306b798f6a24a5d78505fdb0db2ddd5bb2b90810","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.6.tgz"},"directories":{}},"0.2.7":{"name":"loader-utils","version":"0.2.7","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x","big.js":"~2.5.1"},"scripts":{"test":"mocha test index.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"devDependencies":{"mocha":"^1.21.4"},"gitHead":"b52bc62f9b2faba9f6c0aea8f9da7211b4e9bdd7","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.7","_shasum":"dcbe8eaee038caa32961f206531da23f04e2279d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"dcbe8eaee038caa32961f206531da23f04e2279d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.7.tgz"},"directories":{}},"0.2.8":{"name":"loader-utils","version":"0.2.8","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"json5":"0.1.x","big.js":"~2.5.1"},"scripts":{"test":"mocha test index.js"},"license":"MIT","repository":{"type":"git","url":"git://github.com/webpack/loader-utils.git"},"devDependencies":{"mocha":"^1.21.4"},"gitHead":"289d38652bd4035488ff35dd11130b36b77d1035","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.8","_shasum":"ad61651fac981a2911e9c9200a838be8974c0cf6","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"ad61651fac981a2911e9c9200a838be8974c0cf6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.8.tgz"},"directories":{}},"0.2.9":{"name":"loader-utils","version":"0.2.9","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.0.2","json5":"^0.4.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"a417eea4e36f4fa3001d1a7591093e68cc4f5462","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils","_id":"loader-utils@0.2.9","_shasum":"9efc08d1ef20e99145e5e627bd8b945a85ac14dc","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"9efc08d1ef20e99145e5e627bd8b945a85ac14dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.9.tgz"},"directories":{}},"0.2.10":{"name":"loader-utils","version":"0.2.10","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.0.2","json5":"^0.4.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"7fd3e9a1c9a0fb8d775f835498b8c0a2002e36a0","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.10","_shasum":"7ed2258e496644c83680590489bb82f3f57892fc","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"7ed2258e496644c83680590489bb82f3f57892fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.10.tgz"},"directories":{}},"0.2.11":{"name":"loader-utils","version":"0.2.11","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.0.2","json5":"^0.4.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"0adb5e5c06b6fd217b8ec4a5316bb08d3363cd88","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.11","_shasum":"8a0164e337c21ca099c2b1716366f0db0ec3087f","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"8a0164e337c21ca099c2b1716366f0db0ec3087f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.11.tgz"},"directories":{}},"0.2.12":{"name":"loader-utils","version":"0.2.12","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.0.2","json5":"^0.4.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"581ccbcb264a9e6d7d667276fbfa609e0ee951f3","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.12","_shasum":"faa2a501563a3c2c9dda57aa8c39d8be628de7a2","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"faa2a501563a3c2c9dda57aa8c39d8be628de7a2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.12.tgz"},"directories":{}},"0.2.13":{"name":"loader-utils","version":"0.2.13","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.0.2","json5":"^0.4.0"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"b16f37eab0655130f82c1b5255373d7b4a372ceb","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.13","_shasum":"ea0de320be919056362c9972d5072b4596ae9eec","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"ea0de320be919056362c9972d5072b4596ae9eec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.13.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-0.2.13.tgz_1458846997166_0.9803386435378343"},"directories":{}},"0.2.14":{"name":"loader-utils","version":"0.2.14","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^1.0.0","json5":"^0.5.0","object-assign":"^4.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"fc647bb47b662771d26529c3157a8d2bc2579844","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.14","_shasum":"3edab2a123ebb196a1c9d6dd3e83384958843e6f","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"3edab2a123ebb196a1c9d6dd3e83384958843e6f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.14.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/loader-utils-0.2.14.tgz_1460208526883_0.26962931361049414"},"directories":{}},"0.2.15":{"name":"loader-utils","version":"0.2.15","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0","object-assign":"^4.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"bed965bbcb54fa54beecfee2639e9585ab5ae020","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.15","_shasum":"c7df3342a9d4e2103dddc97d4060daccc246d6ac","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"c7df3342a9d4e2103dddc97d4060daccc246d6ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.15.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/loader-utils-0.2.15.tgz_1463148639681_0.7935674281325191"},"directories":{}},"0.2.16":{"name":"loader-utils","version":"0.2.16","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0","object-assign":"^4.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"4ea2dfbfe03e3ca70576aff5fe5e4a4235232591","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.16","_shasum":"f08632066ed8282835dff88dfb52704765adee6d","_from":".","_npmVersion":"3.3.3","_nodeVersion":"6.3.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"f08632066ed8282835dff88dfb52704765adee6d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.16.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/loader-utils-0.2.16.tgz_1473890187319_0.20624244073405862"},"directories":{}},"0.2.17":{"name":"loader-utils","version":"0.2.17","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0","object-assign":"^4.0.1"},"scripts":{"test":"mocha","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.14","mocha":"^1.21.4"},"files":["index.js"],"gitHead":"00b9d0848bd7216e184beacbf6582dc5ee51ff80","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@0.2.17","_shasum":"f86e6374d43205a6e6c60e9196f17c0299bfb348","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"f86e6374d43205a6e6c60e9196f17c0299bfb348","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-0.2.17.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/loader-utils-0.2.17.tgz_1487631410094_0.04626395273953676"},"directories":{}},"1.0.0":{"name":"loader-utils","version":"1.0.0","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint --fix *.js test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4"},"main":"lib/index.js","files":["lib","README","LICENSE"],"gitHead":"8cda6ab3c53791851b1528b3d7d8d7f537ae344f","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.0.0","_shasum":"4923aa5442acd8132af59ebc2738a1a828e86184","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"4923aa5442acd8132af59ebc2738a1a828e86184","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.0.0.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-1.0.0.tgz_1487632673669_0.4440648609306663"},"directories":{}},"1.0.1":{"name":"loader-utils","version":"1.0.1","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint --fix *.js test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4"},"main":"lib/index.js","files":["lib","README","LICENSE"],"gitHead":"9986c9c281f33f40a11dedbccac41bb6c24bfd9f","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.0.1","_shasum":"92795b3f71578538b57f7a2ecc71d5b033f0fe29","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"92795b3f71578538b57f7a2ecc71d5b033f0fe29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.0.1.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-1.0.1.tgz_1487688888715_0.6141277730930597"},"directories":{}},"1.0.2":{"name":"loader-utils","version":"1.0.2","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint --fix *.js test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":">=4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4"},"main":"lib/index.js","files":["lib","README","LICENSE"],"gitHead":"622de891c53756e3275e7d36197c0fcc2c93149f","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.0.2","_shasum":"a9f923c865a974623391a8602d031137fad74830","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"a9f923c865a974623391a8602d031137fad74830","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.0.2.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/loader-utils-1.0.2.tgz_1487691451673_0.9973385850898921"},"directories":{}},"1.0.3":{"name":"loader-utils","version":"1.0.3","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint --fix *.js test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"JSF","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":">=4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4"},"main":"lib/index.js","files":["lib"],"gitHead":"b3648f53c41b4432e8cde5d90d79a1838ceb5fa0","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.0.3","_shasum":"566c320c24c33cb3f02db4df83f3dbf60b253de3","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"566c320c24c33cb3f02db4df83f3dbf60b253de3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.0.3.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-1.0.3.tgz_1488808973512_0.982763821259141"},"directories":{}},"1.0.4":{"name":"loader-utils","version":"1.0.4","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint --fix *.js test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"mocha && npm version patch && git push && git push --tags && npm publish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":">=4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4"},"main":"lib/index.js","files":["lib"],"gitHead":"dfaa358213c2c96ee07c9fdd4abedd63d4ec528f","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.0.4","_shasum":"13f56197f1523a305891248b4c7244540848426c","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"13f56197f1523a305891248b4c7244540848426c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.0.4.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-1.0.4.tgz_1489488966537_0.6818160915281624"},"directories":{}},"1.1.0":{"name":"loader-utils","version":"1.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"utils for webpack loaders","dependencies":{"big.js":"^3.1.3","emojis-list":"^2.0.0","json5":"^0.5.0"},"scripts":{"test":"mocha","posttest":"npm run lint","lint":"eslint lib test","travis":"npm run cover -- --report lcovonly","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","release":"npm test && standard-version"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack/loader-utils.git"},"engines":{"node":">=4.0.0"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^3.15.0","eslint-plugin-node":"^4.0.1","istanbul":"^0.3.14","mocha":"^1.21.4","standard-version":"^4.0.0"},"main":"lib/index.js","files":["lib"],"gitHead":"a5602addda0c5e98e70d067b8dd050d5e4153f1d","bugs":{"url":"https://github.com/webpack/loader-utils/issues"},"homepage":"https://github.com/webpack/loader-utils#readme","_id":"loader-utils@1.1.0","_shasum":"c98aef488bcceda2ffb5e2de646d6a754429f5cd","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"jhnns","email":"mail@johannesewald.de"},"dist":{"shasum":"c98aef488bcceda2ffb5e2de646d6a754429f5cd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/loader-utils/-/loader-utils-1.1.0.tgz"},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loader-utils-1.1.0.tgz_1489673126296_0.2887681087013334"},"directories":{}}},"name":"loader-utils","time":{"modified":"2017-05-14T22:02:18.917Z","created":"2012-11-02T09:04:48.557Z","0.1.0":"2012-11-02T09:04:51.604Z","0.1.1":"2012-11-06T15:14:58.115Z","0.1.2":"2012-11-11T09:32:50.101Z","0.2.0":"2013-02-01T07:47:44.929Z","0.2.1":"2013-03-25T22:59:39.122Z","0.2.2":"2014-03-31T07:42:01.233Z","0.2.3":"2014-07-07T11:02:24.572Z","0.2.4":"2014-09-24T19:04:38.525Z","0.2.5":"2014-10-11T15:38:55.265Z","0.2.6":"2015-01-11T08:48:46.271Z","0.2.7":"2015-04-09T21:04:50.152Z","0.2.8":"2015-05-21T20:32:02.085Z","0.2.9":"2015-05-22T06:56:37.606Z","0.2.10":"2015-06-16T18:57:52.693Z","0.2.11":"2015-07-18T16:26:57.137Z","0.2.12":"2015-11-23T21:50:32.833Z","0.2.13":"2016-03-24T19:16:39.586Z","0.2.14":"2016-04-09T13:28:47.920Z","0.2.15":"2016-05-13T14:10:41.676Z","0.2.16":"2016-09-14T21:56:28.432Z","0.2.17":"2017-02-20T22:56:50.783Z","1.0.0":"2017-02-20T23:17:55.776Z","1.0.1":"2017-02-21T14:54:50.645Z","1.0.2":"2017-02-21T15:37:34.017Z","1.0.3":"2017-03-06T14:02:55.308Z","1.0.4":"2017-03-14T10:56:08.427Z","1.1.0":"2017-03-16T14:05:28.112Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/loader-utils#readme"}