{"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"keywords":["gulpplugin","webpack","stream"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"description":"Run webpack as a stream","readme":"# webpack-stream [![Build Status](http://img.shields.io/travis/shama/webpack-stream.svg)](https://travis-ci.org/shama/webpack-stream)\n\nRun [webpack](https://github.com/webpack/webpack) as a stream to conveniently integrate with gulp.\n\n[![NPM](https://nodei.co/npm/webpack-stream.png?downloads=true)](https://nodei.co/npm/webpack-stream/)\n\n\n## Installation\nIf you have `npm` run the following command in the console `npm install --save-dev webpack-stream`\n\n\n## Usage\n\n```js\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\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 decrease compilation times:\n\n```js\nreturn gulp.src('src/entry.js')\n  .pipe(webpack({\n    watch: true,\n    module: {\n      rules: [\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\nconst gulp = require('gulp');\nconst webpack = require('webpack');\nconst gulpWebpack = require('webpack-stream');\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\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\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#### Usage with gulp watch\n\nTo use gulp `watch`, it's required that you explicitly pass webpack in the 2nd argument for a cached `compiler` instance to be used on subsequent runs.\n\nPlease note that gulp `watch` and webpack `watch` are mutually exclusive.\n\n```javascript\nconst gulp = require('gulp');\nconst compiler = require('webpack');\nconst webpack = require('webpack-stream');\n\ngulp.task('build', function() {\n  return gulp.src('src/entry.js')\n    .pipe(webpack({\n      /* config */\n    }, compiler, function(err, stats) {\n      /* Use stats to do more things if needed */\n    }))\n    .pipe(gulp.dest('dist/'));\n});\n\ngulp.task('default', ['build'], function() {\n  gulp.watch(['src/**/*.js'], gulp.series('build'));\n});\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\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\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\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\nconst 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#### Source Maps\n\nSource maps are built into webpack, specify a [devtool](https://webpack.github.io/docs/configuration.html#devtool):\n\n```js\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\nconst 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      devtool: 'source-map'\n    }))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\nNow the appropriate `.map` files will be emitted. Or set to `inline-source-map`\nto inline the source maps into the files.\n\nIf you need further special handling of source maps, such as using with\n[gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) then just pipe\nto a stream and handle the source map files emitted by webpack:\n\n```js\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\nconst named = require('vinyl-named');\nconst through = require('through2');\nconst sourcemaps = require('gulp-sourcemaps');\ngulp.task('default', function() {\n  return gulp.src(['src/app.js', 'test/test.js'])\n    .pipe(named())\n    .pipe(webpack({\n      devtool: 'source-map'\n    }))\n    .pipe(sourcemaps.init({loadMaps: true}))\n    .pipe(through.obj(function (file, enc, cb) {\n      // Dont pipe through any source map files as it will be handled\n      // by gulp-sourcemaps\n      const isSourceMap = /\\.map$/.test(file.path);\n      if (!isSourceMap) this.push(file);\n      cb();\n    }))\n    .pipe(sourcemaps.write('.'))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\n#### Multi-compiler support\n\nMultiple compilers are supported, but instead of passing the webpack configuration directly, you have to wrap it in an object under the key 'config'.\n\n```js\nconst gulp = require('gulp');\nconst webpack = require('webpack-stream');\ngulp.task('default', function() {\n  return gulp.src('src/entry.js')\n    .pipe(webpack({\n      config : require('./webpack.config.js')\n    }))\n    .pipe(gulp.dest('dist/'));\n});\n```\n\n## Release History\n* Please check the [commit log](https://github.com/shama/webpack-stream/commits/master) in the future for release history.\n* 4.0.0 - Update `webpack` to `^3.4.1`. Update `memory-fs` and `vinyl` dependencies. Emit `compilation-error` instead of `error` when watching (@jeroennoten). Fix error when compiler throws an error (@renminghao). Fix error when stats is undefined (@Simek).\n* 3.2.0 - Ability to use multiple compilers (@saschagehlich).\n* 3.1.0 - Better error output (@hi-q).\n* 3.0.1 - Fix fonts being passed through streams (@mattlewis92).\n* 3.0.0 - Remove special handling of source maps. Update dependencies.\n* 2.3.0 - Emit stats.compilation.errors as `error` (@JakeChampion).\n* 2.2.0 - Add support for source maps (@OliverJAsh).\n* 2.1.0 - Avoid modifying options by reference (@shinuza). Replace log with correct package name (@vinnymac).\n* 2.0.0 - Rename to webpack-stream and now it's totally not a gulp plugin.\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('webpack-stream').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) 2021 Kyle Robinson Young\nLicensed under the MIT license.\n","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"users":{"afewinterestingthings":true,"sivan":true,"liu-song":true,"viktorivanov":true,"lgh06":true,"itonyyo":true,"yhui02":true,"kmck":true,"bourne":true,"rubiadias":true,"pillar0514":true,"cognivator":true,"quality520":true,"djviolin":true,"sam16":true,"yabasha":true,"stone-jin":true,"tin-lek":true,"allenmoore":true,"wvlvik":true,"panlw":true,"justinho1989":true,"yikuo":true,"alexdevero":true,"maggiehe":true,"usex":true,"asfrom30":true,"astraloverflow":true,"yangzw":true,"jk6":true,"geofftech":true,"nwservices":true,"tkshrs":true},"bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"license":"MIT","versions":{"2.0.0":{"name":"webpack-stream","version":"2.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"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","stream"],"gitHead":"ccb3d61fbba241c960c8cd28da7bb92003d36b7e","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@2.0.0","_shasum":"79f7ee0d62478314d8f2a88cb9033e6913c7e3ae","_from":".","_npmVersion":"2.10.1","_nodeVersion":"2.1.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"79f7ee0d62478314d8f2a88cb9033e6913c7e3ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-2.0.0.tgz","integrity":"sha512-A0PID5eP4pl3mehp8g8HGC0C/8DyVyiep9UX0BFu1oKPFLF/WkV4KEsmB2tsUKLboD54y4tXDSL/pprN4BKanA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGAnEHkTmiNX7p9zFLOD89MawYS/Ue0BgPf/8SRlIWZAIgNYgfuoMZ+u2QLMtGa6ANnKNrgNXYTHGr2fEhZXV+VLg="}]},"directories":{}},"2.1.0":{"name":"webpack-stream","version":"2.1.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"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.4.0 <2.5.0-0","semistandard":"^6.1.2","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","stream"],"gitHead":"ee350542885a150b72c9cad2c783f8f6e9d4e0b7","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@2.1.0","_shasum":"209016af5c5a5541544b76fd3f038c8063e1220e","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"209016af5c5a5541544b76fd3f038c8063e1220e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-2.1.0.tgz","integrity":"sha512-bRg5bW7lltokW++6/B84yq+LFp5gWnRZRXv+GXOyoxVRHmqdoEl1oYo24L4B84JN5N6PZMIufRIF2zrQQskglg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmr4E0Y4CG+Hk8Tfky6RoVuhnLadIwsP9u76Frtit7zAiEAnIioTzghtHXQTOi3mfQEEcQUoWuHywSOFX1e3VXXn7c="}]},"directories":{}},"2.1.1":{"name":"webpack-stream","version":"2.1.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":">=3.0.0 <3.1.0-0","lodash.clone":">=3.0.0 <3.1.0-0","memory-fs":">=0.2.0 <0.3.0-0","through":">=2.3.4 <2.4.0-0","vinyl":">=0.5.0 <0.6.0-0","webpack":">=1.9.0 <2.0.0-0"},"devDependencies":{"gulp":">=3.9.0 <3.10.0-0","rimraf":">=2.4.0 <2.5.0-0","semistandard":"^6.1.2","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","stream"],"gitHead":"6720babde3bb3f58b92ff036dbb11d4948ddedce","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@2.1.1","_shasum":"81422d5863c28c70c011036f518583ad95729410","_from":".","_npmVersion":"3.3.4","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"81422d5863c28c70c011036f518583ad95729410","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-2.1.1.tgz","integrity":"sha512-2IhtlVOtfe0aJx67EFbjTa44WsRtvTANSHVls4IikimOj2bt8XWq4xkFIcInkL0nI1UdZ3dmg1R4ei1lwqqb8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIElVzUXHlbD+rkj8yKkIVJzGe+TqaAg73v0JmNPF6R+oAiEAjSEIbBeMZ7kyWpvos0i1mMXk8RQT1pNBHwCLwp6Lzw4="}]},"directories":{}},"2.2.0":{"name":"webpack-stream","version":"2.2.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":">=3.0.0 <3.1.0-0","lodash.clone":">=3.0.0 <3.1.0-0","memory-fs":">=0.2.0 <0.3.0-0","through":">=2.3.4 <2.4.0-0","vinyl":">=0.5.0 <0.6.0-0","vinyl-sourcemaps-apply":"^0.2.0","webpack":">=1.9.0 <2.0.0-0"},"devDependencies":{"gulp":">=3.9.0 <3.10.0-0","rimraf":">=2.4.0 <2.5.0-0","semistandard":">=7.0.0 <7.1.0-0","tape":">=4.2.0 <4.3.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"5d038b1164f5ebae9a0df877bfeda44b4b9cfd30","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@2.2.0","_shasum":"0179764df1ac0c466f5eacefa36c3a0eec72b79a","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"0179764df1ac0c466f5eacefa36c3a0eec72b79a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-2.2.0.tgz","integrity":"sha512-+Jl4yFDXrtwFO4Vo+ZQ2FzmH5tROS4fRVZ8+7BJgWLonmak3IszlZKTwGphnJN+ohYrMtNIcUiCsaxapvEj33Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4UNYE8ZRhRwJ/Tmuq3Fa32OrEhjGQ6zoPfP5dykrbeQIhAPtUwo7y+IH86HLwpduyyAOo6h1r56om5cS3pSd5Ax1j"}]},"directories":{}},"2.3.0":{"name":"webpack-stream","version":"2.3.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":">=3.0.0 <3.1.0-0","lodash.clone":">=3.0.0 <3.1.0-0","memory-fs":">=0.2.0 <0.3.0-0","through":">=2.3.4 <2.4.0-0","vinyl":">=0.5.0 <0.6.0-0","vinyl-sourcemaps-apply":"^0.2.0","webpack":">=1.9.0 <2.0.0-0"},"devDependencies":{"gulp":">=3.9.0 <3.10.0-0","rimraf":">=2.4.0 <2.5.0-0","semistandard":">=7.0.0 <7.1.0-0","tape":">=4.2.0 <4.3.0-0","vinyl-fs":">=0.3.9 <1.1.0-0","vinyl-named":">=1.1.0 <1.2.0-0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"c39bc57376106bdc51fd04a3a9664aa2b04beacd","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@2.3.0","_shasum":"b1ec86ea5a665e9f5213c8e310a45af5189b8ec8","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"b1ec86ea5a665e9f5213c8e310a45af5189b8ec8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-2.3.0.tgz","integrity":"sha512-PzZxTqrpMZMvJYCRD20yf9FTzbJIK11uTQWKMoWhxZPNJlOdt1WuNH73VMicQqkuEUpyX6jSWmerz07kpmp5VQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAN2Y5MA2cVumRFCPqmr6xJb94K65bDDGCAYrfnwZmY3AiBmWvbb4RXaMWrxetms4suxtNa72+VaT2YIJywhkTprrw=="}]},"directories":{}},"3.0.0":{"name":"webpack-stream","version":"3.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":"^3.0.7","lodash.clone":"^3.0.3","memory-fs":"^0.3.0","through":"^2.3.8","vinyl":"^1.1.0","webpack":"^1.12.9"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^7.0.4","tape":"^4.2.2","vinyl-fs":"^2.2.1","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"231ecd8835824eb12e4660a604690d4b0fd80ac0","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@3.0.0","_shasum":"21f987cb6d7005306a109e44ed2576752c18fdc1","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"21f987cb6d7005306a109e44ed2576752c18fdc1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-3.0.0.tgz","integrity":"sha512-EYfrFkZJiLL8GjXQ3mvTe2AAboSQC2Ze/GyXqm1BKAE9iKrQM9HCzE20RRw8WuTMD+iTGPUe+YRCUhwGX5zgEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE9b1yT+1EX67alNd30AotGYZDVHHAYZ/PGMJqQ92W9zAiAYa110Qt7PAm4dfdGabVI3+iY5jyv8WCOUzSlCiByXkA=="}]},"directories":{}},"3.0.1":{"name":"webpack-stream","version":"3.0.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":"^3.0.7","lodash.clone":"^3.0.3","memory-fs":"^0.3.0","through":"^2.3.8","vinyl":"^1.1.0","webpack":"^1.12.9"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^7.0.4","tape":"^4.2.2","vinyl-fs":"^2.2.1","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"caef8f01a7492adf2be8548216f89614280c5646","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@3.0.1","_shasum":"e12c710eb6cbfd2a750bf180a0a3aeb83b1cab58","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"e12c710eb6cbfd2a750bf180a0a3aeb83b1cab58","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-3.0.1.tgz","integrity":"sha512-smVCBm7vh9/Gherjv73ugOJMTQmmn/f85h9g6GqBL7mW/tm5yjnqHj1yUo/8BHQ8/8kRFCkRKvJPlVHRQJ7LQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG0yY1stLKrivX7ai3FK1dLipVnmVt8zopG3T9dSnWv4AiEA8gNK6cxPBU8srdyKakWcku3IZfl+cgz3zuSLQK96CXc="}]},"directories":{}},"3.1.0":{"name":"webpack-stream","version":"3.1.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"https://github.com/shama/webpack-stream"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures"]},"dependencies":{"gulp-util":"^3.0.7","lodash.clone":"^3.0.3","memory-fs":"^0.3.0","through":"^2.3.8","vinyl":"^1.1.0","webpack":"^1.12.9"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^7.0.4","tape":"^4.2.2","vinyl-fs":"^2.2.1","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"8cc17b412276810bf9c5dc808ee345129478687d","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@3.1.0","_shasum":"16f9ef850f828739e3810d918a06ab9f9cbe38ca","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"16f9ef850f828739e3810d918a06ab9f9cbe38ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-3.1.0.tgz","integrity":"sha512-d/92KrotQFQqinczP7N4pR3lcGQKtSqckDfeYgv2kUc3sVU6VjJ5LuT7pEMSPxRQZLt+pmaua6AQOt0kaleALQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGdx2HNdPuvM7T2yPibJhjytEndLHuYeFVwkGKPWLjiAIhAPUsaMn5erxFY7mMmRG9lYNw+zozqnHUn9XjSREWuOML"}]},"directories":{}},"3.2.0":{"name":"webpack-stream","version":"3.2.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"gulp-util":"^3.0.7","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.3.0","through":"^2.3.8","vinyl":"^1.1.0","webpack":"^1.12.9"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^7.0.4","tape":"^4.2.2","vinyl-fs":"^2.2.1","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"e4e65856e32037813e7931a934afab380f3a46e4","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@3.2.0","_shasum":"3a1d160fb11d41727b7ce6f32f722464f98b2186","_from":".","_npmVersion":"2.15.2","_nodeVersion":"4.4.1","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"dist":{"shasum":"3a1d160fb11d41727b7ce6f32f722464f98b2186","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-3.2.0.tgz","integrity":"sha512-E4SA5Z7nuPACvPjhwhSDtA5ZRIdPthENEOt/5faYwoc1STB5IzJDHWsNJZ1brg47TLuSaJ7cHublFnd6PxmtXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFutaU/fDjhiJ95EIC1KXdjeHiKoFO5v5ODdDdzUQ2dWAiEA1Ei72nLmUTtVr3KZYdgHbcB5eB5l4KBssXBLB/OaAEY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-stream-3.2.0.tgz_1461300519084_0.5967190125957131"},"directories":{}},"4.0.0":{"name":"webpack-stream","version":"4.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"gulp-util":"^3.0.7","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^3.4.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^11.0.0","tape":"^4.2.2","vinyl-fs":"^2.2.1","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"b44569011059d766faf3bdddc5ffef50e6dae18f","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@4.0.0","_shasum":"f3673dd907d6d9b1ea7bf51fcd1db85b5fd9e0f2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"shasum":"f3673dd907d6d9b1ea7bf51fcd1db85b5fd9e0f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-4.0.0.tgz","integrity":"sha512-iPpUCOYWmCa7AJJQVLuQvo6K2NJw8CChHG1z5yWuVBCfBil+I3EZbZFdr7L5jOd7k6cPtgPxirSHKRcHmMvWbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDReN/zrbQd3ZriY1CYPCZF99QYsLhQkQWs0ITtYcNq+AIgZW13+HsZZyfDiAOIgHVhSq47ZmoPcQ/Lx8T6bzJ/hS8="}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream-4.0.0.tgz_1502122660846_0.21819553757086396"},"directories":{}},"4.0.1":{"name":"webpack-stream","version":"4.0.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"chalk":"^2.3.0","fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^3.4.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.0","tape":"^4.2.2","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"7aa049ac926f7faff717e24ff72c004b0c0e1dd2","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@4.0.1","_npmVersion":"5.5.1","_nodeVersion":"8.5.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-pRKzRuj2NEL5vze4JfHgyAK48ab3M9Bndcj15LoUBCKIRW37aFp5MXopJAD1FC1odR8O9klT/3QvZita1VTudg==","shasum":"0326dbb9d0661525d3a14400f9ec87c9846041e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-4.0.1.tgz","fileCount":3,"unpackedSize":14857,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIDfsT79mt/irJuO7bynNu6Qh1XgJ78CYOqoFe7yxmFQIhAKQYD2VkJRLu/qpUrnTCsAOX7no2bTOLcVF5R7kpsPFp"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_4.0.1_1518285674910_0.5369700148156364"},"_hasShrinkwrap":false},"4.0.2":{"name":"webpack-stream","version":"4.0.2","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"supports-color":"^5.2.0","fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^3.4.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.0","tape":"^4.2.2","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"d8edee30168d7621552c637ee66cd6868a8313d9","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@4.0.2","_npmVersion":"5.5.1","_nodeVersion":"8.5.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-x9st6kLpPXaB7wPb7nKVtTgdIZx2TFV0+rTAzMQEPyA72qzYPKR5OItxP7e1vTtbX5T4Fm7rAlMPfAq1Ijq6gg==","shasum":"7b90aec71d45c8a4519ff8b5a4d59e039cfd02c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-4.0.2.tgz","fileCount":3,"unpackedSize":14903,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnxXNIIrGUisTlPdF4Y2Mt/sdN4BQ9KyQNqq66Z9gPEgIhALtbHSWdBTZlZtSp5wVGLT7pGyvmeswHAL74IPRyZo7U"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_4.0.2_1519225517947_0.799023405172739"},"_hasShrinkwrap":false},"4.0.3":{"name":"webpack-stream","version":"4.0.3","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"supports-color":"^5.3.0","fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^3.4.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"8336e6659481a6544999c53e2e5c44c08a1be89a","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@4.0.3","_npmVersion":"5.5.1","_nodeVersion":"8.5.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-Tx7ks7Of/JiPz7/tUM4WqSg4OcXF4m4OzNSaEzNA1TNXQaiTHIjiKqUoL79wGXbFt2q1IP8VG5DcEdaxifY5Ew==","shasum":"96399fd7911b94c264bfc59e356738a89b5ca136","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-4.0.3.tgz","fileCount":3,"unpackedSize":15195,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDg562mC0oh6JXGmhJy8dkgQqCX9jBF1CAu9SrAnj5dYAIgegDSJ1xWb8Lfv5kZPsF6SnET8Tz2ucE1fuf1UmboVJs="}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_4.0.3_1521913539775_0.737581405886051"},"_hasShrinkwrap":false},"5.0.0":{"name":"webpack-stream","version":"5.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","supports-color":"^5.3.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.7.0"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"3ad6e087ca0edfbc8abd2cf0351bcdffffb48980","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@5.0.0","_npmVersion":"6.1.0","_nodeVersion":"10.1.0","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-cxYTQHqg2FX0cAf5fw1E3eXrnhpZ9g3+GF0egXHGI0SrvN1cIggIvo7esGja/9TYinsLZ+SJtS0KuhAs8tU4YQ==","shasum":"5181f988ff60a7a43876cfc29402909541ca59de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-5.0.0.tgz","fileCount":3,"unpackedSize":15065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTXYZCRA9TVsSAnZWagAA+NAP/Ao4XIztPQbnYFSAO28F\nXneMr8l0CCk0Sm+zfURhiZArKylLqvIKDKbJeOAmyjP+PbpsELATFXsQGEdH\nRj7jBXc4JccqRL74IcEvXudUkhS/EX2AjOPhpO4DYPKzJMAUWsEEMJgCXUaC\neMAaLT9m1boj8v8AY5Tt+iASTUtKqO48MYKl+J2ae46QJmGKQlFPMxK3Z7ay\n03wTYst9nAR1Ty4XM+yZ9rq99cnp/jghfKLZof64MMfvckDaw1J8qogccfTb\n2Ge9U80lRvSoFOdxv1gc4HBZ8RFm5iwopHM+vNCsrYsex+AJu2fcnfE+vM0w\n+1OzE34Oj7uKm8oiZ5ppwTZbaI7ZkeEsMBWTGOOXZkMkP3RfTghWyQ1bb1mB\nYB9jiG+3OIEInB1ld8bGhXC3vtIfLc9c9LhX/OKUwmLChkm7yve19WGYs8Zo\nSRlF7QIW1x0XIKB4lzZG1fgRtaDVNOJOvZP4MahBBAySst5LsX+UvHmffOa9\nBFfcZqNrQuFp6VkdZBzf4yBNxO2DPegFJUhFaYj5bmKiH1CoLSXNC/QwEn1Y\n91Rku5s4PxcM/XFYBkLz5XMtqg4c6GjHWmkXdliaPzpeG2/KarV+1JIDGClW\nktCbphW5R2JeLiRo+5xax8dYah85DKMPdFplOyV97wPHJkjS1fuX2eOY5JLU\nVNgh\r\n=NGuN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDugyXl2Nir4fySZt2YhV1kuB9aicsJSt372Y/9o5uk9gIgKA2OEnaQrqqTkBJxjW5x7QEQmR0S0OfbQXizevPX0i8="}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_5.0.0_1531803161363_0.0034439661613496764"},"_hasShrinkwrap":false},"5.1.0":{"name":"webpack-stream","version":"5.1.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","supports-color":"^5.3.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.7.0"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"9549a0235e2fa10242deb13b6a918806fce48879","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@5.1.0","_npmVersion":"6.2.0","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-gBNPmvOaR7J4QAFu24UjB/Axf7E9K629d1o/z9PDGR1Rauzd9FC/bu51A7hn+FtOi52btU8n4GOsgwGAFP+E+A==","shasum":"98bd7e3994ce820ff6c328be9cfad74a091a5f79","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-5.1.0.tgz","fileCount":3,"unpackedSize":16198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX0qPCRA9TVsSAnZWagAAICAP+QD/i+LhlVwUhufvZCX3\nxH8kvkQHbvULUeJXh4nIT4bTgcItOl4FlEHf267xYjXUxoRVJabus7fcy8yf\nXy5d/LeMSNYkUp7oAC/K700CRqC8WFXSEDpzVuMNvHBJuRmGP/BVrMTORkzZ\nb4EktmpgompwAZUr+NpoqovdZL+V7b6AiFN3VtIdtzAXpelB6Ei5iXeeo2ey\nkmpuWGGZ3KsuVrlRDK6acs5WXoeDZAc4MlR7RbGals477DeU5c4FEB6ttNjl\nnBIhmZH6Vi40VMMIACbwRy33bgh4eb5jGgVSQno9UPi5CYoK7Cs01jX+FTDF\nwSoS4oAvSBT3Bg8ecDc8q4HdRgaDFUTTmo8qoXL9c6I4+N50k5dNSeFIu98z\nm4JjpFpmi2DfpzEHoHKrG4JEf3VvcrmvELflYogGi3wXJq/j4N4eUrNUX7Yv\nGogSeJJLizYgcJE9Nd1OKqyjF/aBBgBTesnJknGlQ/6D+/pIgv8foLACRDEK\n0qZ9Z6fNMUUM1brQf5ODbg9xO5r4cVzBy2K0x1J9mwgZPTckjrqbKD27MH8q\npZaOgGcfhlT41AneTufKsR8YZIzk/M1jXq5WUGtKjsOKmk9546WFAvBBqCdu\nKrW+NmYQI3JoxvlmIQI2+OQMYDY/X7FSP9l6T58ms/uLKb6lRwDPvnSVIh/O\n/par\r\n=SsSh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDU5yjT3hBv99TQL013uxJPXebYDxbg78L/lVH6gpbeoQIhAJ0AoBjpBs5AF2vtbQVq3tOXDYoWOa3m0SnGsQkN2jTk"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_5.1.0_1532971663835_0.3705554284713928"},"_hasShrinkwrap":false},"5.1.1":{"name":"webpack-stream","version":"5.1.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"files":["index.js"],"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.2","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","supports-color":"^5.3.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.7.0"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^12.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"42baa2373c1cba12594b3a087fce6a1f5c51f809","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@5.1.1","_npmVersion":"6.2.0","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-Q6Wn8brjTGGWIobttGPt3JQzBkGgipqXSnkP8/+dJWHMG9DDSu3PGfctUo3Fp6asBGu+Vrb/g1qnvTGQECobOQ==","shasum":"15b1d91da6887a37f6832128383ae0282bd7d0e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-5.1.1.tgz","fileCount":3,"unpackedSize":15947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaboGCRA9TVsSAnZWagAAQcgP/3KMsXAKG2kpsDWxBgt6\nSjov/cB4shKii4JqqFSuotdwznvtknElIYbn/LcUa0ksJu6o8tuAaOUofmn4\noZIo+YPHcziILYPpChy+39cWt1MePBuv2rsjudthrtHOVPwmBhW11xM2Frj1\ng+7rpDxfx5dK5noJKaJIXNbZaUNEqS6iP9bq+bRMK95710p26DbfdwbR9pif\n5w6XG5zeLQSaEouY68yOfUcEkUbM3jjweO1Dk3ESctjRuhENiKGDseVvpjNb\nYBZk3y5s28youxNswZVeU/5B2edi90NvTL7YxzZJq4/bv5RXQHxCGPudkwnU\nRXP5iqn+2mFSWpKp62Q4JH47n9Yxq49zSO6WxoTAVl16FoWYRSjPyhkQG8vJ\nh71Tj8jQUQyNaT/iJsW/uc3UrtGfWf7dnuvL6OxrXPkVUIgMTPRPHi8Z6WpS\nEbZsc6bHHhCMjjSCD0nzigkfwOvUFqy+CAnbHANtBjDpHK4upz5H0thFKOSd\ngtRpiZH4psd7rOvmeBTWBwQdVwvVxJVsXctT6LQbhrzA0QejujOuPdij3vYL\nFRuIyWCyvLvcOl2n6NxmCuoF2HiqH04OteinItRnW3eDvKjvGz3fPQkfGFfO\nXmz7dv+21n0Ea3dZrybXfPqszwEBFAVrKKr5MTFoF1HVoolyvKAdkcs0iaNI\nRBuq\r\n=TuLo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6XIt910i+3LskeC5rmuBng0ModecshoyXVniRouUo+gIhANefPiGupWgAyGEGqvO4oIobBw3/45HoQ2CNBalWxRMf"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_5.1.1_1533655495449_0.951649466969938"},"_hasShrinkwrap":false},"5.2.0":{"name":"webpack-stream","version":"5.2.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","supports-color":"^5.5.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^13.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"32150307028433760e5270a4f8a34f90a205cc20","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@5.2.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-5BS+rrq8iJUyS00ahe4ag8fzCCffymHmnxaL5HlBryFriecIRGmYXFdWLc1tCEPc78IIZEeypVFUeCokCXSqeg==","shasum":"0fa1b22f709119c6742ab8ea716e79e59e586c18","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-5.2.0.tgz","fileCount":3,"unpackedSize":16277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAzX/CRA9TVsSAnZWagAAEiQP/i8lEmsVCyI/jJXTYlWs\ncBDH0S9+tPHp7bZj887yg7FVke/e2/PsWIIFoxwpyLaAfunQk2YrhaO0o4Mb\nTzBfES8u+0cOjgk0mbB2NN8sIvX7qHNuwqf+hhU4ZOIODlJ+WYZ/OlG7i5Qh\n51bRzdePzbjqA+HEDfE64Gm5f7VuYl+7QOk5/9VnTrbTr9Ab4syLoDvTFq8L\n6sAR4Uh9ujros9JjXhMs2L4M/uzWZL9DYpD5lAQSghTVnsENdDC6OQFz4yYK\no2tOuf7KTCcu/bMxeb4+ZDdUthKhZBoA8YNplpfmPxaxw+RyOGX3N7iEfUQd\nz18NVRqNgq1WsCYqXhd96SWf4p9fb8ObmX4LWqznUxZct3rG1WRRC6jOnhkR\n3FIhMRxu1DEfqe4TEWB0srX9rCbxOFhfexoXZQhDGAtP2YhU/5QPhjRVjYo1\nAjOJWEVO57MHqZBADNYzzdKXfumnJnRQC8h0CRnXIlaDAHqXAkOE569Aapfr\niUfWBrdrIc3XK1fyEvYz5nAasmAm3MJvARPhrPaoenvNGlCIGYjWY94+knVW\nfW4XvwE0vrzZzD8ABGrNOdBZiVo0LeAYAVN/LmKSM2lgLTT6Ei/rcZVC1yoY\nmQ1db0Tt+LkVBhPXjsT2sQNqSPO5HH3n0IpXw8P0xqc+7p2ajw8jZ3H5htkM\nfiTN\r\n=9xMn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCT6/6JKGPSCHT5qRP+qTfMudTUeYiCn5rvo7RAXJkuvgIhAIB+FLCuGIIphcTd2wOvMOfSD/X4EolnzdnK0v45GhUB"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_5.2.0_1543714302996_0.2221772483091704"},"_hasShrinkwrap":false},"5.2.1":{"name":"webpack-stream","version":"5.2.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.4.1","plugin-error":"^1.0.1","supports-color":"^5.5.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^3.9.0","rimraf":"^2.4.4","semistandard":"^13.0.1","tape":"^4.9.0","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"fa9a5b24d056cf99ddc2ee8e79b7390c294209a0","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@5.2.1","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"dist":{"integrity":"sha512-WvyVU0K1/VB1NZ7JfsaemVdG0PXAQUqbjUNW4A58th4pULvKMQxG+y33HXTL02JvD56ko2Cub+E2NyPwrLBT/A==","shasum":"35c992161399fe8cad9c10d4a5c258f022629b39","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-5.2.1.tgz","fileCount":3,"unpackedSize":16335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBICYCRA9TVsSAnZWagAA9LoP/iawWA+Zh/92gSP/8M1I\nmU81kZ9FzkzHHyQBAxrHzyY0kL7lteazwc9Zr5Eo2UeRSe4ewBZ7veknBd7+\n9ObNuNLsQ5wFfLo3ZBpqqIPbo+ltyOU6Ap+nNQCQkqEFYGHPfDcR+fP9e164\nDJrHTz5Q85R+Vwr/QzHLoJqjhjr0T3WGlucm5QdexkKaikVnBQ0ZsUDFn+BF\n3F63U2c1u088cRbvrexiLKI1CDd3n/J/7XU+cquOvRlrrYXQkL1qoqo8hIPT\nSAoJJIXXegO0iIcH/F0gFIvSIruXxQclN9TLwUjmChtQNbk02K2co+9rBnuv\nX4z/qBX7q9/K2Ypnk5RJaTnK9t8qaYaGWvLN8hsM4BbrLrAmlTWEvqVQrbpo\nok3Y09k+t3F/daBSIDIRspLQ4EJ//Gk0aWhCMHpk+YOOP/3lM8WmCtLKHz9k\nTu4RVFNvDcl7Bkxr5Cbv46CqHV039Wkv0GHoXuvZzzTAcrBgNNltqf7jmtpK\nxTah1zTQxZxZoIj/eKK/DNXyFUHj46M8kh6Mo++rgeY75W92q5p603zNqbn4\nOQBEO2IrjWGb8U3WJPZvLgywoJdzleL7wr5KrTsBAbCPCLVv92QphGpRFCc9\nco+EBj/OMilpDz8V3Chec8Qsci+ztuBb6EtmWv7rmTiJRoqbDXhE/iPik5Kk\nL7qf\r\n=Z0Tx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuwKp3me3wX9+zwc4OmvpkN+Fcfr1lUUCF2b92zo2nrQIhAJil/x8+UcfasLZM0B4SBeTzEKDruS7YzoJzFqWQTDqn"}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_5.2.1_1543798935509_0.7253154925927197"},"_hasShrinkwrap":false},"6.0.0":{"name":"webpack-stream","version":"6.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 6.11.5"},"scripts":{"test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.5.0","plugin-error":"^1.0.1","supports-color":"^7.1.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^4.0.2","rimraf":"^3.0.2","semistandard":"^14.2.3","tape":"^5.0.1","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"15b4b29b89e7786edfd987cc9889cdfc48337ec4","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@6.0.0","_nodeVersion":"12.12.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-bYv7apmGB1j0JBpa5Fgyky/1mWyzHOnUPXv+RmkgpK4FXPWCMBspgnYFmhE7Ly68JSp77eonFzm6WArWy4afpQ==","shasum":"0524b739a3c3a487362ee2e97522d0b8d366a510","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-6.0.0.tgz","fileCount":3,"unpackedSize":16251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfR/X9CRA9TVsSAnZWagAAl60QAI9pevr4ojvAv2J5eBaw\nkOPlIVszerZuJc49Cr3e1EW+H80rPS/Ou2bFByV1sCoeIdBi67MbN+CNfGg2\nL3LaoYsM+CK6IddOb+xlrimeW4JB0x1bxYxRETy2fkUkOl8z12H8wuWH+Nf8\nGGSAldLKDKIY4ql6SlU2qJiH6UUygTo70gl+x5oppM7FqYDqIrsp/8bsthtn\ni59U8wCf7MVtXGyzmqolRCjafbYrymgaKiTm2qtBRIbLxeykqpg7ytzOflGt\nbxnlzyt4tuSWzdRjvf1p4acc2xBkaltukPIjxuECnIq30SAfQZzryHrZ6gwe\n2lEjcLUUQJ0mnwxe9xA6F4vx351GZJGcpw0n2Y+r5LJBhUnXv6k2nIrD60jT\nsibE1prsVZKrwuxydOpYwWQa9oGTkJAiY8ufbybvp3ZUPKEXJvHBb2xx36EB\nCDy9g8gOQ+khutNynWpioMayblbHD5nyjTN99XVX02iZmaZxA7JRDAlo9pes\nJfudBnOWKhG9eky7HYqKQ7f+dCe8+CKbfUSjzFkTqAU6W1JWg+fabRk4B9xn\nqjZblozt813tqzGgv3/mpTlitoHHj80j4dhPtnSYaXlO3cOxObuxoKxafWAK\njyUEcKr3zClhDqeBYkYgal+2TvTl5C0htq6acCI8wkHPPeu/eXShf1dCrOCU\nTsbV\r\n=Z5Fp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFlUI+BKswnvztqMw3X9JqFttRBp46nyWkTb+1L5/jWgIgZZSqTx35CKG1S+24PRAPb4FOOF52JdJuuHXhtcF0oA4="}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_6.0.0_1598551549247_0.9175444181097179"},"_hasShrinkwrap":false},"6.1.0":{"name":"webpack-stream","version":"6.1.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 8.0.0"},"scripts":{"test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.5.0","plugin-error":"^1.0.1","supports-color":"^7.2.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^4.0.2","rimraf":"^3.0.2","semistandard":"^14.2.3","tape":"^5.0.1","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"54ecead7cefc2d45fea55ede53a0f58eb66c02c3","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@6.1.0","_nodeVersion":"12.12.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-kFMnDzFTzyvVmn4ajaj0xEJavvYizd3I/KmQ6C5aUstcAkNwZUidxkk/uEaEPSydaAn66v8ZcP1+bhKSshNJUQ==","shasum":"047348e36793432f329c7b5ff13e6e9b6872c152","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-6.1.0.tgz","fileCount":3,"unpackedSize":16107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTo0HCRA9TVsSAnZWagAA17UQAJEGsnjnrBpTZKztEZ9T\npbWDDwov57YF4gTOHU4Y3PYpZt59W/dUfaQ/RT4RDjd8uUT9sDscpgh087Jf\nNXMXzXLf8/MbG/7VHvIWDVAG+ZDNMb8dxuZhDueql41jI5jyqdA1o/RJNIJ/\nmjfdoFkpBrrc8oM4lkYpdZj2sbe8V/70Pz377cnEpcELT7LjwF5TD9NRqBtI\n4CY+/wM3lvanWiC3qYl5bWNQDmqyLwxKgRUdIX/iY8Fk6Js0NEt/Q2N67jA4\nP9PHitkEZ1BIVZPe+F1blod9PExNSSNDLAMuDArUkg+QQpkLPcvDXl3vqN18\nADFFCiQa5BLgUtFS5fzyuP9aljZPi7ObsblM/GRDSmzXkTECtt5Wlh8SX8Pl\n4pMyWAf30djjEghWA9nR/KGv2UkzeoEpVnC4dgeV3dDKIBgHeavMF9EHa2JW\nCuW2uu/97H9iD1wG7Y7vrZMorTKjWCLAMly7lYbAbu/PB3Lp1CFS2FxkXK1a\n6zI2ch/SU8uHJYv6GYYc+xxl1O9cZnJhegEGO3uesdGpeY2z6VZ1EKr6HU8/\nIsDspFatdl8U5hAUmwJl/Zd4TcjasWe27+1WpCZM/Z744hrNZVX2BmND6Eg7\n3R7h9NuHsbxK362/vCzgFBkAp+QUsmkH69qx0OLqiNBOMqxXtUZx6uiNDnXo\n29YA\r\n=Pgp6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIET6oeFWHERTF6VbDDCCTmHp2EkmiOrY9gLa3v9eRGQgAiB/YyYG1+ZJeplbS1zt2Dl0By95r7FY5Cw8NJ0pa6rDSQ=="}]},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_6.1.0_1598983430606_0.02146870109083876"},"_hasShrinkwrap":false},"6.1.1":{"name":"webpack-stream","version":"6.1.1","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 8.0.0"},"scripts":{"test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.5.0","plugin-error":"^1.0.1","supports-color":"^7.2.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^4.0.2","rimraf":"^3.0.2","semistandard":"^14.2.3","tape":"^5.0.1","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"7e346b5e7810e7742c1d290f3fc534ea4a357970","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@6.1.1","_nodeVersion":"12.12.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-XRd4ydP5H43twoLfh541VRtEg0ig/GJQnR0D3npjSOhjHsAUaYDEFoAUZwH+tfWSHyp6OyVJPYHRPmRoyCDYBA==","shasum":"8db6b1efdbebf796b1e30ac1256645f4a3cf5867","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-6.1.1.tgz","fileCount":3,"unpackedSize":16762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsLy/CRA9TVsSAnZWagAAKQEQAJSGRgEtZDqG+4BQiAkv\nZaSw5RIrpdm554hNyvo97HIX4bZVVeWKOtUvBgFYqWhpOE6fdBDFIaV/sRJO\n+iJd1W83ZefhYpXGefwt/Mavp9EA83NcdbGPFB/TVPOG6vKA1RtMZrpa4uAX\nMF/trZjXLw+u8YYAT0i0WGfnAb18ZQUMrGdpNepM2I0nkSIrLM7Puw9kk81I\nSHhGsfjxUBEASAHAE1Mr6YkA1pCFf1kbHFzau8LsTpkBzJMHs+bx8qPSqLdm\nKZIFTJooM9/Zj4QmoqgCyCiWorZEZZBCf2TS7XFEKD5UhwNBM3Dz5ku5IOwF\nd2ZHoK3v4zPcvS0OAA7gg+E/654NbjC17kXOQRY/YPOPw1DS+vEqOZAtl5pP\nR9Dpcbq517QvMrSja8Cq4Zsg3pzXYt9rAyvhg51NfVdU5V0zQS6g4LGWoYbH\n5sE/mKR+pDYKAr7gHdRLhqe58HkFQzvpv6KQqYUwYOyDrDUWewWdtp0H6TUj\nSW3e7GFoVw+aliQw6CgCrO2+k5xRooMnEnudDybrqbI5KtTWOpRse89YZi7f\n1aquUv7jcYBjxMuw/dpvAFWTsKqZG+oWymZqVLkuBL0p1qaRMyzpAQ3TIZ27\n7ysvt9BgYeXCKCb+VCzjJrWYVD6T4RwCd86oUSDwwvoatqkRGkWSGNE7a6Qx\nVOYL\r\n=s21q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBy6S9O32VRSiYi7BlhglfkCdN/VNd2TpTGSUS3hWobXAiEAkvZy7TD5CKknmwoHThC/VaNVTKBm3+ccegLSjbAjWOo="}]},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_6.1.1_1605418174687_0.17299109697633197"},"_hasShrinkwrap":false},"6.1.2":{"name":"webpack-stream","version":"6.1.2","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 8.0.0"},"scripts":{"start":"gulp","debug":"node --inspect-brk ./node_modules/.bin/gulp","test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.5.0","plugin-error":"^1.0.1","supports-color":"^7.2.0","through":"^2.3.8","vinyl":"^2.1.0","webpack":"^4.26.1"},"devDependencies":{"gulp":"^4.0.2","rimraf":"^3.0.2","semistandard":"^14.2.3","tape":"^5.0.1","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"e9c94fc692832866ea5ef8a160b7af996715d507","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@6.1.2","_nodeVersion":"14.15.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-Bpbsrix1cmWRN705JEg69ErgNAEOpQBvtuWKFW3ZCrLddoPPK6oVpQn4svxNdfedqMLlWA3GLOLvw4c7u63GqA==","shasum":"ee90bc07d0ff937239d75ed22aa728072c9e7ee1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-6.1.2.tgz","fileCount":3,"unpackedSize":16835,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDyWSCRA9TVsSAnZWagAAZ9oP/jIlm1vZgWb6IBuJJZl2\nNB+qv+Iz+XtgIhMfXnQ9ZZBJa55b/It6HT56DbbumC4sXgOpXruQXnyJVgmf\nep13btd0yrTkytHwOX8zAEFD3p4nsVURtO9PcJYqfDvG2jNLRsZj+PhlqhYX\nUr9v8ERQ8reecHqRs6PdFRyD+Gj8zDeA+tMfvFvdUAqna62BMOeyN5vCg7oh\nNUkgfKRZWhyTb/dJxlTZ6TuKmDjaglWmORvcVd9ehWPM1eKnacxNPxjTHQjZ\niBrZsecNIFNH3iUj/2rHtnDhRi19zqVsMJjFBcaVJfQiYd2QZxQU62Uw5Sre\n4CZky7YBZ39o5hNkLnvBi/5RN2qjsKHGGyUIpAfiYlZhuXEiUmgEhY4gT3B2\nYAUWFdMfHfUajIojn5+Pwslek3+pA42ECp87dguwy4kUblLTg2nUM9pgVKsn\nxfswM1OIB6x/LewkIZHT3XwjMiAiZqar+o8sI3oedU6AvHfydgN13fNBDZdW\navjl1Vh28ruYtTRJkJspoqqB4C9A58n/0qbgImUo+UElTrwl8Y5mra+Cfr3c\nFb4SPsdPwy8spCmsnQxmplY8k4st0NtnrNtaQw22ltBK0I92/zWBVjkffRYZ\n8oSyiUXWiamSA2zUSpCXfQriKt38ynAkksdJDZviif+0oooVfIm6Awbc4cGG\nTeGb\r\n=Uwfl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBPpWJ9/j9tNOrdBMrsuHjqgx+rMtE80GueLa87EBU3rAiB8E4+9UaMSMCvF1MwGHWJIaqM5JA0z/1CIBZ3RXmEE9Q=="}]},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_6.1.2_1611605393469_0.2421900024283672"},"_hasShrinkwrap":false},"7.0.0":{"name":"webpack-stream","version":"7.0.0","description":"Run webpack as a stream","license":"MIT","homepage":"https://github.com/shama/webpack-stream","repository":{"type":"git","url":"git+https://github.com/shama/webpack-stream.git"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"engines":{"node":">= 10.0.0"},"scripts":{"start":"gulp","debug":"node --inspect-brk ./node_modules/.bin/gulp","test":"semistandard && node test/test.js"},"semistandard":{"ignore":["test/fixtures","examples"]},"dependencies":{"fancy-log":"^1.3.3","lodash.clone":"^4.3.2","lodash.some":"^4.2.2","memory-fs":"^0.5.0","plugin-error":"^1.0.1","supports-color":"^8.1.1","through":"^2.3.8","vinyl":"^2.2.1"},"devDependencies":{"gulp":"^4.0.2","rimraf":"^3.0.2","semistandard":"^16.0.1","tape":"^5.3.1","vinyl-fs":"^3.0.2","vinyl-named":"^1.1.0","webpack":"^5.21.2"},"peerDependencies":{"webpack":"^5.21.2"},"keywords":["gulpplugin","webpack","stream"],"gitHead":"30a6da02662ae1cf719e2b060a85c17a74f6cbbe","bugs":{"url":"https://github.com/shama/webpack-stream/issues"},"_id":"webpack-stream@7.0.0","_nodeVersion":"12.22.5","_npmVersion":"6.14.5","dist":{"integrity":"sha512-XoAQTHyCaYMo6TS7Atv1HYhtmBgKiVLONJbzLBl2V3eibXQ2IT/MCRM841RW/r3vToKD5ivrTJFWgd/ghoxoRg==","shasum":"e6a1edb9568198499af872678e95031752d72f00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/webpack-stream/-/webpack-stream-7.0.0.tgz","fileCount":3,"unpackedSize":17381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhLaFgCRA9TVsSAnZWagAAnOoP/3ymUxgRSlbOQQ0wRbyA\ni7Cy6TOsyelZkFwammU4YMaFpuiLUPMY7uEOfM7w7Z0F8KhXKwVVa0s5pd9u\nlRCl1srw55Zu6Xl0AiO12N5GhmkbaRg+Jms35rwzEO0fhgINr0UZFeM3cpPq\nfMJ9ysKDdyePqmUWGghARq+hs9uQmAXCwQnfLGtVluPlx2ixjD/1B7ctYV1N\ndC0zaOhozYT/mJTcjJ3pMfAuu3xr3lPnHd6O/bNCf+wE3HND0qNwtgtLL3zF\nf312vvQxhVupEtijubhFHf0iuwYqlo8O6+nH16XBSj12bMKLMTrDsd7oaJFi\nfcLWuNRU7zVswqSQflwi0VxJ77zjxTrPlHckqEPrf0zq6Ty0wnV4hv6tO07C\nku2IIwT9DVeCAC0tF2DCkVOBZ9Eq9FxlN3AlWJv3jCijc59+LV7J30MOv3Gf\n+8IXNTbxUfa5Kibdlc7AaDUV78EFFjII4bij039wMStSqAFWawrgxk0Ic9WW\nUdVOPWkZeZkLWU4DegfcIEbl9UoJKLs+GDvA+hwX82yR+cjv+CTirv5eeQHy\nCOYGsogez/qXeSM84Fs8HbPW4WnWYqUVm5jnjVhTtFrEhYg/+ljzHzHvVwgp\nG/QVv4Im2ODfwwWVEq/gjwKz6CMqsbVj+FTS3L/YyjBmyRad+4QhDEAhTSw7\nMNWV\r\n=C9Kb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBEVLu35hn7XhqXKlRpJcRR/41zK4maF3/HAL8Hs31h+AiAqGa7YN/C6E10goEWQ61eXOmEUERJ56HZ2zD56194QqQ=="}]},"_npmUser":{"name":"anonymous","email":"kyle@dontkry.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"kyle@dontkry.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-stream_7.0.0_1630380384579_0.3909945301810702"},"_hasShrinkwrap":false}},"name":"webpack-stream","time":{"modified":"2022-06-29T00:10:05.118Z","created":"2015-06-09T21:39:42.490Z","2.0.0":"2015-06-09T21:39:42.490Z","2.1.0":"2015-07-29T21:43:20.216Z","2.1.1":"2015-09-28T18:33:32.953Z","2.2.0":"2015-11-25T17:41:46.097Z","2.3.0":"2015-12-03T04:48:47.073Z","3.0.0":"2015-12-10T20:41:51.400Z","3.0.1":"2015-12-11T17:17:01.601Z","3.1.0":"2015-12-14T18:47:33.746Z","3.2.0":"2016-04-22T04:48:39.513Z","4.0.0":"2017-08-07T16:17:41.052Z","4.0.1":"2018-02-10T18:01:15.007Z","4.0.2":"2018-02-21T15:05:18.002Z","4.0.3":"2018-03-24T17:45:39.842Z","5.0.0":"2018-07-17T04:52:41.442Z","5.1.0":"2018-07-30T17:27:43.879Z","5.1.1":"2018-08-07T15:25:47.276Z","5.2.0":"2018-12-02T01:31:43.119Z","5.2.1":"2018-12-03T01:02:15.597Z","6.0.0":"2020-08-27T18:05:49.361Z","6.1.0":"2020-09-01T18:03:50.754Z","6.1.1":"2020-11-15T05:29:34.840Z","6.1.2":"2021-01-25T20:09:53.616Z","7.0.0":"2021-08-31T03:26:24.731Z"},"readmeFilename":"readme.md","homepage":"https://github.com/shama/webpack-stream"}