{"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"dist-tags":{"latest":"0.11.2","beta":"1.0.0-rc.0"},"author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","readme":"[![npm][npm]][npm-url]\n[![deps][deps]][deps-url]\n[![tests][tests]][tests-url]\n[![coverage][cover]][cover-url]\n[![chat][chat]][chat-url]\n\n<div align=\"center\">\n  <a href=\"https://github.com/webpack/webpack\">\n    <img width=\"200\" height=\"200\"\n      src=\"https://webpack.js.org/assets/icon-square-big.svg\">\n  </a>\n  <h1>File Loader</h1>\n  <p>Instructs webpack to emit the required object as file and to return its public url.</p>\n</div>\n\n<h2 align=\"center\">Install</h2>\n\n```bash\nnpm install --save-dev file-loader\n```\n\n<h2 align=\"center\">Usage</h2>\n\nBy default the filename of the resulting file is the MD5 hash of the file's contents\nwith the original extension of the required resource.\n\n``` javascript\nvar url = require(\"file-loader!./file.png\");\n// => emits file.png as file in the output directory and returns the public url\n// => returns i. e. \"/public-path/0dcbbaa701328a3c262cfd45869e351f.png\"\n```\n\nBy default a file is emitted, however this can be disabled if required (e.g. for server\nside packages).\n\n``` javascript\nvar url = require(\"file-loader?emitFile=false!./file.png\");\n// => returns the public url but does NOT emit a file\n// => returns i. e. \"/public-path/0dcbbaa701328a3c262cfd45869e351f.png\"\n```\n\n#### Filename templates\n\nYou can configure a custom filename template for your file using the query parameter `name`. For instance, to copy a file from your `context` directory into the output directory retaining the full directory structure, you might use `?name=[path][name].[ext]`.\n\nBy default, the path and name you specify will output the file in that same directory and will also use that same URL path to access the file.\n\nYou can specify custom output and public paths by using the `outputPath`, `publicPath` and `useRelativePath` query name parameters:\n\n```\nuse: \"file-loader?name=[name].[ext]&publicPath=assets/foo/&outputPath=app/images/\"\n```\n\n`useRelativePath` should be `true` if you wish to generate relative URL to the each file context\n```javascript\n{\n loader: 'file-loader',\n query: {\n  useRelativePath: process.env.NODE_ENV === \"production\"\n }\n}\n```\n\n#### Filename template placeholders\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* `[hash]` the hash of the content, `hex`-encoded `md5` by default\n* `[<hashType>:hash:<digestType>:<length>]` optionally you 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 the query param `regExp`\n\n#### Examples\n\n``` javascript\nrequire(\"file-loader?name=js/[hash].script.[ext]!./javascript.js\");\n// => js/0dcbbaa701328a3c262cfd45869e351f.script.js\n\nrequire(\"file-loader?name=html-[hash:6].html!./page.html\");\n// => html-109fa8.html\n\nrequire(\"file-loader?name=[hash]!./flash.txt\");\n// => c31e9820c001c9c4a86bce33ce43b679\n\nrequire(\"file-loader?name=[sha512:hash:base64:7].[ext]!./image.png\");\n// => gdyb21L.png\n// use sha512 hash instead of md5 and with only 7 chars of base64\n\nrequire(\"file-loader?name=img-[sha512:hash:base64:7].[ext]!./image.jpg\");\n// => img-VqzT5ZC.jpg\n// use custom name, sha512 hash instead of md5 and with only 7 chars of base64\n\nrequire(\"file-loader?name=picture.png!./myself.png\");\n// => picture.png\n\nrequire(\"file-loader?name=[path][name].[ext]?[hash]!./dir/file.png\")\n// => dir/file.png?e43b20c069c4a01867c31e98cbce33c9\n```\n\n<h2 align=\"center\">Contributing</h2>\n\nDon't hesitate to create a pull request. Every contribution is appreciated. In development you can start the tests by calling `npm test`.\n\n<h2 align=\"center\">Maintainers</h2>\n\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\">\n        <a href=\"https://github.com/bebraw\">\n          <img width=\"150\" height=\"150\" src=\"https://github.com/bebraw.png?v=3&s=150\">\n          </br>\n          Juho Vepsäläinen\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"https://github.com/d3viant0ne\">\n          <img width=\"150\" height=\"150\" src=\"https://github.com/d3viant0ne.png?v=3&s=150\">\n          </br>\n          Joshua Wiens\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"https://github.com/sapegin\">\n          <img width=\"150\" height=\"150\" src=\"https://github.com/sapegin.png?v=3&s=150\">\n          </br>\n          Artem Sapegin\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"https://github.com/michael-ciniawsky\">\n          <img width=\"150\" height=\"150\" src=\"https://github.com/michael-ciniawsky.png?v=3&s=150\">\n          </br>\n          Michael Ciniawsky\n        </a>\n      </td>\n      <td align=\"center\">\n        <a href=\"https://github.com/evilebottnawi\">\n          <img width=\"150\" height=\"150\" src=\"https://github.com/evilebottnawi.png?v=3&s=150\">\n          </br>\n          Alexander Krasnoyarov\n        </a>\n      </td>\n    </tr>\n  <tbody>\n</table>\n\n\n<h2 align=\"center\">LICENSE</h2>\n\nMIT\n\n[npm]: https://img.shields.io/npm/v/file-loader.svg\n[npm-url]: https://npmjs.com/package/file-loader\n\n[deps]: https://david-dm.org/webpack-contrib/file-loader.svg\n[deps-url]: https://david-dm.org/webpack-contrib/file-loader\n\n[tests]: http://img.shields.io/travis/webpack-contrib/file-loader.svg\n[tests-url]: https://travis-ci.org/webpack-contrib/file-loader\n\n[cover]: https://codecov.io/gh/webpack-contrib/file-loader/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/webpack-contrib/file-loader\n\n[chat]: https://badges.gitter.im/webpack/webpack.svg\n[chat-url]: https://gitter.im/webpack/webpack\n","repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"users":{"borjes":true,"leonardorb":true,"lavir":true,"cestrensem":true,"cypark":true,"drinchev":true,"honpery":true,"dhampik":true,"zhiquan_yu":true,"abhisekp":true,"morganz":true,"fadihania":true,"lorenazohar":true,"huina.gu":true,"jruif":true,"langri-sha":true,"klimnikita":true,"sunny_anna":true,"isenricho":true,"drewigg":true,"panos277":true,"raojs":true,"monolithed":true,"princetoad":true,"bh032":true,"artem.tkachuck":true,"bengi":true,"christopher.urquidi":true,"josokinas":true,"stefan.age":true,"myorkgitis":true,"cl0udw4lk3r":true,"cfleschhut":true,"orenschwartz":true,"fabioper":true,"haoxiaodan":true,"laurentknauss":true,"abhijitkalta":true,"liming8077":true,"chenphoenix":true,"jiang135":true,"sun142725":true,"~arnold":true},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"file-loader","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"json loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"file-loader@0.1.0","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"ea450c7a055f81039f7ea96f257b99a919d45040","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.1.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.1":{"name":"file-loader","version":"0.1.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"file-loader@0.1.1","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"1bfac24688e6762dbea42c208a5028c71d6ba38d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.1.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.2":{"name":"file-loader","version":"0.1.2","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"license":"MIT","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"_id":"file-loader@0.1.2","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"4c3b5a92d48e03ff028a3a9bf0fb1ca06049da7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.1.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.0":{"name":"file-loader","version":"0.5.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"file-loader@0.5.0","dist":{"shasum":"1fd9c55924253ac36740053f5bd80ed72f128781","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.5.0.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.5.1":{"name":"file-loader","version":"0.5.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.5.1","dist":{"shasum":"d51192f494d90366e50b60a45fa87bfa1334714f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.5.1.tgz"},"_from":".","_npmVersion":"1.3.17","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.6.1":{"name":"file-loader","version":"0.6.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"592529df530d03759c1ddc56baca70296e27256a","bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.6.1","_shasum":"e0f63f3f123ca810d148aa8903880c9450facbd1","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"e0f63f3f123ca810d148aa8903880c9450facbd1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.6.1.tgz"},"directories":{}},"0.7.0":{"name":"file-loader","version":"0.7.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3","bignum":"~0.9.0"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.7.0","dist":{"shasum":"8b2792fd0f9a46a45a372906dc44f3a306bdd1d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.7.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.7.1":{"name":"file-loader","version":"0.7.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x","bignum":"~0.9.0"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.7.1","dist":{"shasum":"df0260749db8bac48c0054c9f875a7a3081b39c2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.7.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.7.2":{"name":"file-loader","version":"0.7.2","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"0.2.x","bignum":"~0.9.0"},"optionalDependencies":{"bignum":"~0.9.0"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.7.2","dist":{"shasum":"179980495641bfec80089551930de0846e5afa0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.7.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.8.0":{"name":"file-loader","version":"0.8.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"5cd117e7d7aff8a9c4a0cb2afed36db302f36726","bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.8.0","_shasum":"5297cb076de98a911be2810130822122c3a31861","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"5297cb076de98a911be2810130822122c3a31861","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.0.tgz"},"directories":{}},"0.8.1":{"name":"file-loader","version":"0.8.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git@github.com:webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"0a5703fc14674b6485e7752b9f1495ae5cf0fc9f","bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","_id":"file-loader@0.8.1","_shasum":"cc78055bcc5225d5ff21a9b130ec56be50120322","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"cc78055bcc5225d5ff21a9b130ec56be50120322","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.1.tgz"},"directories":{}},"0.8.2":{"name":"file-loader","version":"0.8.2","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"e1993eb9091ecb42c24d77bb3afc461c25e5eb56","bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader#readme","_id":"file-loader@0.8.2","_shasum":"43584ada405d70d78bdaeedd9e404139d3adb489","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"43584ada405d70d78bdaeedd9e404139d3adb489","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.2.tgz"},"directories":{}},"0.8.3":{"name":"file-loader","version":"0.8.3","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"8384372d8623783f8240586404a495ed997c1929","_id":"file-loader@0.8.3","_shasum":"f05d55ee591a1526c767cf187a7d5ff3dcfa58ee","_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":"f05d55ee591a1526c767cf187a7d5ff3dcfa58ee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.3.tgz"}},"0.8.4":{"name":"file-loader","version":"0.8.4","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"9cda561d2497c2e0668b2a797733b6d8fcc402ca","_id":"file-loader@0.8.4","_shasum":"36cb91a1e07fb59817432a76b8408d66fbaa69c6","_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":"36cb91a1e07fb59817432a76b8408d66fbaa69c6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.4.tgz"}},"0.8.5":{"name":"file-loader","version":"0.8.5","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"884f22a727fb26b449c61674b46b6732ad9f2194","_id":"file-loader@0.8.5","_shasum":"9275d031fe780f27d47f5f4af02bd43713cc151b","_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":"9275d031fe780f27d47f5f4af02bd43713cc151b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.8.5.tgz"}},"0.9.0":{"name":"file-loader","version":"0.9.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"162c8faa32a235ff93ccdfdbb5edd45e7c22cfa0","_id":"file-loader@0.9.0","_shasum":"1d2daddd424ce6d1b07cfe3f79731bed3617ab42","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"1d2daddd424ce6d1b07cfe3f79731bed3617ab42","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/file-loader-0.9.0.tgz_1466453877166_0.5333842861000448"}},"0.10.0":{"name":"file-loader","version":"0.10.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"~0.2.5"},"devDependencies":{"should":"~4.0.4","standard-version":"^4.0.0","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec","travis:test":"npm run test","release":"standard-version"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"2d239df11dfa73b27f8e5801a2637d805292cbda","_id":"file-loader@0.10.0","_shasum":"bbe6db7474ac92c7f54fdc197cf547e98b6b8e12","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"bbe6db7474ac92c7f54fdc197cf547e98b6b8e12","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.10.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/file-loader-0.10.0.tgz_1485595390931_0.6364669592585415"}},"0.10.1":{"name":"file-loader","version":"0.10.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"should":"~4.0.4","standard-version":"^4.0.0","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec","travis:test":"npm run test","release":"standard-version"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"5d8f73ebe73fbff0f0dea2d57a01c9b2c69198c9","_id":"file-loader@0.10.1","_shasum":"815034119891fc6441fb5a64c11bc93c22ddd842","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"815034119891fc6441fb5a64c11bc93c22ddd842","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.10.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/file-loader-0.10.1.tgz_1487984755126_0.7668503599707037"}},"0.11.0":{"name":"file-loader","version":"0.11.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"should":"~4.0.4","standard-version":"^4.0.0","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec","travis:test":"npm run test","release":"standard-version"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"46cb91614452f32aba5d76867e02be4f5286b216","_id":"file-loader@0.11.0","_shasum":"af018f39c44617305f1ee92f850c7a65a4331616","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.4","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"af018f39c44617305f1ee92f850c7a65a4331616","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.11.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/file-loader-0.11.0.tgz_1490954278153_0.7259370910469443"}},"0.11.1":{"name":"file-loader","version":"0.11.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"should":"~4.0.4","standard-version":"^4.0.0","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec","travis:test":"npm run test","release":"standard-version"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"9afc2055041a43bfd6df55753e23807268b847bf","_id":"file-loader@0.11.1","_shasum":"6b328ee1234a729e4e47d36375dd6d35c0e1db84","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.4","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"6b328ee1234a729e4e47d36375dd6d35c0e1db84","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.11.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},{"name":"ericclemmons","email":"eric@smarterspam.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/file-loader-0.11.1.tgz_1491047376307_0.26141763757914305"}},"0.11.2":{"name":"file-loader","version":"0.11.2","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["index.js"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"should":"~4.0.4","standard-version":"^4.0.0","mocha":"~1.21.3"},"scripts":{"test":"mocha -R spec","travis:test":"npm run test","release":"standard-version"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"index.js","directories":{"test":"test"},"license":"MIT","gitHead":"743aef27df5a594d8c02df407ae03d15b7a92a64","_id":"file-loader@0.11.2","_npmVersion":"5.0.2","_nodeVersion":"8.0.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-N+uhF3mswIFeziHQjGScJ/yHXYt3DiLBeC+9vWW+WjUBiClMSOlV1YrXQi+7KM2aA3Rn4Bybgv+uXFQbfkzpvg==","shasum":"4ff1df28af38719a6098093b88c82c71d1794a34","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-0.11.2.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-loader-0.11.2.tgz_1496648416660_0.40809234301559627"}},"1.0.0-beta.0":{"name":"file-loader","version":"1.0.0-beta.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["dist"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.1","cross-env":"^5.0.0","del-cli":"^1.0.0","eslint":"^3.19.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^3.6.0","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.0.0","webpack-defaults":"^1.1.1"},"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","clean":"del-cli dist","clean:dist":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","prebuild":"npm run clean","release":"standard-version","security":"nsp check","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","travis:coverage":"npm run test:coverage -- --runInBand","travis:test":"npm run test -- --runInBand","travis:lint":"npm run lint && npm run security","webpack-defaults":"webpack-defaults"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"dist/cjs.js","directories":{"test":"test"},"license":"MIT","engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"dded20d29fa41b1c9f743ba3b2da28289998cad1","_id":"file-loader@1.0.0-beta.0","_npmVersion":"5.0.2","_nodeVersion":"8.0.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-EH8VhCq/I4Gmt0NRwYSqsLeu2Wyd1QoFRLthvUN7Q6BiUILn2M5AuQoMYWlMmuV6fw4VwYqa19NcmTOSYP3ypw==","shasum":"105d575945903c257d61b8bb987c1836677c3388","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-1.0.0-beta.0.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-loader-1.0.0-beta.0.tgz_1496869317899_0.1545261477585882"}},"1.0.0-beta.1":{"name":"file-loader","version":"1.0.0-beta.1","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["dist"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.1","cross-env":"^5.0.0","del-cli":"^1.0.0","eslint":"^3.19.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^3.6.0","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.0.0","webpack-defaults":"^1.3.0"},"scripts":{"start":"npm run build -- -w","appveyor:test":"npm run test","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","clean":"del-cli dist","clean:dist":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","prebuild":"npm run clean","release":"standard-version","security":"nsp check","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","travis:coverage":"npm run test:coverage -- --runInBand","travis:test":"npm run test -- --runInBand","travis:lint":"npm run lint && npm run security","webpack-defaults":"webpack-defaults"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"dist/cjs.js","directories":{"test":"test"},"license":"MIT","peerDependencies":{"webpack":"^2.0.0 || >= 3.0.0-rc.0 || ^3.0.0"},"engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"450cf00a23a2c97877601758a6f05a926728ccc2","_id":"file-loader@1.0.0-beta.1","_npmVersion":"5.0.2","_nodeVersion":"8.0.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-e9IPZXhA1PB4PbYisPouZQ0J7TwDbpRjd3gBDsEmXeZMNWRZkkU7nFFcADnc2aCztCp9vYTErRXSSJt/old30Q==","shasum":"e80e1a0e8e75e8ffe4cfde36cc053f79ca24f0e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-1.0.0-beta.1.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-loader-1.0.0-beta.1.tgz_1497024103777_0.42965683876536787"}},"1.0.0-rc.0":{"name":"file-loader","version":"1.0.0-rc.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["dist"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.1","cross-env":"^5.0.0","del-cli":"^1.0.0","eslint":"^3.19.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^3.6.0","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.0.0","webpack-defaults":"^1.3.0"},"peerDependencies":{"webpack":"^2.0.0 || >= 3.0.0-rc.0 || ^3.0.0"},"scripts":{"start":"npm run build -- -w","appveyor:test":"npm run test","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","prebuild":"npm run clean","release":"standard-version","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","travis:coverage":"npm run test:coverage -- --runInBand","travis:test":"npm run test -- --runInBand","travis:lint":"npm run lint && npm run security","webpack-defaults":"webpack-defaults"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"dist/cjs.js","directories":{"test":"test"},"license":"MIT","engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"a9e69271d114b0bbb25ab5852e001ca5e5731fde","_id":"file-loader@1.0.0-rc.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-knzfFUywDuDmrnprjATpSnTwFMgXwJlTHevjRd45Dpbuy2aZQkExMGeKNtqqtxVaeeYORmNtzMeQbPyDMFdY2w==","shasum":"690af883319eac4e2d01c96732f7beda6370e84a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-1.0.0-rc.0.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-loader-1.0.0-rc.0.tgz_1501102917263_0.10639256262220442"}},"1.0.0":{"name":"file-loader","version":"1.0.0","author":{"name":"Tobias Koppers @sokra"},"description":"file loader module for webpack","files":["dist"],"dependencies":{"loader-utils":"^1.0.2"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.1","cross-env":"^5.0.0","del-cli":"^1.0.0","eslint":"^3.19.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^3.6.0","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.0.0","webpack-defaults":"^1.3.0"},"peerDependencies":{"webpack":"^2.0.0 || >= 3.0.0-rc.0 || ^3.0.0"},"scripts":{"start":"npm run build -- -w","appveyor:test":"npm run test","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","prebuild":"npm run clean","release":"standard-version","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","travis:coverage":"npm run test:coverage -- --runInBand","travis:test":"npm run test -- --runInBand","travis:lint":"npm run lint && npm run security","webpack-defaults":"webpack-defaults"},"repository":{"type":"git","url":"git+https://github.com/webpack/file-loader.git"},"bugs":{"url":"https://github.com/webpack/file-loader/issues"},"homepage":"https://github.com/webpack/file-loader","main":"dist/cjs.js","directories":{"test":"test"},"license":"MIT","engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"95e157b12d7b3b80423d4411af91581c4b53945f","_id":"file-loader@1.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.0","_npmUser":{"name":"d3viant0ne","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-evlTRyNUDiFmlMW2gGepbzx7lB1V1BsElqtIwhq4aPUnvTFvzri8Ua4EaJ+gfRGaUQLdP7joSllvkZBCflho2w==","shasum":"08accf9631a0875e4ab7f209fc4db338604b3190","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/file-loader/-/file-loader-1.0.0.tgz"},"maintainers":[{"email":"eric@smarterspam.com","name":"ericclemmons"},{"email":"wiens.joshua@gmail.com","name":"d3viant0ne"},{"email":"bebraw@gmail.com","name":"bebraw"},{"email":"mail@johannesewald.de","name":"jhnns"},{"email":"sean.larkin@cuw.edu","name":"thelarkinn"},{"email":"tobias.koppers@googlemail.com","name":"sokra"},{"email":"j.tangelder@gmail.com","name":"jtangelder"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-loader-1.0.0.tgz_1501105424699_0.21190887223929167"}}},"name":"file-loader","time":{"modified":"2017-08-02T02:17:45.096Z","created":"2012-05-07T17:12:55.965Z","0.1.0":"2012-05-07T17:13:00.034Z","0.1.1":"2012-05-13T20:53:22.617Z","0.1.2":"2012-05-20T21:58:35.036Z","0.5.0":"2013-02-01T07:46:11.955Z","0.6.0":"2013-03-25T23:17:42.822Z","0.5.1":"2014-01-23T07:58:33.809Z","0.6.1":"2014-08-04T17:29:00.443Z","0.7.0":"2014-08-25T09:15:19.645Z","0.7.1":"2014-08-25T11:15:21.660Z","0.7.2":"2014-08-26T09:02:20.723Z","0.8.0":"2014-10-11T15:53:09.217Z","0.8.1":"2014-10-15T09:45:07.129Z","0.8.2":"2015-05-21T19:42:30.574Z","0.8.3":"2015-05-21T19:45:51.239Z","0.8.4":"2015-05-24T19:52:45.476Z","0.8.5":"2015-11-23T21:47:45.902Z","0.9.0":"2016-06-20T20:17:58.558Z","0.10.0":"2017-01-28T09:23:12.620Z","0.10.1":"2017-02-25T01:05:55.700Z","0.11.0":"2017-03-31T09:57:58.722Z","0.11.1":"2017-04-01T11:49:38.261Z","0.11.2":"2017-06-05T07:40:17.602Z","1.0.0-beta.0":"2017-06-07T21:01:58.885Z","1.0.0-beta.1":"2017-06-09T16:01:44.868Z","1.0.0-rc.0":"2017-07-26T21:01:58.297Z","1.0.0":"2017-07-26T21:43:45.697Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/file-loader"}