{"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"keywords":["gulpplugin","webpack"],"dist-tags":{"latest":"1.5.0"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"description":"webpack","readme":"# [gulp](https://github.com/wearefractal/gulp)-webpack [![Build Status](http://img.shields.io/travis/shama/gulp-webpack.svg)](https://travis-ci.org/shama/gulp-webpack)\n\n[webpack](https://github.com/webpack/webpack) plugin for [gulp](https://github.com/gulpjs/gulp)\n\n[![NPM](https://nodei.co/npm/gulp-webpack.png?downloads=true)](https://nodei.co/npm/gulp-webpack/)\n\n## Usage\n\n```js\nvar gulp = require('gulp');\nvar webpack = require('gulp-webpack');\ngulp.task('default', function() {\n  return gulp.src('src/entry.js')\n    .pipe(webpack())\n    .pipe(gulp.dest('dist/'));\n});\n```\n\nThe above will compile `src/entry.js` into assets with webpack into `dist/` with the output filename of `[hash].js` (webpack generated hash of the build).\n\nYou can pass webpack options in with the first argument, including `watch` which will greatly increase compilation times:\n\n```js\nreturn gulp.src('src/entry.js')\n  .pipe(webpack({\n    watch: true,\n    module: {\n      loaders: [\n        { test: /\\.css$/, loader: 'style!css' },\n      ],\n    },\n  }))\n  .pipe(gulp.dest('dist/'));\n```\n\nOr just pass in your `webpack.config.js`:\n\n```js\nreturn gulp.src('src/entry.js')\n  .pipe(webpack( require('./webpack.config.js') ))\n  .pipe(gulp.dest('dist/'));\n```\n\nIf you would like to use a different version of webpack than the one this plugin uses, pass in an optional 2nd argument:\n\n```js\nvar gulp = require('gulp');\nvar webpack = require('webpack');\nvar gulpWebpack = require('gulp-webpack');\ngulp.task('default', function() {\n  return gulp.src('src/entry.js')\n    .pipe(gulpWebpack({}, webpack))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\nPass in 3rd argument if you want to access the stats outputted from webpack when the compilation is done:\n\n\n```js\nvar gulp = require('gulp');\nvar webpack = require('gulp-webpack');\ngulp.task('default', function() {\n  return gulp.src('src/entry.js')\n    .pipe(webpack({\n      /* config */\n    }, null, function(err, stats) {\n      /* Use stats to do more things if needed */\n    }))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\n#### Multiple Entry Points\n\nA common request is how to handle multiple entry points. You can continue to pass in an `entry` option in your typical webpack config like so:\n\n```js\nvar gulp = require('gulp');\nvar webpack = require('gulp-webpack');\ngulp.task('default', function() {\n  return gulp.src('src/entry.js')\n    .pipe(webpack({\n      entry: {\n        app: 'src/app.js',\n        test: 'test/test.js',\n      },\n      output: {\n        filename: '[name].js',\n      },\n    }))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\nOr pipe files through a stream that names the chunks. A convenient library for this is [vinyl-named](https://github.com/shama/vinyl-named):\n\n```js\nvar gulp = require('gulp');\nvar webpack = require('gulp-webpack');\nvar named = require('vinyl-named');\ngulp.task('default', function() {\n  return gulp.src(['src/app.js', 'test/test.js'])\n    .pipe(named())\n    .pipe(webpack())\n    .pipe(gulp.dest('dist/'));\n});\n```\n\nThe above `named()` stream will add a `.named` property to the vinyl files passing through. The `webpack()` stream will read those as entry points and even group entry points with common names together.\n\n## Release History\n* 1.5.0 - Update webpack to 1.9.x (@nmccready). Update other dependencies.\n* 1.4.0 - Update webpack to 1.8.x (@Zolmeister).\n* 1.3.2 - Fix another place with ? in name (@raphaelluchini).\n* 1.3.1 - Fix for paths with ? in their name (@raphaelluchini).\n* 1.3.0 - Updating to webpack >= 1.7.\n* 1.2.0 - Updating to webpack >= 1.5, vinyl >= 0.4, memory-fs >= 0.2.\n* 1.1.2 - Fixes to default stats for logging (@mdreizin).\n* 1.1.1 - Add additional stats to default logging (@mdreizin).\n* 1.1.0 - Exposes internal webpack if asked via `require('gulp-webpack').webpack`\n* 1.0.0 - Support named chunks pipe'd in for multiple entry points.\n* 0.4.1 - Fixed regression for multiple entry point support.\n* 0.4.0 - Display an error message if there are no input files (@3onyc). Add message on why task is not finishing, Add ability to track compilation progress, Add ability to configure stats output via options (@kompot). Bump webpack version (@koistya).\n* 0.3.0 - Update deps (@kompot). Fixes to determining entry (@btipling and @abergs).\n* 0.2.0 - Support for `watch` mode (@ampedandwired).\n* 0.1.0 - Initial release\n\n## License\nCopyright (c) 2015 Kyle Robinson Young  \nLicensed under the MIT license.\n","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"users":{"326060588":true,"furier":true,"hal9zillion":true,"eskimoblood":true,"santihbc":true,"yodairish":true,"hacfi":true,"season19840122":true,"mpcjazz":true,"oheard":true,"novo":true,"nmccready":true,"wkaifang":true,"buzuli":true,"ghyghoo8":true,"thatk":true,"animabear":true,"xiechao06":true,"nice_body":true,"vbv":true,"bitsonic":true,"shipengyan":true,"silentcloud":true,"oka-hide":true,"vwal":true,"landy2014":true,"itonyyo":true,"simplesthing":true,"jununx":true,"ivan403704409":true,"oblank":true,"atorma":true,"hustliu":true,"richardcfelix":true,"kazuyahama":true,"sternelee":true,"day318":true,"ppcelery":true,"horoman":true,"alexc1212":true,"riceje7":true,"yanlaichang":true,"escapeimagery":true,"gtopia":true,"itsmeara":true,"zcong":true,"yowainwright":true,"tamer1an":true,"jacks":true,"guojiahao":true,"tmurngon":true,"django_wong":true,"areasis":true,"mhaidarh":true,"yabasha":true,"maggiehe":true,"wujr5":true,"smokinhuzi":true,"parkerproject":true,"vur":true,"allenmoore":true,"fengmiaosen":true,"pwn":true,"heartnett":true,"yikuo":true,"dmxl":true},"bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"license":"MIT","versions":{"0.0.1":{"name":"gulp-webpack","version":"0.0.1","description":"webpack","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/gulp-webpack"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"bugs":{"url":"https://github.com/sindresorhus/gulp-webpack/issues"},"homepage":"https://github.com/sindresorhus/gulp-webpack","_id":"gulp-webpack@0.0.1","dist":{"shasum":"0ee5a786df8b97efc3bf5cd731587e356a15f53f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.0.1.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"0.1.0":{"name":"gulp-webpack","version":"0.1.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"git://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":"^0.1.0","vinyl":"^0.2.3","through":"^2.3.4","webpack":"^1.3.1-beta4","gulp-util":"^2.2.19"},"devDependencies":{"tape":"^2.13.3","gulp":"^3.8.5","rimraf":"^2.2.8"},"keywords":["gulpplugin","webpack"],"bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@0.1.0","dist":{"shasum":"ded639b46212af3e4ee75fc32a0d8efb2e9ba2da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"0.2.0":{"name":"gulp-webpack","version":"0.2.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":"^0.1.0","vinyl":"^0.2.3","through":"^2.3.4","webpack":"^1.3.1-beta4","gulp-util":"^2.2.19"},"devDependencies":{"tape":"^2.13.3","gulp":"^3.8.5","rimraf":"^2.2.8"},"keywords":["gulpplugin","webpack"],"gitHead":"51e030c6840f42f0a1fecd53aca2086a1c927649","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@0.2.0","_shasum":"1c39258e16487f992c2c80726f7b773fc0a9ee2d","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"1c39258e16487f992c2c80726f7b773fc0a9ee2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.2.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"0.3.0":{"name":"gulp-webpack","version":"0.3.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":"^0.1.0","vinyl":"^0.3.0","through":"^2.3.4","webpack":"^1.3.2-beta6","gulp-util":"^3.0.0"},"devDependencies":{"tape":"^2.13.4","gulp":"^3.8.6","rimraf":"^2.2.8"},"keywords":["gulpplugin","webpack"],"gitHead":"f4bbefcee525b31180b87dec945127350b2a16ea","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@0.3.0","_shasum":"45fc352881a5b87f58b8aae4f35f3ba1f2c9e7d2","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"45fc352881a5b87f58b8aae4f35f3ba1f2c9e7d2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.3.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"0.4.0":{"name":"gulp-webpack","version":"0.4.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"tape":">=3.0.0 <3.1.0-0","gulp":">=3.8.6 <3.9.0-0","rimraf":".+2.2.8 <2.3.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"ad876513f8df560ffbc5f70a395a10f368c84d11","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@0.4.0","_shasum":"87a53e9aa030bd28db3dcfd35c9ee1f70144b617","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"87a53e9aa030bd28db3dcfd35c9ee1f70144b617","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.4.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"0.4.1":{"name":"gulp-webpack","version":"0.4.1","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"tape":">=3.0.0 <3.1.0-0","gulp":">=3.8.6 <3.9.0-0","rimraf":".+2.2.8 <2.3.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"2fcf38517ce6da45024422265538a9f3a7721336","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@0.4.1","_shasum":"1c324a3e179f655f855287aa11951c89a94a8671","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"1c324a3e179f655f855287aa11951c89a94a8671","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-0.4.1.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.0.0":{"name":"gulp-webpack","version":"1.0.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.1.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <0.4.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"4169d484bb0322f9a31d430e36a480ea22089b93","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.0.0","_shasum":"ac8c8aad21ceb086fa677f664e47878e9a3a74bb","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.10.32","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"ac8c8aad21ceb086fa677f664e47878e9a3a74bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.0.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.1.0":{"name":"gulp-webpack","version":"1.1.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.1.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <0.4.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"acb70c55ce7e589d2c0c58de52f900d8cf5e55a3","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.1.0","_shasum":"03ff1cd83f1ac07ad38a7257625b3bd1f02304b4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"03ff1cd83f1ac07ad38a7257625b3bd1f02304b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.1.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.1.1":{"name":"gulp-webpack","version":"1.1.1","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.1.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <0.4.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"82eb4d02aa56e33bbbf4211dd7ac66c6ba484f7a","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.1.1","_shasum":"8e095cbdca45afe45e2a590ee8552a54b134d075","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"8e095cbdca45afe45e2a590ee8552a54b134d075","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.1.1.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.1.2":{"name":"gulp-webpack","version":"1.1.2","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.1.0 <0.2.0-0","vinyl":">=0.3.0 <0.4.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.4.0-beta6 <1.5.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.1.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <0.4.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"c4a57c047c747f622e62f887a17168681569205e","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.1.2","_shasum":"a94fedd088a189c40d603980c279528e08df85ac","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"a94fedd088a189c40d603980c279528e08df85ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.1.2.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.2.0":{"name":"gulp-webpack","version":"1.2.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.4.0 <0.5.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.5.0 <1.6.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.5.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <0.4.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"4c81151b3d392542d4f4bb1c8fe6f75ede2e3a3d","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.2.0","_shasum":"af6738de2e86d36ad453bcc2b2f59e56fe9d346f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"af6738de2e86d36ad453bcc2b2f59e56fe9d346f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.2.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.3.0":{"name":"gulp-webpack","version":"1.3.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.4.0 <0.5.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.5.0 <1.8.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.6.0-0","through":">=2.3.6 <2.4.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"47356cfdfa2fa7b24123532b22e4481481a476af","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.3.0","_shasum":"109a1df14ca4b7099ca8f5edfd0bd922276eac6e","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.3.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"109a1df14ca4b7099ca8f5edfd0bd922276eac6e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.3.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.3.1":{"name":"gulp-webpack","version":"1.3.1","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.4.0 <0.5.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.5.0 <1.8.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.6.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"59c2f31f9955557fda280583f2cd3f8b29b4524d","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.3.1","_shasum":"6bb8f5ad9e050ae0b6c37478dbad686949759713","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.1","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"6bb8f5ad9e050ae0b6c37478dbad686949759713","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.3.1.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.3.2":{"name":"gulp-webpack","version":"1.3.2","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.4.0 <0.5.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.5.0 <1.8.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.6.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"b69907f23f3ef66494ad753c99c83680ace9fed2","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.3.2","_shasum":"b0e6e7b4f7a70a3549c3b5fa4cc1baeee6e6b5b0","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"b0e6e7b4f7a70a3549c3b5fa4cc1baeee6e6b5b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.3.2.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.4.0":{"name":"gulp-webpack","version":"1.4.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.4.0 <0.5.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.5.0 <1.9.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.8.6 <3.9.0-0","rimraf":">=2.2.8 <2.3.0-0","tape":">=3.0.0 <3.6.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"cdc43fb46c8e6694be07d3b6175c859c476b937c","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.4.0","_shasum":"7eda8246019fdeaa2d38c61117fca7e6eb179591","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"7eda8246019fdeaa2d38c61117fca7e6eb179591","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.4.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}},"1.5.0":{"name":"gulp-webpack","version":"1.5.0","description":"webpack","license":"MIT","homepage":"https://github.com/shama/gulp-webpack","repository":{"type":"git","url":"https://github.com/shama/gulp-webpack"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"node test/test.js"},"files":["index.js"],"dependencies":{"memory-fs":">=0.2.0 <0.3.0-0","vinyl":">=0.5.0 <0.6.0-0","through":">=2.3.4 <2.4.0-0","webpack":">=1.9.0 <2.0.0-0","gulp-util":">=3.0.0 <3.1.0-0"},"devDependencies":{"gulp":">=3.9.0 <3.10.0-0","rimraf":">=2.3.0 <2.4.0-0","tape":">=4.0.0 <4.1.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack"],"gitHead":"d37576793a84cbfed526dbe6999885d76001daa0","bugs":{"url":"https://github.com/shama/gulp-webpack/issues"},"_id":"gulp-webpack@1.5.0","_shasum":"7aa683fe88c02d246148e27c7229cb6b62892dba","_from":".","_npmVersion":"2.10.1","_nodeVersion":"2.1.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"shama","email":"kyle@dontkry.com"}],"dist":{"shasum":"7aa683fe88c02d246148e27c7229cb6b62892dba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-webpack/-/gulp-webpack-1.5.0.tgz"},"deprecated":"Renamed to https://www.npmjs.com/package/webpack-stream","directories":{}}},"name":"gulp-webpack","time":{"modified":"2017-05-03T13:24:46.310Z","created":"2014-01-09T12:49:35.722Z","0.0.1":"2014-01-09T12:49:35.722Z","0.1.0":"2014-07-02T22:19:12.519Z","0.2.0":"2014-07-26T03:03:09.447Z","0.3.0":"2014-08-06T16:56:44.110Z","0.4.0":"2014-09-26T20:20:35.773Z","0.4.1":"2014-09-29T04:39:42.000Z","1.0.0":"2014-10-16T04:19:56.130Z","1.1.0":"2014-11-24T22:11:03.336Z","1.1.1":"2014-12-13T17:48:10.370Z","1.1.2":"2014-12-16T20:27:54.652Z","1.2.0":"2015-01-30T17:45:37.013Z","1.3.0":"2015-03-04T17:51:29.162Z","1.3.1":"2015-03-29T00:20:22.539Z","1.3.2":"2015-04-09T16:45:11.040Z","1.4.0":"2015-04-22T02:24:04.240Z","1.5.0":"2015-06-05T16:30:20.366Z"},"readmeFilename":"readme.md","homepage":"https://github.com/shama/gulp-webpack"}