{"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist-tags":{"latest":"3.3.0"},"author":{"name":"Thomas Coopman @tcoopman"},"description":"Image loader module for webpack","readme":"![Dependencies status](https://david-dm.org/tcoopman/image-webpack-loader/status.svg)\n![devDependencies status](https://david-dm.org/tcoopman/image-webpack-loader/dev-status.svg)\n\n# image-loader\n\nImage loader module for webpack\n\n> Minify PNG, JPEG, GIF and SVG images with [imagemin](https://github.com/kevva/imagemin)\n\n*Issues with the output should be reported on the imagemin [issue tracker](https://github.com/kevva/imagemin/issues).*\n\n## Install\n\n```sh\n$ npm install image-webpack-loader --save-dev\n```\n\n### libpng issues\n\nInstalling on some versions of OSX may raise errors with a [missing libpng dependency](https://github.com/tcoopman/image-webpack-loader/issues/51#issuecomment-273597313): \n```\nModule build failed: Error: dyld: Library not loaded: /usr/local/opt/libpng/lib/libpng16.16.dylib\n```\nThis can be remedied by installing the newest version of libpng with [homebrew](http://brew.sh/):\n\n```sh\nbrew install libpng\n```\n\n## Usage\n\n[Documentation: Using loaders](http://webpack.github.io/docs/using-loaders.html)\n\nIn your `webpack.config.js`, add the image-loader, chained with the [file-loader](https://github.com/webpack/file-loader):\n\n```javascript\nloaders: [\n    {\n        test: /\\.(jpe?g|png|gif|svg)$/i,\n        loaders: [\n            'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',\n            'image-webpack-loader?bypassOnDebug&optimizationLevel=7&interlaced=false'\n        ]\n    }\n]\n```\n\nIf you want to use [pngquant](https://pngquant.org/) or [mozjpeg](https://github.com/mozilla/mozjpeg) you must use the json options\nnotation like this:\n\n```javascript\nloaders: [\n  {\n    test: /\\.(gif|png|jpe?g|svg)$/i,\n    loaders: [\n      'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',\n      'image-webpack-loader?{optimizationLevel: 7, interlaced: false, pngquant:{quality: \"65-90\", speed: 4}, mozjpeg: {quality: 65}}'\n    ]\n  }\n];\n```\n\nYou can also use a configuration section in your webpack config to set global options for the loader, which will apply to all loader sections that use the image loader.\n\n```javascript\n{\n  module: {\n    loaders: [\n      {\n        test: /\\.(gif|png|jpe?g|svg)$/i,\n        loaders: [\n          'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',\n          'image-webpack-loader'\n        ]\n      }\n    ]\n  },\n\n  imageWebpackLoader: {\n    mozjpeg: {\n      quality: 65\n    },\n    pngquant:{\n      quality: \"65-90\",\n      speed: 4\n    },\n    svgo:{\n      plugins: [\n        {\n          removeViewBox: false\n        },\n        {\n          removeEmptyAttrs: false\n        }\n      ]\n    }\n  }\n}\n```\nWith webpack 2 now supporting query object syntax, you can also write as\n\n```js\n\nloaders: [\n  {\n    test: /\\.(gif|png|jpe?g|svg)$/i,\n    loaders: [\n      'file-loader',\n      {\n        loader: 'image-webpack-loader',\n        query: {\n          progressive: true,\n          optimizationLevel: 7,\n          interlaced: false,\n          pngquant: {\n            quality: '65-90',\n            speed: 4\n          }\n        }\n      }\n    ]\n  }\n]\n```\nComes bundled with the following optimizers:\n\n- [gifsicle](https://github.com/kevva/imagemin-gifsicle) — *Compress GIF images*\n- [mozjpeg](https://github.com/imagemin/imagemin-mozjpeg) — *Compress JPEG images*\n- [optipng](https://github.com/kevva/imagemin-optipng) — *Compress PNG images*\n- [svgo](https://github.com/kevva/imagemin-svgo) — *Compress SVG images*\n- [pngquant](https://pngquant.org/) — *Compress PNG images*\n\n### imagemin(options)\n\nUnsupported files are ignored.\n\n### options\n\nOptions are applied to the correct files.\n\n#### optimizationLevel *(png)*\n\nType: `number`\nDefault: `3`\n\nSelect an optimization level between `0` and `7`.\n\n> The optimization level 0 enables a set of optimization operations that require minimal effort. There will be no changes to image attributes like bit depth or color type, and no recompression of existing IDAT datastreams. The optimization level 1 enables a single IDAT compression trial. The trial chosen is what. OptiPNG thinks it’s probably the most effective. The optimization levels 2 and higher enable multiple IDAT compression trials; the higher the level, the more trials.\n\nLevel and trials:\n\n1. 1 trial\n2. 8 trials\n3. 16 trials\n4. 24 trials\n5. 48 trials\n6. 120 trials\n7. 240 trials\n\n### imageminMozjpeg(options)\n\nReturns a promise for a buffer.\n\n#### options\n\n##### quality\n\nType: `number`\n\nCompression quality. Min and max are numbers in range 0 (worst) to 100 (perfect).\n\n##### progressive\n\nType: `boolean`<br>\nDefault: `true`\n\n`false` creates baseline JPEG file.\n\n#### interlaced *(gif)*\n\nType: `boolean`\nDefault: `false`\n\nInterlace gif for progressive rendering.\n\n#### svgo *(svg)*\n\nType: `object`\nDefault: `{}`\n\nPass options to [svgo](https://github.com/svg/svgo).\n\n#### bypassOnDebug *(all)*\n\nType: `boolean`\nDefault: `false`\n\nUsing this, no processing is done when webpack 'debug' mode is used and the loader acts as a regular file-loader. Use this to speed up initial and, to a lesser extent, subsequent compilations while developing or using webpack-dev-server. Normal builds are processed normally, outputting optimized files.\n\n### imageminPngquant(options)\n\n#### options.floyd\n\nType: `number`\nDefault: `0.5`\n\nControls level of dithering (0 = none, 1 = full).\n\n#### options.nofs\n\nType: `boolean`\nDefault: `false`\n\nDisable Floyd-Steinberg dithering.\n\n#### options.posterize\n\nType: `number`\n\nReduce precision of the palette by number of bits. Use when the image will be\ndisplayed on low-depth screens (e.g. 16-bit displays or compressed textures).\n\n#### options.quality\n\nType: `string`\n\nInstructs pngquant to use the least amount of colors required to meet or exceed\nthe max quality. If conversion results in quality below the min quality the\nimage won't be saved.\n\nMin and max are numbers in range 0 (worst) to 100 (perfect), similar to JPEG.\n\n#### options.speed\n\nType: `number`\nDefault: `3`\n\nSpeed/quality trade-off from `1` (brute-force) to `10` (fastest). Speed `10` has\n5% lower quality, but is 8 times faster than the default.\n\n#### options.verbose\n\nType: `boolean`\nDefault: `false`\n\nPrint verbose status messages.\n\n\n## Inspiration\n\n* [gulp-imagemin](https://github.com/sindresorhus/gulp-imagemin)\n* [file-loader](https://github.com/webpack/file-loader)\n* [imagemin-pngquant](https://github.com/imagemin/imagemin-pngquant)\n\n## License\n\nMIT (http://www.opensource.org/licenses/mit-license.php)\n","repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"users":{"fgribreau":true,"tcoopman":true,"justo":true,"rokeyzki":true,"stone_breaker":true,"tiberiumaxim":true,"fortrustit":true,"langri-sha":true,"yanlaichang":true,"xyyjk":true,"danielbayley":true,"yurii":true,"chiew":true,"ritsu":true,"artem.tkachuck":true,"bengi":true},"bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"license":"MIT","versions":{"0.0.5":{"name":"image-webpack-loader","version":"0.0.5","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/webpack-image-loader.git"},"dependencies":{"imagemin":"^1.0.4","loader-utils":"^0.2.3"},"bugs":{"url":"https://github.com/tcoopman/webpack-image-loader/issues"},"homepage":"https://github.com/tcoopman/webpack-image-loader","_id":"image-webpack-loader@0.0.5","dist":{"shasum":"d419c1ef9dcb56f333967c33674d99755e2bea9b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-0.0.5.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"directories":{}},"0.0.7":{"name":"image-webpack-loader","version":"0.0.7","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin":"^1.0.4","loader-utils":"^0.2.3"},"bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@0.0.7","dist":{"shasum":"867bf5d37f2d088c377d069e6aeee688c936fc1f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-0.0.7.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"directories":{}},"1.0.0":{"name":"image-webpack-loader","version":"1.0.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin":"^3.0.0","loader-utils":"^0.2.5"},"devDependencies":{"webpack":"^1.4.13","file-loader":"^0.8.1"},"bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.0.0","dist":{"shasum":"a850b8b9d98724648ad6eb2c531d216278371c4d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.0.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"directories":{}},"1.1.0":{"name":"image-webpack-loader","version":"1.1.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin":"^3.0.0","loader-utils":"^0.2.5"},"devDependencies":{"webpack":"^1.4.13","file-loader":"^0.8.1"},"gitHead":"51e274619206159d31e4ccb0496fa02781cfc1de","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.1.0","_shasum":"f133f221e744fa2bdbd66389d7efb3f112486654","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"f133f221e744fa2bdbd66389d7efb3f112486654","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"image-webpack-loader","version":"1.1.1","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin":"^3.0.0","loader-utils":"^0.2.5"},"devDependencies":{"webpack":"^1.4.13","file-loader":"^0.8.1"},"gitHead":"495baabe53747d36dc0375704643cf25c32205b3","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.1.1","_shasum":"7fe1adc423e49f3d5981d04ee83ff3ac6e8cad7b","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"7fe1adc423e49f3d5981d04ee83ff3ac6e8cad7b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.1.1.tgz"},"directories":{}},"1.2.0":{"name":"image-webpack-loader","version":"1.2.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"loader-utils":"^0.2.5"},"peerDependencies":{"imagemin":"^3.0.0"},"devDependencies":{"webpack":"^1.4.13","file-loader":"^0.8.1"},"gitHead":"1c9f6ecc4326f252d5317a0483f0f48239d1af79","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.2.0","_shasum":"72186cc1308d233baf5678f5806c88923d937809","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"72186cc1308d233baf5678f5806c88923d937809","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.2.0.tgz"},"directories":{}},"1.3.0":{"name":"image-webpack-loader","version":"1.3.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"loader-utils":"^0.2.6"},"peerDependencies":{"imagemin":"^3.1.0"},"devDependencies":{"webpack":"^1.4.13","file-loader":"^0.8.1"},"gitHead":"46f408693f483841dff3c41140f52c8184759c3f","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.3.0","_shasum":"588dde2fc39e0a9b29bc6b140ebb881ec04b03f6","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"588dde2fc39e0a9b29bc6b140ebb881ec04b03f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"image-webpack-loader","version":"1.3.1","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"loader-utils":"^0.2.6"},"peerDependencies":{"imagemin":"^3.1.0","file-loader":"^0.8.1"},"devDependencies":{"webpack":"^1.7.3"},"gitHead":"cf22cf5137cf0c11c9cadc7ff9f8fab39bd20df2","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.3.1","_shasum":"303086ffe7b3f462d4108b61a7d8cc38401b18a5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"303086ffe7b3f462d4108b61a7d8cc38401b18a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.3.1.tgz"},"directories":{}},"1.4.0":{"name":"image-webpack-loader","version":"1.4.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git@github.com:tcoopman/image-webpack-loader.git"},"dependencies":{"loader-utils":"^0.2.6"},"peerDependencies":{"imagemin":"^3.1.0","file-loader":"*"},"devDependencies":{"webpack":"^1.7.3"},"gitHead":"0da2538e646eba5a9c97a449a59181810f78c2af","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader","_id":"image-webpack-loader@1.4.0","_shasum":"8fc8516a616cfd79907275beb0c84f8095930a8d","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.12.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"8fc8516a616cfd79907275beb0c84f8095930a8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.4.0.tgz"},"directories":{}},"1.5.0":{"name":"image-webpack-loader","version":"1.5.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.1.0","loader-utils":"^0.2.9"},"peerDependencies":{"imagemin":"^3.1.0","file-loader":"*"},"devDependencies":{"webpack":"^1.9.10"},"gitHead":"b58ac76384f94a58905294867d1e938f74a65cee","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.5.0","_shasum":"b4210f020bce958d3d8fab46a3401878c91cc35e","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"b4210f020bce958d3d8fab46a3401878c91cc35e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.5.0.tgz"},"directories":{}},"1.6.0":{"name":"image-webpack-loader","version":"1.6.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.1.0","loader-utils":"^0.2.9"},"peerDependencies":{"imagemin":"^3.1.0","file-loader":"*"},"devDependencies":{"webpack":"^1.9.10"},"gitHead":"38c434bed6e7a2857ccc39a8212b7ddba9f9b223","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.6.0","_shasum":"bdcfbac5bd023bfb5b3484b36e6278ba6c7a82f0","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"bdcfbac5bd023bfb5b3484b36e6278ba6c7a82f0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.6.0.tgz"},"directories":{}},"1.6.1":{"name":"image-webpack-loader","version":"1.6.1","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.1.0","loader-utils":"^0.2.9"},"peerDependencies":{"imagemin":"^3.1.0","file-loader":"*"},"devDependencies":{"webpack":"^1.9.10"},"gitHead":"b55eca0912ba4c81966cf447baebde43cd7ee84d","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.6.1","_shasum":"da7190592a801cd181db97536a034aece3b6329c","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"da7190592a801cd181db97536a034aece3b6329c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.6.1.tgz"},"directories":{}},"1.6.2":{"name":"image-webpack-loader","version":"1.6.2","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.1.0","loader-utils":"^0.2.9","imagemin":"^3.2.1","file-loader":"*"},"devDependencies":{"webpack":"^1.9.10"},"gitHead":"b2bd88f6179ef863f68209c4c4df943a86c5f1c7","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.6.2","_shasum":"106fe9332282332dff160258c0ddcab5c99273d3","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.2.1","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"106fe9332282332dff160258c0ddcab5c99273d3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.6.2.tgz"},"directories":{}},"1.6.3":{"name":"image-webpack-loader","version":"1.6.3","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.2.0","loader-utils":"^0.2.12","imagemin":"^4.0.0","file-loader":"*"},"devDependencies":{"webpack":"^1.12.11"},"gitHead":"848945444d1dbc5438634a2ddc97c5eb8ef7c64e","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.6.3","_shasum":"63c2065434416718073142df4d719d864914f626","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"63c2065434416718073142df4d719d864914f626","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.6.3.tgz"},"directories":{}},"1.7.0":{"name":"image-webpack-loader","version":"1.7.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.2.0","loader-utils":"^0.2.12","imagemin":"^4.0.0","file-loader":"*"},"devDependencies":{"webpack":"^1.12.11"},"gitHead":"22364081e62dd1d98177e17657922be5727eccf2","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.7.0","_shasum":"b8758c1e5430605bb212da52bb6fb618a3e52234","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"b8758c1e5430605bb212da52bb6fb618a3e52234","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.7.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/image-webpack-loader-1.7.0.tgz_1460576725305_0.15530223841778934"},"directories":{}},"1.8.0":{"name":"image-webpack-loader","version":"1.8.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"imagemin-pngquant":"^4.2.0","loader-utils":"^0.2.14","imagemin":"^4.0.0","file-loader":"*"},"devDependencies":{"webpack":"^1.12.11"},"gitHead":"a3157856ee87e67a7ed4b9eb2121276d6347f6f3","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@1.8.0","_shasum":"3ee4363eb614b56657c9f1063ab2a7597cc004c2","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"3ee4363eb614b56657c9f1063ab2a7597cc004c2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-1.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/image-webpack-loader-1.8.0.tgz_1461765198612_0.5965628444682807"},"directories":{}},"2.0.0":{"name":"image-webpack-loader","version":"2.0.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"scripts":{"test":"node node_modules/webpack/bin/webpack.js --config test/webpack.config.js"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"dependencies":{"loader-utils":"^0.2.15","imagemin":"^5.2.2","file-loader":"*","imagemin-gifsicle":"^5.0.0","imagemin-jpegtran":"^5.0.0","imagemin-optipng":"^5.1.0","imagemin-svgo":"^5.1.0","imagemin-pngquant":"^5.0.0"},"devDependencies":{"webpack":"^1.13.1"},"gitHead":"1918e50e76c818793b578f3ccdd7bdea118eacac","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@2.0.0","_shasum":"d6bed8aa7db2cabcd90cd13932df191ab185b5e4","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"d6bed8aa7db2cabcd90cd13932df191ab185b5e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/image-webpack-loader-2.0.0.tgz_1468182335413_0.46195168513804674"},"directories":{}},"3.0.0":{"name":"image-webpack-loader","version":"3.0.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"scripts":{"test":"rm -rf test/public/assets && ./node_modules/.bin/webpack --config test/webpack.config.js"},"dependencies":{"loader-utils":"^0.2.16","imagemin":"^5.2.2","file-loader":"^0.9.0","imagemin-gifsicle":"^5.1.0","imagemin-mozjpeg":"^6.0.0","imagemin-optipng":"^5.2.1","imagemin-svgo":"^5.2.0","imagemin-pngquant":"^5.0.0"},"devDependencies":{"webpack":"^1.13.2"},"gitHead":"fb96e76ae2f7e9944a83bc18d64aef0063efbc9d","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@3.0.0","_shasum":"96393eb2f1a2b911f6990083ef03e8a4b1f5e7f3","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"96393eb2f1a2b911f6990083ef03e8a4b1f5e7f3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-3.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/image-webpack-loader-3.0.0.tgz_1476636095375_0.7630071921739727"},"directories":{}},"3.1.0":{"name":"image-webpack-loader","version":"3.1.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"scripts":{"test":"rm -rf test/public/assets && ./node_modules/.bin/webpack --config test/webpack.config.js"},"dependencies":{"loader-utils":"^0.2.16","imagemin":"^5.2.2","file-loader":"^0.9.0","imagemin-gifsicle":"^5.1.0","imagemin-mozjpeg":"^6.0.0","imagemin-optipng":"^5.2.1","imagemin-svgo":"^5.2.0","imagemin-pngquant":"^5.0.0"},"devDependencies":{"webpack":"^1.13.2"},"gitHead":"7d3a3c2536e150c215921f21e194baef97f22598","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@3.1.0","_shasum":"472edec9b45393b74140c8b4341ef9917f905bbb","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"472edec9b45393b74140c8b4341ef9917f905bbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-3.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/image-webpack-loader-3.1.0.tgz_1481480213253_0.27426455169916153"},"directories":{}},"3.2.0":{"name":"image-webpack-loader","version":"3.2.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"scripts":{"test":"rm -rf test/public/assets && ./node_modules/.bin/webpack --config test/webpack.config.js"},"dependencies":{"loader-utils":"^0.2.16","imagemin":"^5.2.2","file-loader":"^0.9.0","imagemin-gifsicle":"^5.1.0","imagemin-mozjpeg":"^6.0.0","imagemin-optipng":"^5.2.1","imagemin-svgo":"^5.2.0","imagemin-pngquant":"^5.0.0"},"devDependencies":{"webpack":"^1.13.2"},"gitHead":"ff2ce88665860ff1106a0b36e1e60eed4c01b48f","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@3.2.0","_shasum":"f26306d6048d3a2f5a8d844ecaedd2b7148f0a4e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"f26306d6048d3a2f5a8d844ecaedd2b7148f0a4e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-3.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/image-webpack-loader-3.2.0.tgz_1485466765477_0.6710715524386615"},"directories":{}},"3.3.0":{"name":"image-webpack-loader","version":"3.3.0","description":"Image loader module for webpack","author":{"name":"Thomas Coopman @tcoopman"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/tcoopman/image-webpack-loader.git"},"scripts":{"test:webpack1":"npm install -q webpack@1.x && npm run test:clean && webpack --config test/webpack1.config.js","test:webpack2":"npm install -q webpack@2.x && npm run test:clean && webpack --config test/webpack2.config.js","test:clean":"rm -rf test/public/assets","test":"npm run test:webpack1 && npm run test:webpack2"},"dependencies":{"imagemin":"^5.2.2","imagemin-gifsicle":"^5.1.0","imagemin-mozjpeg":"^6.0.0","imagemin-optipng":"^5.2.1","imagemin-pngquant":"^5.0.0","imagemin-svgo":"^5.2.1","loader-utils":"^1.1.0","object-assign":"^4.1.1"},"devDependencies":{"file-loader":"^0.10.1"},"gitHead":"7a29e0a61e2cb6dec5151aed943be2ab81a902e6","bugs":{"url":"https://github.com/tcoopman/image-webpack-loader/issues"},"homepage":"https://github.com/tcoopman/image-webpack-loader#readme","_id":"image-webpack-loader@3.3.0","_shasum":"e377ed58b1418b8db20267b17d8fcbbfe6b0de63","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"tcoopman","email":"thomas.coopman@gmail.com"},"maintainers":[{"name":"tcoopman","email":"thomas.coopman@gmail.com"}],"dist":{"shasum":"e377ed58b1418b8db20267b17d8fcbbfe6b0de63","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/image-webpack-loader/-/image-webpack-loader-3.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/image-webpack-loader-3.3.0.tgz_1490518693401_0.6308567603118718"},"directories":{}}},"name":"image-webpack-loader","time":{"modified":"2017-03-28T00:18:24.476Z","created":"2014-09-09T10:38:05.973Z","0.0.5":"2014-09-09T10:38:05.973Z","0.0.7":"2014-09-09T10:50:27.146Z","1.0.0":"2014-11-16T15:22:51.053Z","1.1.0":"2015-01-09T08:39:26.438Z","1.1.1":"2015-01-09T08:47:14.254Z","1.2.0":"2015-01-22T13:11:21.116Z","1.3.0":"2015-03-08T17:22:52.741Z","1.3.1":"2015-03-17T19:25:08.186Z","1.4.0":"2015-03-19T19:17:53.364Z","1.5.0":"2015-06-08T17:54:53.613Z","1.6.0":"2015-06-08T18:12:13.150Z","1.6.1":"2015-06-08T18:25:19.639Z","1.6.2":"2015-10-19T19:45:34.540Z","1.6.3":"2016-01-16T09:45:59.083Z","1.7.0":"2016-04-13T19:45:27.205Z","1.8.0":"2016-04-27T13:53:21.731Z","2.0.0":"2016-07-10T20:25:36.937Z","3.0.0":"2016-10-16T16:41:36.969Z","3.1.0":"2016-12-11T18:16:53.933Z","3.2.0":"2017-01-26T21:39:26.204Z","3.3.0":"2017-03-26T08:58:16.505Z"},"readmeFilename":"README.md","homepage":"https://github.com/tcoopman/image-webpack-loader#readme"}