{"_id":"koa-webpack","_rev":"53-3df9d579dc10f934c19fe1ce748e795b","name":"koa-webpack","time":{"modified":"2022-06-19T09:32:10.072Z","created":"2015-09-04T19:10:25.971Z","0.1.0":"2015-09-04T19:10:25.971Z","0.0.1":"2016-10-20T16:01:46.714Z","0.1.1":"2016-10-21T17:01:51.819Z","0.1.6":"2016-10-26T13:26:58.372Z","0.1.7-test":"2016-10-27T21:44:22.729Z","0.1.7-test2":"2016-10-28T18:50:27.681Z","0.1.7":"2016-10-31T16:08:05.877Z","0.1.8":"2016-11-05T02:19:39.846Z","0.1.9":"2016-11-09T13:13:35.072Z","0.1.10":"2016-12-03T14:02:56.856Z","0.2.0":"2017-01-19T19:53:10.366Z","0.2.1":"2017-01-30T14:17:33.012Z","0.2.2":"2017-02-17T13:43:49.033Z","0.3.0":"2017-02-19T05:03:17.345Z","0.3.1":"2017-02-23T22:32:20.432Z","0.4.0":"2017-05-04T12:44:58.270Z","0.5.0":"2017-05-14T01:38:59.591Z","0.5.1":"2017-05-14T23:43:20.229Z","0.6.0":"2017-07-10T12:40:35.868Z","1.0.0":"2017-07-31T14:04:11.280Z","1.1.0":"2017-12-30T03:24:11.252Z","2.0.0":"2018-01-07T06:41:16.726Z","2.0.1":"2018-01-07T16:42:34.191Z","2.0.2":"2018-01-07T17:42:43.130Z","2.0.3":"2018-01-07T22:12:15.096Z","3.0.0":"2018-02-28T22:59:58.537Z","3.0.1":"2018-03-07T13:06:26.990Z","3.0.2":"2018-03-09T13:12:20.100Z","4.0.0":"2018-05-13T11:43:34.989Z","5.0.0":"2018-06-02T18:02:13.177Z","5.0.1":"2018-06-02T18:20:07.947Z","5.0.2":"2018-06-03T05:15:53.234Z","5.1.0-beta.1":"2018-07-06T01:32:35.893Z","5.1.0":"2018-07-09T12:07:11.000Z","5.1.1":"2018-11-04T18:36:20.662Z","5.2.0":"2019-01-08T13:20:39.681Z","5.2.1":"2019-01-08T13:28:40.306Z","5.2.2":"2019-03-08T15:01:44.779Z","5.2.3":"2019-05-04T19:25:45.921Z","5.2.4":"2019-07-15T19:52:39.054Z","5.2.5":"2020-01-21T20:39:13.555Z","5.3.0":"2020-01-28T14:13:21.462Z","6.0.0":"2020-08-19T13:20:42.507Z"},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"dist-tags":{"latest":"6.0.0","test":"0.1.7-test2","beta":"5.1.0-beta.1"},"description":"Development and Hot Reload Middleware for Koa2","readme":"[tests]: \thttps://img.shields.io/circleci/project/github/shellscape/koa-webpack.svg\n[tests-url]: https://circleci.com/gh/shellscape/koa-webpack\n\n[cover]: https://codecov.io/gh/shellscape/koa-webpack/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/shellscape/koa-webpack\n\n[size]: https://packagephobia.now.sh/badge?p=koa-webpack\n[size-url]: https://packagephobia.now.sh/result?p=koa-webpack\n\n# koa-webpack\n\n[![tests][tests]][tests-url]\n[![cover][cover]][cover-url]\n[![size][size]][size-url]\n\nDevelopment and Hot Module Reload Middleware for **Koa2**, in a single\nmiddleware module.\n\nThis module wraps and composes\n[`webpack-dev-middleware`](https://github.com/webpack/webpack-dev-middleware) and\n[`webpack-hot-client`](https://github.com/shellscape/webpack-hot-client)\ninto a single middleware module, allowing for quick and concise implementation.\n\nAs an added bonus, it'll also use the installed `webpack` module from your project,\nand the `webpack.config.js` file in the root of your project, automagically, should\nyou choose to let it. This negates the need for all of the repetitive setup and\nconfig that you get with `koa-webpack-middleware`.\n\n## Install\n\nUsing npm:\n\n```console\nnpm install koa-webpack --save-dev\n```\n\n<a href=\"https://www.patreon.com/shellscape\">\n  <img src=\"https://c5.patreon.com/external/logo/become_a_patron_button@2x.png\" width=\"160\">\n</a>\n\n## Requirements\n\n`koa-webpack` is an evergreen module. 🌲 This module requires an [Active LTS](https://github.com/nodejs/Release) Node version (v8.0.0+ or v10.0.0+), and Webpack v4.0.0+.\n\n## Usage\n\n```js\nconst Koa = require('koa');\nconst koaWebpack = require('koa-webpack');\n\nconst app = new Koa();\nconst options = { .. };\nconst middleware = await koaWebpack(options);\n\napp.use(middleware);\n```\n\n## API\n\n### koaWebpack([options])\n\nReturns a `Promise` which resolves the server `middleware` containing the\nfollowing additional properties:\n\n- `close(callback)` *(Function)* - Closes both the instance of `webpack-dev-middleware`\nand `webpack-hot-client`. Accepts a single `Function` callback parameter that is\nexecuted when complete.\n- `hotClient` *(Object)* - An instance of `webpack-hot-client`.\n- `devMiddleware` *(Object)* - An instance of `webpack-dev-middleware`\n\n## Options\n\nThe middleware accepts an `options` Object, which can contain options for the\n`webpack-dev-middleware` and `webpack-hot-client` bundled with this module.\nThe following is a property reference for the Object:\n\n### compiler\n\nType: `Object`  \n`optional`\n\nShould you rather that the middleware use an instance of `webpack` that you've\nalready init'd [with webpack config], you can pass it to the middleware using\nthis option.\n\nExample:\n\n```js\nconst webpack = require('webpack');\nconst config = require('./webpack.config.js');\nconst koaWebpack = require('koa-webpack');\n\nconst compiler = webpack(config);\nconst middleware = await koaWebpack({ compiler });\n\napp.use(middleware);\n```\n\n### config\n\nType: `Object`\n\nShould you rather that the middleware use an instance of webpack configuration\nthat you've already required/imported, you can pass it to the middleware using\nthis option.\n\nExample:\n\n```js\nconst koaWebpack = require('koa-webpack');\nconst config = require('./webpack.config.js');\n\nconst middleware = await koaWebpack({ config });\n\napp.use(middleware);\n```\n\n### configPath\n\nType: `String`\n\nAllows you to specify the absolute path to the Webpack config file to be used.\n\nExample:\n\n```js\nconst path = require('path');\nconst koaWebpack = require('koa-webpack');\n\n// The Webpack config file would be at \"./client/webpack.config.js\".\nconst middleware = await koaWebpack({\n  configPath: path.join(__dirname, 'client', 'webpack.config.js')\n});\n\napp.use(middleware);\n```\n\n### devMiddleware\n\nType: `Object`\n\nThe `devMiddleware` property should contain options for `webpack-dev-middleware`, a list of\nwhich is available at [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware).\nOmitting this property will result in `webpack-dev-middleware` using its default\noptions.\n\n### hotClient\n\nType: `Object|Boolean`\n\nThe `hotClient` property should contain options for `webpack-hot-client`, a list of\nwhich is available at [webpack-hot-client](https://github.com/webpack-contrib/webpack-hot-client).\nOmitting this property will result in `webpack-hot-client` using its default\noptions.\n\nAs of `v3.0.1` setting this to `false` will completely disable `webpack-hot-client`\nand all automatic Hot Module Replacement functionality.\n\n## Using with koa-compress\n\nWhen using `koa-webpack` with [koa-compress](https://github.com/koajs/compress),\nyou may experience issues with saving files and hot module reload. Please review\n[this issue](https://github.com/shellscape/koa-webpack/issues/36#issuecomment-289565573)\nfor more information and a workaround.\n\n## Server-Side-Rendering\n\nWhen `serverSideRender` is set to true in `config.devMiddleware`, `webpackStats` is\naccessible from `ctx.state.webpackStats`.\n\n```js\napp.use(async (ctx, next) => {\n  const assetsByChunkName = ctx.state.webpackStats.toJson().assetsByChunkName;\n  // do something with assetsByChunkName\n})\n```\n\nFor more details please refer to:\n[webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware#server-side-rendering)\n\n\n## Using with html-webpack-plugin\n\nWhen using with html-webpack-plugin, you can access dev-middleware in-memory filesystem to serve index.html file:\n\n```js\nconst middleware = await koaWebpack({ config });\n\napp.use(middleware);\n\napp.use(async (ctx) => {\n  const filename = path.resolve(webpackConfig.output.path, 'index.html')\n  ctx.response.type = 'html'\n  ctx.response.body = middleware.devMiddleware.fileSystem.createReadStream(filename)\n});\n```\n\n## Contributing\n\nPlease take a moment to read our contributing guidelines if you haven't yet done so.\n\n#### [CONTRIBUTING](./.github/CONTRIBUTING.md)\n\n## Attribution\n\nThis module started as a fork of\n[`koa-webpack-middleware`](https://github.com/leecade/koa-webpack-middleware)\n\n## License\n\n#### [MPL](./LICENSE)\n","versions":{"0.0.1":{"name":"koa-webpack","version":"0.0.1","description":"Development and Hot Reload Middleware for Koa2","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"webpack":"^2.1.0-beta.25"},"gitHead":"8055450666152aa5cf03acb304045b69774f2935","_id":"koa-webpack@0.0.1","_shasum":"e4b720eab0cac74de454c391a73478c10175dcc9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"e4b720eab0cac74de454c391a73478c10175dcc9","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.0.1.tgz","integrity":"sha512-vzajuf4AC33cDFYo8clHvtvs7Y4A6i59R8PyJaK0AkKQh3v+jnqOU2Xd3xZzS3nKy50pzU1SOhlxImUowP42OA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAoGHpODrhsTTtZTt1jzovam3ax47r4DIlBiRdDOlX5gIgL+lXzirlWxUG3hfKcuaoB8IGMzAEAqMj2TZ0HWzbqJM="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.0.1.tgz_1476979306077_0.9667377916630358"},"directories":{}},"0.1.1":{"name":"koa-webpack","version":"0.1.1","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"25260f7554bb708de33933b7defbd1bc52d08641","_id":"koa-webpack@0.1.1","_shasum":"5f4f7a34c66d9e9a37e23fae682de3c652f4bb94","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"5f4f7a34c66d9e9a37e23fae682de3c652f4bb94","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.1.tgz","integrity":"sha512-YmqmY3W9I+awFB9B6xxenl9NcY03BGd3Vp1kKHIIJWcrSyVvB0GTH/2v82Tk9Z74jIkhF92xwed25Yf0HLcTzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDX5MYxD6YJ0ZEmV51BzcwP/+Qf5cqUF1y5h4NK2f9XmwIgIFihww5iaD6FIYfZb1Eg4nSe9w6LhkSKWfpIZRZW62I="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.1.tgz_1477069309811_0.43236322910524905"},"directories":{}},"0.1.6":{"name":"koa-webpack","version":"0.1.6","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"005be1f6f6a569644916127f2c6bbd369408015e","_id":"koa-webpack@0.1.6","_shasum":"84e4a9bb28412021d4ecd181f5972ad25b33c257","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"84e4a9bb28412021d4ecd181f5972ad25b33c257","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.6.tgz","integrity":"sha512-Jw08EAIoHZ2IqH9SzKVTZCGVIp2kjXxtJ9IwVE1cVpWv5PCso+SVXK/aghYtJoCNEUUzot79bVtQbgTBJrSwvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD5ZhWyk1oVujvbYb44xtIO7nBawZ77uzKIO78r3H/H3AIgP44hkFa+Sw7bY0uuFoqy0HP0J+ajPEuhNucPyEuK35I="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.6.tgz_1477488416350_0.3484601608943194"},"directories":{}},"0.1.7-test":{"name":"koa-webpack","version":"0.1.7-test","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"5fc464925c33b3b45cb537cfe2165cc42d8e1355","_id":"koa-webpack@0.1.7-test","_shasum":"cef2cf28afc3e0f4e95fcc877d54cb6eedeb707b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"cef2cf28afc3e0f4e95fcc877d54cb6eedeb707b","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.7-test.tgz","integrity":"sha512-xboHq10HOkz0BsCDeypY+GDkIXdNJsh8LCziJkSJaIT93/w4FevqoelXhd8ZKX7IDq2OaK+Tswwel5eYs8re1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFP7W3HfvfkC0saRT6Eu8TsyIf2D5ISlQXcnVTswef+2AiB3Dqxvj0V51wc7TCPOtx3gA6sKxwKz+Pd31CK/wmxyHQ=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.7-test.tgz_1477604660339_0.6421714909374714"},"directories":{}},"0.1.7-test2":{"name":"koa-webpack","version":"0.1.7-test2","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"5fc464925c33b3b45cb537cfe2165cc42d8e1355","_id":"koa-webpack@0.1.7-test2","_shasum":"0492d672d77f8f2423673ef7fd628e32035c0eff","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"0492d672d77f8f2423673ef7fd628e32035c0eff","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.7-test2.tgz","integrity":"sha512-jE2F8tZyTqTZ4I/2YtJKC4RwmcrreOzEnfwJ37YULDcb/7TPyV9TTWW/JcbQ1YFtGBzcEut58116v0x/pS07Ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgKtCYgHE7bltgC3sYIdDOoqbgAVdrqNrHHrHZbuQNoAIhAKlczCTx4zlvKIM+olEVbex3/FkWvL3ikQKtvmmNHB7w"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.7-test2.tgz_1477680625165_0.02934128697961569"},"directories":{}},"0.1.7":{"name":"koa-webpack","version":"0.1.7","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"54f2f54536c50523a75b66c73064e16c6531859c","_id":"koa-webpack@0.1.7","_shasum":"b1529b7f1da6f48eb1ea8d3b1f7769f84bb080d2","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"b1529b7f1da6f48eb1ea8d3b1f7769f84bb080d2","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.7.tgz","integrity":"sha512-l7H7iWrQ+Ndbw41HIA7eiIvXNISfq8ks2wfmPn58KoL7RADttN8tQuuVmK6prlcHiVrx7S4xwpJOFHIasTnsZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHHCKaNxc4jhun107SiuWvdbtNGMFahvFIvvyX7NqlV9AiEA3aEJzwYWkI5SzwulFDU5t0/pVfRMP73zr5j7OEzEZ0A="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.7.tgz_1477930083875_0.3585721233393997"},"directories":{}},"0.1.8":{"name":"koa-webpack","version":"0.1.8","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"d12c6058e70c81235f2941e116e9f62556a385cd","_id":"koa-webpack@0.1.8","_shasum":"08223d788112e1383eb079f31a911d367ec7325c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"08223d788112e1383eb079f31a911d367ec7325c","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.8.tgz","integrity":"sha512-HV6NYAZEfDeQ4gwUD7sWjAuYga6ncxfgRCAaMIhJwUQmc7kbNmVdRwTUJ0xkSr9wEfyFmqGYokXG1NKs2UmDgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQH/r1AsdkQXFqKeAZe5fdyjT514ipaKSOB+RYdJQTyAIgP9GxLQ0Ert5GHQdqhRFU5AnKh2gcXKv5IyE/CREshI4="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.8.tgz_1478312378066_0.1893824813887477"},"directories":{}},"0.1.9":{"name":"koa-webpack","version":"0.1.9","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"2.1.x"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.25"},"gitHead":"aa46f351a90488570aaebf3a712a97c611f068b3","_id":"koa-webpack@0.1.9","_shasum":"4f9401e95a0f6f3c1cf19b575ec0bf1ed445610c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"4f9401e95a0f6f3c1cf19b575ec0bf1ed445610c","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.9.tgz","integrity":"sha512-Ykz3dCN4iY27V/MgEEmIh+t8d1KxyILD79jL1dIo9jzlJWGSEzsmu2/fO+AkpknH3xcwMIDzl+j5ls1CvmvlXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBOM/da/Ivg20vPAQWSOZsE5j7zUk0KvYR486fD62hIeAiA8RgJHDngCUzwkcF84edqKlKXV6Lk3HCfV/5LnqliM0A=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.9.tgz_1478697213045_0.20811420772224665"},"directories":{}},"0.1.10":{"name":"koa-webpack","version":"0.1.10","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"~2.1.0-beta.27"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.1.0-beta.27"},"gitHead":"930f1d6b1e48cce6d026985d1e464db07255cfd8","_id":"koa-webpack@0.1.10","_shasum":"c3f076110a846b04601666fe6a5065d30d2841e1","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"c3f076110a846b04601666fe6a5065d30d2841e1","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.1.10.tgz","integrity":"sha512-tl7vUOr7TCXL9r4STJJ7OCIQxywogrqbxowYkaWC8oQyfwZ0pG+FTEl+7gTlXWvgt/EnLqGUcOevL7DWhSUlpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAI5psMtYqmjjT1pqhqB2uQYXOK2pbx9xtOxWkYErgi4AiATiWC8yXjRdZV6aH/lMycmpBnYJylLaYqvvxnID6U3MA=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.1.10.tgz_1480773776251_0.8511006594635546"},"directories":{}},"0.2.0":{"name":"koa-webpack","version":"0.2.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"~2.2.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.2.0"},"gitHead":"bbc0a074635f89340eae002e0c1bb0f8046f7092","_id":"koa-webpack@0.2.0","_shasum":"4f920e428c820627c9ed19f5143420c712393e6f","_from":".","_npmVersion":"4.1.1","_nodeVersion":"7.3.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"4f920e428c820627c9ed19f5143420c712393e6f","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.2.0.tgz","integrity":"sha512-AK97dN1me8RA4a4NCMsy7VL9tgOHUZI864RHO0Y9m6LhAU15+TouckHHcjkvPxh3KswS9aev9flAr3m3EBEHQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRBys/Fg4ceJR/sj43RgtildpaUvkZ4gT/+KE/4FyIlAIhALRz5L5WiDQvKtYX3iZBirdSCl4Vio+0yntUtwM5Cgpv"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.2.0.tgz_1484855588487_0.09380985936149955"},"directories":{}},"0.2.1":{"name":"koa-webpack","version":"0.2.1","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"~2.2.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.2.0"},"gitHead":"f0b0ce105e4c7421f66580f91909b73a3c7b0e69","_id":"koa-webpack@0.2.1","_shasum":"b08a40a32cddd12a79575f3019723d29c24fb2ec","_from":".","_npmVersion":"4.1.1","_nodeVersion":"7.3.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"b08a40a32cddd12a79575f3019723d29c24fb2ec","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.2.1.tgz","integrity":"sha512-d5uz4CZXXUkjt+z5FPawpXdiwORWIsrcKizRLY3YXy99XmtK4d+x4PGJcPYXn/g/q+TfnW6NVpQlQZnT30vKDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCWoBT+NKyfYQmc6CAh0lhfVW+RoYdce1Evd+85MS/DxwIhALzgb2kIMGvpSTMCvpO1XjeNucg6dLxjoiO+m2N1LYi1"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.2.1.tgz_1485785852294_0.14511797321029007"},"directories":{}},"0.2.2":{"name":"koa-webpack","version":"0.2.2","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"peerDependencies":{"webpack":"~2.2.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.2.0"},"gitHead":"c98708028dddc6430ac588352c8c06c12b7ae54e","_id":"koa-webpack@0.2.2","_shasum":"2ff055559aacc6d44206169627d4d9adadd6a67d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"2ff055559aacc6d44206169627d4d9adadd6a67d","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.2.2.tgz","integrity":"sha512-l7WJoym1jW203K1RHKKMnUUqXH5FqXSsX0g4MfVr45BmdHdmeXNu2yMn5qTg7kxIqAveHSXqfu753jJaCRivMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDgVgUD3GuKYS/SzOT0s8JVWATKF4+rehEFrBFJ17KwiAIgf2WM7egfo7K7wE2/b5bv1bHQ+2+ZEU7fILMVJs65pls="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.2.2.tgz_1487339027236_0.8957051034085453"},"directories":{}},"0.3.0":{"name":"koa-webpack","version":"0.3.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.2.0"},"gitHead":"9c1ca197cbc73e6139572468c50b1013c1e7a83d","_id":"koa-webpack@0.3.0","_shasum":"0536ef64b9ea893026e2da07470e3b0a9a2958ab","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"0536ef64b9ea893026e2da07470e3b0a9a2958ab","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.3.0.tgz","integrity":"sha512-kPvzgkmA7Hv64/S7PXdcelfhJ7mD3JkWnW5X9VIbrTW7XICGW7Tmk/IxA/ZY7Z3E8Yu6ySFUWXxFu49x9ICb8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEBqa39zLVaXSHqHPjVludMiGfu/WE/KsgVGOFjCUtxQIhANwYrEf4wfL0eIoOj+jS+E/M/w0+k5/TKHDDuT69C1qs"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.3.0.tgz_1487480595360_0.8890738331247121"},"directories":{}},"0.3.1":{"name":"koa-webpack","version":"0.3.1","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^3.1.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.2.0"},"gitHead":"3dd12c3d6e86f8fb30678a7b0bf26039bd4f410b","_id":"koa-webpack@0.3.1","_shasum":"4dbf35c01d8bb50f4939d8888e7a49952ade5884","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"4dbf35c01d8bb50f4939d8888e7a49952ade5884","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.3.1.tgz","integrity":"sha512-6JLv+ii3yKPjZYtCLFV2VzrsD05doGi2bW6A7UoWpJAAy6Q9pUGZzemusMZtf89SWe2jkcc5H4ej/JLgZh0M1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCchce4el/jYeS7i3WR1CgcGKKv/iiA0T6Y4lhxbX04YwIgIAdP7cy8B9bOphfxAnP28NdM9rMeSszl+4EHqSmufGU="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.3.1.tgz_1487889138625_0.2241180466953665"},"directories":{}},"0.4.0":{"name":"koa-webpack","version":"0.4.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","del":"^2.2.2","eslint":"^3.8.1","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","webpack":"^2.5.0"},"gitHead":"d10d083e7c744cd4607b6bb99b4cf058a4af291f","_id":"koa-webpack@0.4.0","_shasum":"95363be42cdb4c5e554d76682701b96c28154245","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"95363be42cdb4c5e554d76682701b96c28154245","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.4.0.tgz","integrity":"sha512-TWeshTKTrTedyeVOOvQjDgXvpzmFQFHTyGakJrgis+1w5yOKBokYsLB9rn6Maz2oLCdC4tPMNjEuufVt0XbB3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7FnGEbXEPlw2oz1po2GPJUf1PSk+EWyXdRMZXqmBtSwIgQlgtAQZz9N1r8hUzFuHFTbQ0d9no1sQdbRyxEt98SdI="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-webpack-0.4.0.tgz_1493901896832_0.6050247943494469"},"directories":{}},"0.5.0":{"name":"koa-webpack","version":"0.5.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"eslint index.js test/*.js && mocha --compilers=js:babel-register"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^1.3.2","del":"^2.2.2","eslint":"^3.8.1","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","koa":"^2.2.0","mocha":"^3.3.0","supertest":"^3.0.0","webpack":"^2.5.1"},"gitHead":"50980a69dd52ddde20a058f22c6f884e68230b37","_id":"koa-webpack@0.5.0","_shasum":"42a92c042a0820233ffe52fb203ceaa9661cd3b2","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"42a92c042a0820233ffe52fb203ceaa9661cd3b2","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.5.0.tgz","integrity":"sha512-sQsIzMhsJiwVsZZijgHpASO2e0Yq5oo65b4zhJ5ONVal0DacLpC3c2GRj4DoRNflsHELFvDX7cwVOA6UZbG2Cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGK/V6cFaD20qCBPTMsvCP6r75wRXMikqve131udNWPrAiBwm+Yw1HuRjHmnF3CzIyjNXCpBryNi1DOfXZ12B2oxlA=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.5.0.tgz_1494725937416_0.6895932317711413"},"directories":{}},"0.5.1":{"name":"koa-webpack","version":"0.5.1","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"eslint index.js test/*.js && mocha --compilers=js:babel-register"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^1.3.2","del":"^2.2.2","eslint":"^3.8.1","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^3.0.1","koa":"^2.2.0","mocha":"^3.3.0","supertest":"^3.0.0","webpack":"^2.5.1"},"gitHead":"2ee8e2cda2678b8d37deb24ee6513c1431ffcb76","_id":"koa-webpack@0.5.1","_shasum":"44ee43195e8993fde32f98be61b8a00ba59da582","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"44ee43195e8993fde32f98be61b8a00ba59da582","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.5.1.tgz","integrity":"sha512-M8M39QOTfuMeGsdtlaFDzwOAyXBiKTISCcB4a2z060Kv7mJC5386MLJKPTdETLRCF1WUD5+GG4snMQHyM9/tNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWHpWTJFyB/cDvyVPIOFgzVHb3Ey7+V+1bs4UgcyjoYQIhAIQx4yk62NRN+gwbKRAMRDymtLYDoZjQkJ/n0bvT4eEo"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-webpack-0.5.1.tgz_1494805398382_0.7245080699212849"},"directories":{}},"0.6.0":{"name":"koa-webpack","version":"0.6.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"test":"eslint index.js test/*.js && mocha --compilers=js:babel-register"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"license":"MIT","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","webpack":"~2.2.0","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^1.3.2","del":"^3.0.0","eslint":"^4.1.0","eslint-config-shellscape":"^1.0.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^4.0.0","koa":"^2.2.0","mocha":"^3.3.0","supertest":"^3.0.0","webpack":"^3.0.0"},"gitHead":"3606aec1a6a4efdb9d095f74d0238d18fbdafb81","_id":"koa-webpack@0.6.0","_shasum":"dd93507948f327bd0068b0a2aac4e0d7fcefd9d5","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"shasum":"dd93507948f327bd0068b0a2aac4e0d7fcefd9d5","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-0.6.0.tgz","integrity":"sha512-2Y66tUPEvQAfFNBKXbHU/Qt3JjL7uWNo4FmARJ3K7bLJESwKTmcbtFDclGrDGPtmDdrSmnV5p8VJpCgk/GQ6qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEoAYlAEVAhhXO4vjVxQ/wfIe02fSrLSA5ifRmOQiK3GAiADhqAYuXkwHHt9/3Toj3nZBZDOuH0Pnpiu4tyj0sTy1A=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-0.6.0.tgz_1499690434926_0.19677668740041554"},"directories":{}},"1.0.0":{"name":"koa-webpack","version":"1.0.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"bdd":"mocha --compilers=js:babel-register","build":"babel index.js --out-dir dist","lint":"eslint index.js test/*.js","test":"npm run lint && npm run bdd"},"engines":{"node":">= 6.0.0"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org","url":"shellscape.org"},"license":"MIT","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","webpack":"^3.4.1","webpack-dev-middleware":"^1.8.4","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel-cli":"^6.24.1","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^1.3.2","eslint":"^4.1.0","eslint-config-shellscape":"^1.0.0","koa":"^2.2.0","mocha":"^3.3.0","supertest":"^3.0.0"},"gitHead":"a3fdc8079d8307b0554a4ff7966aa8243df7befe","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@1.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-KRDPyGQ9M/GYcxaxh25dLEqiAGzCVVMadFq0uS1m0LOnFw5JtMeXnBy2QjPK5YHP3w4yF+mki0Uk3vuwRO+zGQ==","shasum":"69466bb13696b60a265a429ccf5245934cbc7010","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXu8zEg4uQzfNx+MF/1L2tB3ccpWlsZVaQakyPNoT6EwIhAJypFS4EVK3b2icqS26cu4jdCVShxVhK+7bqIR2veuEy"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-1.0.0.tgz_1501509850330_0.8827410088852048"},"directories":{}},"1.1.0":{"name":"koa-webpack","version":"1.1.0","description":"Development and Hot Reload Middleware for Koa2","main":"dist/index.js","scripts":{"bdd":"mocha --compilers=js:babel-register --exit","build":"babel index.js --out-dir dist","lint":"eslint index.js test/*.js","test":"npm run lint && npm run bdd"},"engines":{"node":">= 6.0.0"},"repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org","url":"shellscape.org"},"license":"MIT","dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","merge-options":"^1.0.0","webpack":"^3.4.1","webpack-dev-middleware":"^2.0.3","webpack-hot-middleware":"^2.13.0"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.24.1","babel-eslint":"^8.1.2","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-shellscape":"^1.0.0","koa":"^2.2.0","mocha":"^4.1.0","server-destroy":"^1.0.1","supertest":"^3.0.0","wtfnode":"^0.5.6"},"gitHead":"9741e2a189446007145f36b25d8ee5dd1ff3f5cf","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@1.1.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-aq1bK4XlzzGgSdd5KlHxZbmow2SHPiGw4H4/Bbk+HNNtaVaIfsGdkyPPcCn+81WEbmf5ibQw9VFcpYPuwNYdbA==","shasum":"62996414292d8728f356e31a3af24ce5db14b5e3","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-1.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEPO9qoxEigt+Enot4A8mncQh/OG1P0HmOsJFwhp+mK7AiEAz0/g58nlY+sKDeaM4NVFp8h9O+6773P7bNqatTTGIzw="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-1.1.0.tgz_1514604251179_0.5176505909767002"},"directories":{}},"2.0.0":{"name":"koa-webpack","version":"2.0.0","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"bdd":"mocha --compilers=js:babel-register --exit","build":"babel index.js --out-dir dist","lint":"eslint index.js test/*.js","test":"npm run lint && npm run bdd"},"peerDependencies":{"webpack":"^2.2.0 || ^3.0.0 || ^4.0.0-alpha.2"},"dependencies":{"app-root-path":"^2.0.1","koa-compose":"^4.0.0","merge-options":"^1.0.0","webpack":"^3.10.0","webpack-dev-middleware":"^2.0.3","webpack-hot-client":"0.0.1"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.24.1","babel-eslint":"^8.1.2","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-async-to-generator":"^6.16.0","babel-plugin-transform-runtime":"^6.15.0","babel-preset-es2015":"^6.16.0","babel-preset-stage-2":"^6.17.0","babel-register":"^6.16.3","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-shellscape":"^1.0.0","koa":"^2.2.0","mocha":"^4.1.0","server-destroy":"^1.0.1","supertest":"^3.0.0","wtfnode":"^0.5.6"},"gitHead":"63dcd7831406ea4116d268e8570861769c953365","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-oTDNPi7H7/5YrkVp7JI3hxwFAcZd7nGKQHFO+lCkEZUePbsEGrYoxLcNzC9d5aGd3NggiJIQjzhVt3wIqX6upw==","shasum":"889183ce607db16f45eaad44795c5368f88f15e8","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-2.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdlRsNu/IjrvT5W8OGC73e6sqRfg4OVRrOApw5+GYV8wIgd+er5YZJwVii44gStoRym8VS6IFCWjJERD/MHvVWLXs="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-2.0.0.tgz_1515307275799_0.3392957681789994"},"directories":{}},"2.0.1":{"name":"koa-webpack","version":"2.0.1","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^2.2.0 || ^3.0.0 || ^4.0.0-alpha.2"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^2.0.3","webpack-hot-client":"0.0.3","webpack-log":"^1.1.1"},"devDependencies":{"babel-core":"^6.26.0","babel-polyfill":"^6.26.0","babel-register":"^6.26.0","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","mocha":"^4.1.0","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^3.10.0","wtfnode":"^0.5.6"},"gitHead":"493d7c46e50090b2aad0ae1ad5a4f7008e9c5782","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-obDCqQFpsxPyuYzwOcFN5cQItqPrpCXE7LqI5ud8nzqP0qXfyv0hB5OLQontTgx7DyEH3K0PGF96c6VmMRamGg==","shasum":"1efcf8032c39605eb542c8b045ce4a4059dbdf4b","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-2.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3tV+Bc1kgxQTIngFYAxV89CfieC0x5p2UQcw+TthBBAIgJMAhg0MYFWqVAkCrW/5t1R1tazADaYBYcWZQQC7Apdg="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-2.0.1.tgz_1515343353310_0.22517218114808202"},"directories":{}},"2.0.2":{"name":"koa-webpack","version":"2.0.2","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^2.2.0 || ^3.0.0 || ^4.0.0-alpha.2"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^2.0.3","webpack-hot-client":"^1.0.1","webpack-log":"^1.1.1"},"devDependencies":{"babel-core":"^6.26.0","babel-polyfill":"^6.26.0","babel-register":"^6.26.0","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","mocha":"^4.1.0","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^3.10.0","wtfnode":"^0.5.6"},"gitHead":"ed2f5d587b40f8dd94dff8b8d5cde55920d9b71e","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@2.0.2","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-0HrzGLXq1Dz21PZc/50s/sbQW8IIjcyY3GFAMRoq8OJztPjS8aEszxmyHpsrlovoN63SIqfnlS3H8Q86A+Am/w==","shasum":"957147ddd7aad34e9af048e9b81018fc813cf589","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-2.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC5p3YC3nt+ZiMlH2mtQWvKlp9UNYFxiOjt3IjQsjjEXAiAc6b6d84UU6qn0sYVLJTT/jCV3CCt3ok+DmrbZ6hb2TA=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-2.0.2.tgz_1515346961820_0.910130210686475"},"directories":{}},"2.0.3":{"name":"koa-webpack","version":"2.0.3","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^2.2.0 || ^3.0.0 || ^4.0.0-alpha.2"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^2.0.3","webpack-hot-client":"^1.0.1","webpack-log":"^1.1.1"},"devDependencies":{"babel-core":"^6.26.0","babel-polyfill":"^6.26.0","babel-register":"^6.26.0","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","mocha":"^4.1.0","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^3.10.0","wtfnode":"^0.5.6"},"gitHead":"4e17bbb0272732c3f3b14eb456fc81a80e2dfb89","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@2.0.3","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-wqIt9AznbGTiHMMjUvCERw8bslaRNs4AB83f8ZhVk08qiot6jFzHgF51bhB9MVue/xDRDBjMMuX6EI2iqq6uBw==","shasum":"7ac8deb0c23b2183e9431e4d85aaf36ed7096380","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-2.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0U8XpUYZduENWPLbjdiWsc76EBQHlArGbFFxIz1BN1QIhAO1Vgj+bCvh1W06rUyLB8vrEchMzt1a5DGrAAswjYH0M"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack-2.0.3.tgz_1515363134206_0.6921921938192099"},"directories":{}},"3.0.0":{"name":"koa-webpack","version":"3.0.0","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^2.0.0","webpack-log":"^1.1.1"},"devDependencies":{"@babel/cli":"^7.0.0-beta.37","@babel/core":"^7.0.0-beta.37","@babel/polyfill":"^7.0.0-beta.37","@babel/preset-env":"^7.0.0-beta.37","@babel/register":"^7.0.0-beta.37","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","mocha":"^5.0.1","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^4.0.1","wtfnode":"^0.6.0"},"gitHead":"2e0ff50ab7084c6596c505738b5244025b27f07a","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@3.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-0wt4APmNt2+UEzvufi5rs/KPCPsYIOYbi+rHZg7yNttKgeLuXWFPuCSwKZ6N9xW+u+hsLnP/z3uKHr1zhIeUQw==","shasum":"eab7e9feefeb7b9a93be935234b4ebd776761d76","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-3.0.0.tgz","fileCount":11,"unpackedSize":15352,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdIVU+nYeTbE7tDZbvpdsF+edTuWbnIgCXu+tKozxBJwIhAJnanu48VoTzE15GDskWlPFAf8gssXc9/gnonW8Jtu9/"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_3.0.0_1519858798442_0.9390827753296418"},"_hasShrinkwrap":false},"3.0.1":{"name":"koa-webpack","version":"3.0.1","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^2.0.0","webpack-log":"^1.1.1"},"devDependencies":{"@babel/cli":"^7.0.0-beta.37","@babel/core":"^7.0.0-beta.37","@babel/polyfill":"^7.0.0-beta.37","@babel/preset-env":"^7.0.0-beta.37","@babel/register":"^7.0.0-beta.37","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","loud-rejection":"^1.6.0","mocha":"^5.0.1","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^4.0.1","wtfnode":"^0.6.0"},"gitHead":"8e6903e8fef39c6ccb5a4639c6e02472778e6112","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@3.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-w8eTKrPmnUtnANgsNTz3Vi/HNZZ8M4BMQvmq1AqXTN54ZUXL2tOrQxxKNUpZheaOXmPcDI6qUSkqGn9XT5vd6Q==","shasum":"625c1a0dbc7e08b386cf02faffe8749febb829dd","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-3.0.1.tgz","fileCount":11,"unpackedSize":15964,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB6sTY4yKZq7DD/+uwkqNXmMlkic0tq4lok+MbgU3AvTAiEAyPkZ/bafEH74pWyg6pPU3PrIzV3ss9gydAvEl9BexZU="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_3.0.1_1520427986945_0.9903480048330642"},"_hasShrinkwrap":false},"3.0.2":{"name":"koa-webpack","version":"3.0.2","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^2.0.0","webpack-log":"^1.1.1"},"devDependencies":{"@babel/cli":"^7.0.0-beta.37","@babel/core":"^7.0.0-beta.37","@babel/polyfill":"^7.0.0-beta.37","@babel/preset-env":"^7.0.0-beta.37","@babel/register":"^7.0.0-beta.37","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","loud-rejection":"^1.6.0","mocha":"^5.0.1","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^4.0.1","wtfnode":"^0.6.0"},"gitHead":"795986b0343ba540effc085a06f9c03a62d113a0","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@3.0.2","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-SZIhsNOnBVXgspYFfuG/MQ2Orbih97sHxNtswKV5xV2P7CLhvNNzfZFRegaEjQyGQYqWrxbkYRhVcYx83O0p9A==","shasum":"5a0604d476ec5ab3f12f02fd5bf8406a77b49ed2","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-3.0.2.tgz","fileCount":11,"unpackedSize":17291,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBTlZLqReJYbuKCSo/rgPezOn71pYJ9K2LxvfpAYBVmPAiEAsNAWIekXpobNYvhGhzDoJGbrxoVhHcLzRJ0seDsA19Y="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_3.0.2_1520601140058_0.5534732166322511"},"_hasShrinkwrap":false},"4.0.0":{"name":"koa-webpack","version":"4.0.0","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"main":"index.js","engines":{"node":">= 6.0.0"},"scripts":{"ci":"npm run lint && npm run test","mocha":"mocha test/test.js --exit","lint":"eslint index.js test/*.js","test":"npm run mocha"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"app-root-path":"^2.0.1","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^3.0.0","webpack-log":"^1.1.1"},"devDependencies":{"@babel/cli":"^7.0.0-beta.37","@babel/core":"^7.0.0-beta.37","@babel/polyfill":"^7.0.0-beta.37","@babel/preset-env":"^7.0.0-beta.37","@babel/register":"^7.0.0-beta.37","deepmerge":"^2.0.1","eslint":"^4.1.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","loud-rejection":"^1.6.0","mocha":"^5.0.1","server-destroy":"^1.0.1","supertest":"^3.0.0","webpack":"^4.0.1","wtfnode":"^0.6.0"},"gitHead":"f57c205dc9e1eedcec04bf4fc49ab145eaf4b3fc","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"homepage":"https://github.com/shellscape/koa-webpack#readme","_id":"koa-webpack@4.0.0","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-P+j2TzeZAqFwscd/dlLykk/sxwr6wQ5Tp3FYDhqv1+y9aRIffTPnu2zK+1BhfM+Kyh8bepU1jFR420maE+Vajw==","shasum":"1d9b83c109db106d8ef65db376f910a45ba964c7","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-4.0.0.tgz","fileCount":11,"unpackedSize":17291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+CToCRA9TVsSAnZWagAAPXkP/13W1ajRlHgNffRLltZ/\n5bQJ+PzhMCubzKbIF3VT/Q7oCSA6QHdDkSmSBf4Q9jquuEtmb2GcNyBqZMPP\n8Rbq5rj1fAhVVIUxBiltEztjup0U+tvdB58ptcVPUAl8bkniBXfTMSpc6Wcf\nCN21LGYXigWLXqsNVFpwVpcmCHD6iKDlJZneynJ5CsOK+QGDA1hSa6uK6Hmq\naDkes6l4O6WwAKrUGJfwRmlRruqxL5ZN5XlezKBUxRPoGARJ3bzqGUXMJbsb\nZZxL32/iY0QazwEF/otK3yfwAB0boKFcKKGsEnAm0u2jukrxEE02eph77M1T\ns8/ra44K+DHttn2sM+9hKWnQ9so4D9EUeAhvp3otBGWPl6mGOIKTLcwuk/Xv\n+cNHTg20U0YxshDuXmOz4TFte+KcwvhzBaIWFiumLpUDNwCHFqFr0Bq0wbcU\n+22KAC9ptaC3w8HWCKnzZIs0v37xdCnI0uLuNjWGtPJ0hZyb5kHABJTuRptf\nv2USAEhTCJytgLjxKEvI6rj/0TpqDmsw5MId1tUHiO0IN3x1D/cgWUUS26es\n1fM1Jk1Jc8oob759vJ+cjcRPFxZ62CNv2l2L5PzIWJewBYONZRsW5yhJKzhN\nAG8CUC8+cPRexdIY3m2+ykd0liKYQ6Mwxf26HXM5cHYuCRW1dzwxLIVB3+xL\n0GiF\r\n=TT0g\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjDbfdWUAKbOLsPOjzIRINh+C6+QrDhDrqJLSPAAKg1QIhAOpWRnWyw/0VPId8HiRbNDmYUtFHojS63FQziznC4EW8"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_4.0.0_1526211814890_0.36460004719702166"},"_hasShrinkwrap":false},"5.0.0":{"name":"koa-webpack","version":"5.0.0","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"files":["lib/","LICENSE","README.md"],"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.0.1","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"ccf43dff0dc93f51cd186922df8bba6c28d31d72","_id":"koa-webpack@5.0.0","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-RzwEcb69zsiWwE2ps5dr5l6F9giqYud/iDiRCX39TUnheFaqdpmN7BOhrFrE9Q/dnL1V9yZ9o1EkENK+Kx0nyA==","shasum":"b16542b9bcd0c326eda4dcd681387f528580ed19","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.0.0.tgz","fileCount":6,"unpackedSize":18017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEtumCRA9TVsSAnZWagAAJx8P+QDTRkx8KP2jNqcxSYFG\nd8JcFTZab6asBUcDZB1xSWMSmsNi/jAhzoXNmA9wLlCKpidjbQ+dl478WiGn\n5arpYi/f8H8aJrBWVhTQ3zAS/pP5p0d+0Y07WNdiljDsiUfE/1f6KX1iI9e6\nocuq9qx7cFp15LdzJwK0laUTG0cp0bXF3/pn6G7M9jEPlJoy+cz102q4s7e/\njQM+M0EAyfCGb6tcRbmfNu+1LauNrauiGcp9hH0dsGKOKZK1BoI+iIdA0fP4\nSTdx+nxtttxQGFQqsqRfqXGUN4IaVOGKrFvlw3GMVCR/Jv2MrNgOTjEK+VCd\nXMfEU3M0KtCIAo8aei2FNI1EhKGIaLS0wdS9p+Wtrl2G2XQCchL8J5urO54u\nXHUEfoZwuzhoDT+UrX5LnV/NwgdJe9ODpC4IPsFhH4Y2zX0e2unPrHIY/ESR\na6kgPgw4QsD6IDkjEF3fPwZtCWK59/rodgmF0om0LI56rpiI3PELVLzJ14M7\nv6UoNAibgsZPvHFOoQ5mWgsTPFE3nhd6TdlozAJHFT5sgHPWxVrKRL9ccXdl\nz3dKST7IS/BLhdLks+uEv3x4A82bYmeG+jqhvKavRaDJV6fj0tIjIB0T6f33\nynSpn7bKhTsxc2Qy2nrtKYStXQKpGxk4XOS/Z4WBlTu1QLRb/HBL+/v3KG+G\nCAFp\r\n=5G9X\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQClo4JClWbx3xGaezZPV0FOitiINqLeEu0I7/0nX29sPgIgMfL6sf/3tNU1w6XUCgHYYlmbYkIzgG3Dbq3hnu4e7w4="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.0.0_1527962533106_0.21677713883577088"},"_hasShrinkwrap":false},"5.0.1":{"name":"koa-webpack","version":"5.0.1","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"files":["lib/","schemas/","LICENSE","README.md"],"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.0.1","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"ae5f47e1beb2478687915ccc7daea3520a9dd854","_id":"koa-webpack@5.0.1","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-pcEokAVoCTLLSFNc4GVGnLGlkzITqStYTEjOr+YgQM6igazMjgC13LM3tt80FSGzlSldSjJtyEtXWPtPjSsFBw==","shasum":"9689b7e8e9051c808158e67923b986da79542a25","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.0.1.tgz","fileCount":7,"unpackedSize":18492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEt/ZCRA9TVsSAnZWagAAyKcP/iSA2H0/cTb6BLaaRJxA\nCYd5IJJlNIH/lf/wd7Z/v0t10eJfYI+YPXNc80pxDXHGYEHHFGvlZ04diDTx\n3gFX/EnNYdirNalwarOkSpXpT40jVS4NIYi2fJG3r3AOoLj7O0dnh9iw9DVo\n6wxgSdKKwwE651PxzSQIvN3CYzuGrrVnZHcm+2kEfGowf322hFC+++1ccVFh\nG1f98TsrYPM68CysAl3XTq08RfZaSK4UaXKJUGcr/JxJi7BT2TzVLoaasiY3\nh0HXLkSr857sv6HOSUFWJLodaeVKq3/WQrK9cVEdg4VwP9UxpHcW7ovu1b9z\nH4jmnmVnjoHQ1k7lvuLk74cFLPBXEQcDMhySe/5y75Nm7SIVuBtaV4Bhcezp\nl8fwGVXxyaBkot6z0A60y7bI/wREo+xaRyhaOblVrxb4skQsHzOjNjEv3Pta\n+/CaeXyH+qFZHuH2vNHzIQTy3hqRTpVRwUCGNen96VSsHUNm5OA2C2g5JTz/\nCIZmi0ZYtSNur+dBJYYXinSaYHsI0m8nlEH6ZmxivuShRein/AflfwKQt4ca\ny5uDGx2F/oImg8WS085z1dkegStxnqdkj0AEFmMFnNXOZtZjOxDATl8NEXun\ney0fJFjTU7dUAjYJWtUdqezyR4/B9hkeYwrKw5XfcbLvUWmwvY87LHoM7J6Y\ncqdI\r\n=KdEZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGkz4Jz9OZS+tANTh3m6Gy/lTmwR0H5ZywujMtbPwM5DAiBIk3MXrAjG+wJnDD6VeJgdVmm3RvVuVfNmeJoVhhULrg=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.0.1_1527963607763_0.8543052580717361"},"_hasShrinkwrap":false},"5.0.2":{"name":"koa-webpack","version":"5.0.2","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"files":["lib/","schemas/","LICENSE","README.md"],"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.0.1","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"d084be119892862d35337686cc003c1b02e8c51c","_id":"koa-webpack@5.0.2","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-zBZrzOjCS0f2UkZeQTLS948myNoFvc47xtNjsZ2aTPL3clckPUsw8FeqpF+zxPVmdmFvSLOEDqO0iTs2fIe/WA==","shasum":"9deebec50a1b8beffb1f5ac11fa962f4e583f71b","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.0.2.tgz","fileCount":6,"unpackedSize":13119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbE3mKCRA9TVsSAnZWagAAzcYP/1Y4A4aUpwtpNm5+xAUr\n7kBiNB/9rMBKn4e/tEHsTkSiwW0EkF8bzb0Miv7hzroaNz3C2ypcSkthD6a4\n0lAaPrphqPkszILN6Ru8SgXOnQcxpnWuRdHX36TaKLAm74SvN45H0xZaA3Af\nPn/KnipyihVAjwDlxihiAShrj3+QceQzLc+ix/sKKoXeVChUazBTQLZKReSG\n/ehunVZsjhkRTqeFn0ACOyq4NQXoqI7fIkIr1l9LthKF/iLLbgFntlo2tKiy\nouz7+LhjUXL6T5CL/FUeLVqDJonGO/cRLPqF2zMyOyroKqNeEORZHrQumdiq\nx+nktS8OQXiC3wmveALSL/9lTGxLxBthegdM5WfFv/w4tT6g0/ohIu9znIDn\nIwa5f5B2W2cWgl9HmwpgkP0PM5/kELVKbTfjdQypfNrH2iRBkuQwSRiRVyXu\nqDpjEdVr+t265/6c8sJPmFpEezpfBsu3se2T7GfjQnEaAWUUXrcouoIdukUa\nfatsWzdDBRQBS/sqjkqVOMP6DzyOwYLq/gi5akXZvexoZ9wxWYCVjOdRF1jq\nYS2NmVeQyfo4fDAJmvDCca94T0zpDTVwdkfEAkICTp95XcffF/gTgXIZQo71\nzb2erRhENcAs4kHGJQuUSr2sGk/vPVDhUDMLxXSu8X1NpamCgtYaZml7xIF2\nHOFJ\r\n=+5ft\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBDOJ78VrM6KwkptOfzdck9+y72Js3t8aIxFYnINHIAGAiEAlh2G2zIrW8vPbwBvIp2jBBH3YZRXo7pAwwyLFx7wIY8="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.0.2_1528002953167_0.6921902695310713"},"_hasShrinkwrap":false},"5.1.0-beta.1":{"name":"koa-webpack","version":"5.1.0-beta.1","publishConfig":{"tag":"beta"},"description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"files":["lib/","schemas/","LICENSE","README.md"],"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0-beta.1","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"readme":"<div align=\"center\">\n  <a href=\"https://koajs.com\">\n    <img width=\"200\" src=\"https://i.imgur.com/IABvnrD.png\"/>\n  </a>\n  <a href=\"https://github.com/webpack/webpack\">\n    <img width=\"200\" height=\"200\" src=\"https://webpack.js.org/assets/icon-square-big.svg\"/>\n  </a>\n</div>\n\n[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![deps][deps]][deps-url]\n[![tests][tests]][tests-url]\n[![chat][chat]][chat-url]\n[![size][size]][size-url]\n\n# koa-webpack\n\nDevelopment and Hot Module Reload Middleware for **Koa2**, in a single\nmiddleware module.\n\nThis module wraps and composes\n[`webpack-dev-middleware`](https://github.com/webpack/webpack-dev-middleware) and\n[`webpack-hot-client`](https://github.com/webpack-contrib/webpack-hot-client)\ninto a single middleware module, allowing for quick and concise implementation.\n\nAs an added bonus, it'll also use the installed `webpack` module from your project,\nand the `webpack.config.js` file in the root of your project, automagically, should\nyou choose to let it. This negates the need for all of the repetitive setup and\nconfig that you get with `koa-webpack-middleware`.\n\n## Requirements\n\nThis module requires a minimum of Node v6.9.0 and Webpack v4.0.0.\n\n## Getting Started\n\nTo begin, you'll need to install `koa-webpack`:\n\n```console\n$ npm install koa-webpack --save-dev\n```\n\nNext, setup the module in your code. (We're assuming ES6 syntax here)\n\n```js\nconst Koa = require('koa');\n\nconst app = new Koa();\n\nconst koaWebpack = require('koa-webpack');\n\nkoaWebpack({ .. options .. })\n .then((middleware) => {\n  app.use(middleware);\n});\n```\n\n## API\n\n### koaWebpack([options])\n\nReturns an `Object` containing:\n\n- `close(callback)` *(Function)* - Closes both the instance of `webpack-dev-middleware`\nand `webpack-hot-client`. Accepts a single `Function` callback parameter that is\nexecuted when complete.\n- `client` *(Object)* - An instance of `webpack-hot-client`.\n- `dev` *(Object)* - An instance of `webpack-dev-middleware`\n\n## Options\n\nThe middleware accepts an `options` Object, which can contain options for the\n`webpack-dev-middleware` and `webpack-hot-client` bundled with this module.\nThe following is a property reference for the Object:\n\n### compiler\n\nType: `Object`  \n`optional`\n\nShould you rather that the middleware use an instance of `webpack` that you've\nalready init'd [with webpack config], you can pass it to the middleware using\nthis option.\n\nExample:\n\n```js\nconst webpack = require('webpack');\nconst config = require('./webpack.config.js');\nconst compiler = Webpack(config);\nconst koaWebpack = require('koa-webpack');\n\nkoaWebpack({ compiler })\n .then((middleware) => {\n  app.use(middleware);\n});\n```\n\n### config\n\nType: `Object`  \n`optional`\n\nShould you rather that the middleware use an instance of webpack configuration\nthat you've already required/imported, you can pass it to the middleware using\nthis option.\n\nExample:\n\n```js\nconst config = require('./webpack.config.js');\nconst koaWebpack = require('koa-webpack');\n\nkoaWebpack({ config })\n .then((middleware) => {\n  app.use(middleware);\n});\n```\n\n### devMiddleware\n\nType: `Object`  \n`optional`\n\nThe `devMiddleware` property should contain options for `webpack-dev-middleware`, a list of\nwhich is available at [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware).\nOmitting this property will result in `webpack-dev-middleware` using its default\noptions.\n\n### hotClient\n\nType: `Object|Boolean`  \n`optional`\n\nThe `hotClient` property should contain options for `webpack-hot-client`, a list of\nwhich is available at [webpack-hot-client](https://github.com/webpack-contrib/webpack-hot-client).\nOmitting this property will result in `webpack-hot-client` using its default\noptions.\n\nAs of `v3.0.1` setting this to `false` will completely disable `webpack-hot-client`\nand all automatic Hot Module Replacement functionality.\n\n## Using with koa-compress\n\nWhen using `koa-webpack` with [koa-compress](https://github.com/koajs/compress),\nyou may experience issues with saving files and hot module reload. Please review\n[this issue](https://github.com/shellscape/koa-webpack/issues/36#issuecomment-289565573)\nfor more information and a workaround.\n\n## Server-Side-Rendering\n\nWhen `serverSideRender` is set to true in `config.dev`, `webpackStats` is\naccessible from `ctx.state.webpackStats`.\n\n```js\napp.use(async (ctx, next) => {\n  const assetsByChunkName = ctx.state.webpackStats.toJson().assetsByChunkName;\n  // do something with assetsByChunkName\n})\n```\n\nFor more details please refer to:\n[webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware#server-side-rendering)\n\n\n## Contributing\n\nPlease take a moment to read our contributing guidelines if you haven't yet done so.\n\n#### [CONTRIBUTING](./.github/CONTRIBUTING.md)\n\n## Attribution\n\nThis module started as a fork of\n[`koa-webpack-middleware`](https://github.com/leecade/koa-webpack-middleware)\n\n## License\n\n#### [MIT](./LICENSE)\n\n[npm]: https://img.shields.io/npm/v/koa-webpack.svg\n[npm-url]: https://npmjs.com/package/koa-webpack\n\n[node]: https://img.shields.io/node/v/koa-webpack.svg\n[node-url]: https://nodejs.org\n\n[deps]: https://david-dm.org/shellscape/koa-webpack.svg\n[deps-url]: https://david-dm.org/shellscape/koa-webpack\n\n[tests]: \thttps://img.shields.io/circleci/project/github/shellscape/koa-webpack.svg\n[tests-url]: https://circleci.com/gh/shellscape/koa-webpack\n\n[cover]: https://codecov.io/gh/shellscape/koa-webpack/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/shellscape/koa-webpack\n\n[chat]: https://img.shields.io/badge/gitter-webpack%2Fwebpack-brightgreen.svg\n[chat-url]: https://gitter.im/webpack/webpack\n\n[size]: https://packagephobia.now.sh/badge?p=koa-webpack\n[size-url]: https://packagephobia.now.sh/result?p=koa-webpack","readmeFilename":"README.md","gitHead":"fa98860bf46308901a9a9d7a9a58b9918d5878fd","_id":"koa-webpack@5.1.0-beta.1","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-uAfyZ1CRQgBqGmAxSdhCUZ9pbAIibJyx2Hl/tDXOqRFl/VeYyA7eXsCnGAMQWUKI/QtUYXYFdJ+LBr5VnymPLw==","shasum":"4e3d8840ddb96049419bf529d99998f0343d65d5","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.1.0-beta.1.tgz","fileCount":6,"unpackedSize":13150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPsazCRA9TVsSAnZWagAAVPcQAI93vByUs8wVg09iN6Wq\n6RccegihqY5LvvKvUsdgH38u/QaIDVhf9CVIUF4hBkYU9m+0g86iaqosnxJb\nr6mJl0QAYTU8IptV+/bRIs0qizIAyt7KV9XiTRDm49bbgtnShTAHC2hNXLGg\nDe933AIJ2WXwnpvCf2/0a2mAQfqARs5c8oENca+KVA659ONalUTHqXcUP+fv\nTwrVvlEBvfjfubeWsgZmhvLqXJ4+bbE87GXxp/gnFa0GqtTtJOcAfPdiEu8k\nbvoQc4uI+6Dc41+1tjcKPgDq8SQaHImCXpz5621ogH21Q4cNfBvB10tKYU9P\nmLL8sTcEu+uFMqP9ypJRQRlGVKDgln+Junr2tckPyctdAo8Sa7P9VgNfKwpt\n7ol8e+IBIV65r3BN3KDavd6gjjT4M8WJyiDKsN/k75OmZewnoD9YHp2vU/up\nYXxv1/4oGLvVyu0BUHSG+/9VDJVcCTfr31ZD4q311iTp1i62TNt6rj3jj+rO\nEm99qw2rkuRioSjlV8NpoI63QJ7fayh2UuTw0qDutf+C9gkQjv/HgbJOvGr8\nqRAB76qp/01vMCuPigBSTeXuyzRQiiKMkmNlkmHyxzrSEBb6WyzkBLad4qe4\nCIVRCHuPhZkRG87lIQdRvD9oXbpB4ie1PFoj08Yh9CWxEvwkA2XDTnzpOM7q\nFb2j\r\n=evi4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDb32kBaum7gblsN1yL4wndY1wQSbRI6VTn+vrgPgLnpQIhALBIlVdFKSJWjn3IT+HNqEJ4gXAUo6YhTDS6qZ53jDkQ"}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.1.0-beta.1_1530840755812_0.7404088227393955"},"_hasShrinkwrap":false},"5.1.0":{"name":"koa-webpack","version":"5.1.0","description":"Development and Hot Reload Middleware for Koa2","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"files":["lib/","schemas/","LICENSE","README.md"],"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"b94560d1d5fd70b372d1f504258c32d5bed7b7e4","_id":"koa-webpack@5.1.0","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-XNqqtPpMvccXK3tAs0vW6YoO4+uYaxarutsgCZjNi3NyvmmVBvIH6l6xGk0NtiJR1m0oa53gFHLSiT19ZseOCw==","shasum":"7b9f04ea85c43c4d7ad845d0de01f0ed495eb5c0","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.1.0.tgz","fileCount":6,"unpackedSize":13652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQ0/vCRA9TVsSAnZWagAAC54P+wZOgW+tfKh2MX+nmFli\nOheydVynqlgv1f4NhB9gfSqETF0lMjiaoxlquNx65/vC7kc/lc/XcWYk0JvF\nbVeKjvnYleU/U2b+wqa/6ULwaX92l8Hr03RZp9103ty/S22Uacn5XGrULBT+\nj3PpMBYr9TBcv9jeJJye3efkeqNDFVXeRWnoKfo0sscw0bRIDBjkAJ63fdqM\nb9oP+Iv2By+FTPMYKPo0BgPPgSfu5hmQtYP+R98o99RJn6n6n5f9yk2u8jP2\nLpvNJ/N1LLZlcfFnewcwfFO1UeZXNd6YYvNL4ROz3T4D4lJCgI6Zmg+s0cud\nX6Mcysjva15uuHcXzRZ76cH9FoXuBGcxwfemXIKwmdB4fVfgCaGaydQbW4DQ\nXIIfkDUKoSPfZJvxtNh5ArAWAvws8sdWoLau7ng8lLH7JHhhsvNEA5y1aA6S\nmSWhyAeN1hpKcSe73qAbt2SC54NeJ8ce1ZIs4eUucpoVlTo/cViahdnXgjnY\ndoXObolEaV5D5sSeLQNGL9tha5NdUFjuogYzo7R3Ey20NF2bWaDEMyGf8NNl\nBaszBuDnpI4GGBqkaVFkKIfDchSAffCdcQyG2FgNi9QFBsr1A710nrOKqOvR\nu7DYwRpv7csvjCed8IpgqsMO73wpVJEowBBXJkMGtoQiihiyFO0R+zBJcSDR\nFGSs\r\n=k1/c\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFM8gbszYslUTBVT69qTIshsD1XHk+h9BSIyT5AtAtm+AiEAv2dF81VRCdKkBsVyZ4p+I6FPOuhBhFubNbgEq0C3pFI="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.1.0_1531138030914_0.03772080325073235"},"_hasShrinkwrap":false},"5.1.1":{"name":"koa-webpack","version":"5.1.1","description":"Development and Hot Reload Middleware for Koa2","license":"MPL","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 6.9.0 < 7.0.0 || >= 8.9.0"},"scripts":{"commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='lib/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"@webpack-contrib/schema-utils":"^1.0.0-beta.0","app-root-path":"^2.0.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0","webpack-log":"^1.1.1"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","@webpack-contrib/defaults":"^2.4.0","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.0.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.7.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^2.0.1","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.19.1","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.12.0","eslint-plugin-prettier":"^2.6.0","husky":"^0.14.3","jest":"^23.1.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^7.1.3","memory-fs":"^0.4.1","nsp":"^3.2.1","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.10.2"},"keywords":["webpack"],"jest":{"forceExit":true,"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"28bbd97f74d5e77688e251bf50837713c53be854","_id":"koa-webpack@5.1.1","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-ezs3CNJZ3a/UN0LmEslTZmiro9Y+2bPJFpcYlDsZxOmWDaDmvBgZuCdG3jCl63EzKL/Pfd+AeaUARwLJ//Unwg==","shasum":"2c2414f0fbf3dc1996d76191c3d20832f7afd95e","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.1.1.tgz","fileCount":6,"unpackedSize":29723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3zwlCRA9TVsSAnZWagAAMTYP/23a2echsnEdBGYWOmeM\nNLQTFcojJ4+Z3lT+S6Semxh05/3OPR5AGcSXMLKSQbbtpbHAXFHzPf/NQ20J\nCRTPfBvoUHPJhR5tqp8apz6VZQyQh08hllBN4kA+aXfiJhKGka/2hIL70CWV\ncABcpcUWHiS3UzqRJGoF3pWlUKpkvPR2jm4UPfFb7l2BEIxRTcJGzjO9JB38\n1GjwXNxp5PwxSCD6J/R7OsUGfgpZdNsSzEQv0mhyUQAZThh2p66ULJgwPrUU\n/AxTizZ21R1+3aHewDz1yyuvNttBKIdiLtSBT3DLgdWb0eMpgyxYJLWwzYIg\nGmzr35BHSPclfRKGz+lpY4KypUUGmIMerDIMIBBOqAoEoP7Daunm8DN4Fo4i\nM3DGhDML+XGBLxF8v/rk2EImEgrSlxkZtUyC6Cpj+OGtFeTF13jqOcrf5xLS\nI9TOG/pZ0esylLbKqV5OVagOWOUyJt0Hgnc6tp2+Jh6/hLyUnDaRPzgCVTs6\n3yTiWnUgk4IFdFFf/j3cD09VQEwV2QTkv2s0V5cMkJp3QsUVxFAKl27e38F1\nQzWC7//dNvWEvAsKDYXhcGNxJuHE5R61GWiGeZK0EOS64GFdOyW0z+Era+19\nx4CNbPMYPhe/oNr8qM7MjRAkQ/qkhkuI+GHxX5P6iAiMRz9i9zl5lOKXNYYn\n90YW\r\n=zvEi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEWgqMi+OkesCw0aL+D/7HBqkVSEoLUn9StAX20kpGhwIgYkstXgYdqllz7R9BQin5Sb1w/DGjP+f3BLrO5kvFnzA="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.1.1_1541356580513_0.8415423236740178"},"_hasShrinkwrap":false},"5.2.0":{"name":"koa-webpack","version":"5.2.0","description":"Development and Hot Reload Middleware for Koa2","license":"MPL","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"app-root-path":"^2.0.1","chalk":"^2.4.2","joi":"^14.3.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^7.2.1","@commitlint/config-conventional":"^7.1.2","ava":"^1.0.1","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^3.0.0","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.12.0","eslint-config-shellscape":"^2.0.2","husky":"^1.3.1","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","nyc":"^13.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"a8876d8427f4244d0d1a904570a4004f3d581a57","_id":"koa-webpack@5.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-Rxv4QyPIc+JMi/6OkS5Fp9jmyZinZ+Rjva8sngcKwUpFO4iiLpwWS6/fSscNRvyjMcTJv8XKDs9ppCuqR6wXaA==","shasum":"a973b854c57e7413f83cefc650cc83b7287170b6","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.0.tgz","fileCount":8,"unpackedSize":29860,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNKOoCRA9TVsSAnZWagAA5NEQAJKzZO9KMmYWjs2pKUx2\n/pcst6k1h6IZib7oahX/kS8C5CmIyuoHxb4vTfPImbZbjCRGBy63DXvc7sBB\nV5tr+WXtQPTjRhj3I+fpGoeaoGkxcwUcUtWLm9JS5v5RFOehtf+L622aph96\nScOOrR43gI8FEJOFdbPTrNgPufADOUz/YIbPfsocWSdSs/SjL1m0QBdT4nFP\nRyBfs2aUlNuNOUCvf9MThzn2TIdyVTdAfbk9qTOe24NjaMawpZrbWhYOTydw\nN9mh0QMl4GP5Po9o/A2M53cQVBaYgcjP3wMwS9Mye/rssEMeWXeWlv5v52Po\nXSMfdaBD5l/gswbaV4i789V5r0QfqfA6f1Lq2ocAKs8ceownpqgm29DyIhxH\nkhjphv7OGayC6f+SwNBFOuW1QV/28H8tsuzHBK8G3EmOx16AiCg4DF9mZsUH\narBbbd8mJ18LghqsAeYda+diXtEBtTEwP7eIGj3Q8k/+nC4hHgrmakZ8YfB0\nQ36TRCyC6lDkHHnqzeFMkXTlXbXmbrEeBTAyNL+AoFILQrd4uPmXWut3dKXm\nmQSprWXvK3QWJSbIaKUIheTi7sTcFFcEA6hug9N1hGp4cw2BJ6c15/lUFOsi\n6qq4do+EmDStgThFX12mGdL/qAovvm47pVryCG9TC5o5Ggdj6Vq8tX5Noy/X\nANzS\r\n=917H\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICMoISUgSwU+LoSws6wwEWgSmkqohfRK3lqZR4OjAuE/AiEArQOcVibYKiSdMMdpj1OqjXiFRj3xVehVP0hIecsACOU="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.0_1546953639546_0.8261322155793194"},"_hasShrinkwrap":false},"5.2.1":{"name":"koa-webpack","version":"5.2.1","description":"Development and Hot Reload Middleware for Koa2","license":"MPL","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"app-root-path":"^2.0.1","chalk":"^2.4.2","joi":"^14.3.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^7.2.1","@commitlint/config-conventional":"^7.1.2","ava":"^1.0.1","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^3.0.0","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.12.0","eslint-config-shellscape":"^2.0.2","husky":"^1.3.1","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","nyc":"^13.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"e2fcf193525db5a9a8eacfb6f849f188af663db0","_id":"koa-webpack@5.2.1","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-Sh/UppbFmxpEXi/A5TfwR4aXdbZH0jzhBHBv7gc9FIw9q/tBN6R6p4q+c/RUYFbCjpyS2EKR26ODgJnjDeX9wg==","shasum":"2594acdb37c6a76874abf153b26f453083472138","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.1.tgz","fileCount":8,"unpackedSize":29806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNKWICRA9TVsSAnZWagAA2QAP/3Vkfx7Argk81LodIRBh\nsl1OdFyLn95vBZAhmk700jSJRDj89eAEeN1N/tpxqF9Egxh5OMylclxjHagA\n0cvkOfIMzYFzkEcCuCIAsVVHKIlGnkQTXEDENe4gEAI+qjrMAfUmUTGwIaGb\nqZPMV5yQSHaXgrrHyuu6k+vOQGiSzBnmW91J3lWNbUVp4ooWOH2OuTv7AXoR\nv2MY942C0p/AoNcVsSOmcL6eJORJDGkH3g8AfJfqpGhRnYuDacjPHHOdGFRU\nQmBEhQyh0UjZ4hYqzi6V6uCglDpzUUxHtiiwOWA/f2F28E5i944nogoDSGGd\nggdDHZ+t1jRNb7z5enlNyzOLi+9J/BWDwKavUc0Zt1mWOQxRkkLOK/skVIdc\nXJu5LWeTfDFFdmUBr6JKK+C8xsayMhQgTaMxX37S0doo/x1iVse2RMJ/E+Rt\nigNCpFeEjJIefpspvTf6PDeqfyy+WQ7SE0jAkcTNLJ8pY43xlTntyEdgSdVX\n7KXJEmpUDdC8ef9nECLsZH90LI2L4O2HN0k8f9eNmVIDLDx8XtLlUDbWQp0N\nIwazJDVfHerh994j936hFAT7YE0aP9gTbJiOFXKwZquE0yZgoTc+S1bglaAh\nEf+K99zF5Wc8Cjh/FSiHnsoBmbetzT0bzGfZKsX7gwHQYxO8sph7K+9NN9v+\n3Xhf\r\n=QJ9r\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHj3xRO4TAQLd/OMYTeUDnKRj1yTgpfXMZyJc/fgOC0JAiEA7twU3Jz1EbzD2VTewdDEDyryDlU8r44bpXBRrBzDy4w="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.1_1546954120151_0.5205347680117687"},"_hasShrinkwrap":false},"5.2.2":{"name":"koa-webpack","version":"5.2.2","description":"Development and Hot Reload Middleware for Koa2","license":"MPL","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"app-root-path":"^2.0.1","chalk":"^2.4.2","joi":"^14.3.1","loud-rejection":"^1.6.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^7.2.1","@commitlint/config-conventional":"^7.1.2","ava":"^1.0.1","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^3.0.0","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.12.0","eslint-config-shellscape":"^2.0.2","husky":"^1.3.1","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","nyc":"^13.3.0","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^4.4.0","supertest":"^3.1.0","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"1ea51485ff1018334d428ef4c34e6d3523b7a3bf","_id":"koa-webpack@5.2.2","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-4DHir+7XcOLnhPg3UCRYzljqTh2ri5XcjV2+Cjo4BrsM/CxSlMZ7rj5KaGoWxmm5rYlyA8+L190diKgCXCAj7Q==","shasum":"e2b958038eec728c20f52437366bdde05169050c","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.2.tgz","fileCount":8,"unpackedSize":29856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgoPZCRA9TVsSAnZWagAAifsP/3BDJLBDI2NTNP0h1FJx\n/Fhv4IZitlFgDpwhu/YiDr1IUY5Bz3ube57nNT9hUkBEG2mUwEWoHhie+K9s\nykTTRVuItwashkiAQvOZvng+aCyr6+/fa8ThsS0Tb0mm9RvCJbHuTyVl1/gu\nSYrSlHELqJTIuQi+SwkeNn0U9Oa5bP7SHAflkkHuGNe6qzzTYl4MjoBRyfS/\nWciGtehk59mk8GeX3gWkZ8NXoxrMXj7Mjwxs1XXkQ/rJI90DNLDoFoJl0MfS\nKlKQ0pTqK0HOP1rlpfakAUk19QomdEXeYm7uD7GTznWcjuSWzbCcjQNYrxEp\n9NmaA9Qwlygf06itKigBZyp4eGVCJvmWD7jx44flIRVo9cfNa2f7MZ2MXfmJ\nDMeGr/Wx9cbqzsNgGeqjzsTfUDNSHec8jrKYMj678Ww5KsnzQioKRSMOycQq\nIO1mFL85wziZ48OQ6OGo3DXmvJoNa7qirwx8XqUrfu9a0hEgVWaAO//WN4kM\n6SpE+EeBoTaGj6z+4IdG2+IJgwyLCImd2xI8oVKOiJISE9tGNU1OQGESjoAH\nI9pBxGDi19q7V4JVER2UzMdYLTvH2Ar/K0ytiLEjhwlXHgo6anYCYcMq0G8u\nNrpw2d8Lh+UhlRaOnFL+yD6h3lF9nERCaTBxCnJbOjgTmXYwTcr10ugJAnyA\nBGy3\r\n=VU7r\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAauR/bGYy5+h2lcr9EUa0HNgDTpAoGuw/zptrLrY/4ZAiBdekhuL7hdP2JfGLr0+9MpEZj5YNreW9EY6mOkNhDidA=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.2_1552057304604_0.7834104116652179"},"_hasShrinkwrap":false},"5.2.3":{"name":"koa-webpack","version":"5.2.3","description":"Development and Hot Reload Middleware for Koa2","license":"MPL-2.0","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"@hapi/joi":"^15.0.0","app-root-path":"^2.0.1","chalk":"^2.4.2","loud-rejection":"^2.1.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^7.2.1","@commitlint/config-conventional":"^7.1.2","ava":"^1.4.1","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^3.0.0","del":"^4.1.1","del-cli":"^1.1.0","eslint":"^5.12.0","eslint-config-shellscape":"^2.0.2","husky":"^2.2.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","nyc":"^14.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^5.0.2","supertest":"^4.0.2","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"d4881fe1a139a952442e618a0e0a88cc8a62c5cf","_id":"koa-webpack@5.2.3","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"dist":{"integrity":"sha512-EbjGpCDE4K0GeKsQY+rb/bOfgel4QsBGwsI+pt3g0m1SQDDnXqpwFlWEz2V2Wm7rEDWnlK0MQ7o0vWHYmOCmmA==","shasum":"0fd510c770c0ae8e6e98e568ea0f121a41926001","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.3.tgz","fileCount":8,"unpackedSize":29872,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczec6CRA9TVsSAnZWagAAF1YP/1jfjudRN7HdnMM4/Ltb\nzae8l+F2pdOe6oIDtd5JPuv3QAsj0Y3B3S4xCkXpbGzHkNjLzN6WdHBA4w4Q\nLtN5uz3rGcfbLFS73ztouk/vnP1OCf30AojmqoQ4/lR0IZcqxs32BKSlRpkL\n42a7qUkdms5f49HPOtybJg4azlcUd9VuExdByE0IBM0SToy4avXfp7aW/Moi\nOabNm/2HrosplprXrc4n7uwwDXse6NwuiC/H7XmBz04/Kc3WJK7Sfm1a177y\nVGE0eElTdQW1gWzBD/e7uMbtGHwyZrasWShpR4kAV6lplVgueo9bQTG40TL2\nPkIRpElb6AiWbirJY/3bmyAgwVsQpiK09G/bB6hy7FUAm8kWBOuy1RFn290f\nY1KdI1eX/gadoR75EYSQbk5CvPwYDnM9Eord905piN5DAVxc7lr5LqBZbT1n\nNOE6fuXWoLPj4Cac8mcXsQ2acwI1v4CLXT3JuTRmc5yUCh3T4YVksPSmg8B3\nXQp+k1L3+69qlIB4PUGf79/PBbijEESypSeqETk5XAP4T/mYhDgnmznuaHmz\nYxsxaIbg3L2d0vQBHzqVYIUxpvor8v6X3gXc0YwtaHvL/b+uEnM6jYpat1YD\nibq16imHn1FHZ0ikmJSr/kuuWYL2RpRUzIgoLCTh5wi9jb7QHj+p81fk/K5v\nXpoy\r\n=tJuu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/IZ8UUMB7pujp6IeBvrUC2g2rw+zdvhulyqHaI5a1XAiBarzhF+jTybkV7NHTHNlafcEuKjBDyoivHPS/CqBTX8w=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.3_1556997945772_0.3941003217679806"},"_hasShrinkwrap":false},"5.2.4":{"name":"koa-webpack","version":"5.2.4","description":"Development and Hot Reload Middleware for Koa2","license":"MPL-2.0","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"@hapi/joi":"^15.0.0","app-root-path":"^2.0.1","chalk":"^2.4.2","loud-rejection":"^2.1.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","ava":"^2.2.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^4.0.0","del":"^5.0.0","del-cli":"^2.0.0","eslint":"^6.0.1","eslint-config-shellscape":"^2.0.2","husky":"^3.0.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^9.2.0","memory-fs":"^0.4.1","nyc":"^14.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","standard-version":"^6.0.1","supertest":"^4.0.2","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"ava":{"files":["!**/fixtures/**","!**/helpers/**"]},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":"lint-staged","gitHead":"4296afb5ebcc2a9df540b94654c964c5cf3fcf9a","_id":"koa-webpack@5.2.4","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-NQmX3p65P2Y0sb7WonkfbZRPGrvQYCGjcr4kp9k/hp6GhnZcvY+ZP+LHH4FWvxaCG63nPEx2S2p9jHmH4ErsVw==","shasum":"817b67655e36ca9942c3cae93f6572d5898732cd","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.4.tgz","fileCount":8,"unpackedSize":29957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLNmHCRA9TVsSAnZWagAAQU0QAJlSlRpvc+Llp5Tff0lz\ngoKFoPsvb0gcjRy9W7QOfTf8H9WZtPWjIuHrK28R2/b/zVi6iVGubK9DhLiL\naFz+yKp+Dn6fBEnqL71btSW6rp65/huqgfS9Uzz1fIlk/5a1gCoFJ/t+i2G7\nkcLJqM4urrH0Jya3mPs8NnvoA34f6tj2bVfS7TBujSlZIWOEavAvfTTVNHJq\nfGS/C9h93X7/C3kaR3DhdqAbFKr1zp2nt9o3KFv5qfTAvDMIYJzjHu/dgkW7\n/hO6ttTCehXEEUDVRrkBn916CxI7/+zWsBubl5y0i+zLrLln+hCPnxCofRw5\nlYBOonKxex3ZSIv4jQP4P9PUuaytHXr0KJEceqdF9Qj+URUBGg/dsjag/X/K\noRfDFQZ7gz4Mshg7/ik3yMW/UkEs5CGdM5mSyEHQnsFZy8tDYntOWNdZolE2\nv40d80eaHYDLTqNYSQ8a+Z72lDROmMuR5BqqARdNivB0pVK0fg/4T1S96onp\nqFZMt0K/JkNXm4oqbYDvRchq2LpaX5JVJe0nRg4PsCVp5NeW7T0NUqv4WuXZ\nlp6GPZhhWdyDCnDMa36eeR7Icsr154iomr23uqojlNH+tg0dmSc8DZVTrAfP\n571HVQpryWT4nuHGZTCbgepmhr5q+6UcJrHEb9N8Q9Y1zuY5bACvbAJfeJ/C\neTgr\r\n=7ggX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtmU/SnuahybBvmACZHuB8wdy0TAI10DSgk3wFmV1zfwIgb0IE7GSjbvB5rl2vqW3/iKRy78j1zIzCvpu3xD3SAks="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.4_1563220358890_0.9839688700323457"},"_hasShrinkwrap":false},"5.2.5":{"name":"koa-webpack","version":"5.2.5","description":"Development and Hot Reload Middleware for Koa2","license":"MPL-2.0","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"@hapi/joi":"^15.0.0","app-root-path":"^2.0.1","chalk":"^2.4.2","loud-rejection":"^2.1.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","ava":"^2.2.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^4.0.0","del":"^5.0.0","del-cli":"^2.0.0","eslint":"^6.0.1","eslint-config-shellscape":"^2.0.2","husky":"^3.0.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^9.2.0","memory-fs":"^0.4.1","nyc":"^14.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","supertest":"^4.0.2","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"ava":{"files":["!**/fixtures/**","!**/helpers/**"]},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":"lint-staged","gitHead":"09f9ce3a6f7e6a56acbf78d24ef54a2bbf5ca70d","_id":"koa-webpack@5.2.5","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"integrity":"sha512-0+Wn8dHRoKqORybYYROb4aYfpHXg+TqfxTgwxcWHgRIrPi3SLMf6pzvlgYBPWXULAN1cW1tGCh1iXho2Ez6E3Q==","shasum":"d6855bed7cf14b8e16baff07d7e058a30338bbc5","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.2.5.tgz","fileCount":8,"unpackedSize":29923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJ2FxCRA9TVsSAnZWagAAUToP/3U4QhmAcdXDgYit3EL1\n+hPU+mIBu9IOI0wvWXkicseDE5ZrZHUr94hKuasVcrqXbJSuzyC3H1j5DUD8\n28jTkMrBC7+UJj4eGBxXwlIIePDp2oBzCqxMPKEC3EHhtjXyzd5mBcBQhtPw\njYcAN9GURNzJ4xI16FXyrQfw0AkWOx/Gox0qNCBDwfn/yStrO8ECrgtoHZPR\n/CXiZ6GLFepzqXBhhZtSMiT3o3g3CpCAb2RTD32CKgSu3ElPSypV2V375MFX\nQpgJ2wJl7d0u2Jjzp5px1sLEYtK8QFq0jR4Jc/P5OV482xQ5GwZ8nP5l9PMz\no6/4NxTxs7w/hEpy1FDurbLQUKDpFBJEFJ4FI5OSRAHeycT7u/ARoWCWo8TV\nFbsNd2uLmaLM86uPls1w/DMh4Y0Kpsp2pXBnLDQrbn9DyAmm3aZC7GqUd0qM\nHyRtg/NICyvQzCoAfzWrnvQ4JDZIRrxtzFTJLonoGExW2b2ud60aWwLknWV3\njX35nC1lhLdIG/E1EDYujduuMXtulauXlyStLhY0ihegmiGQ3lhRMf66Ofza\nCBOxkb2FDUKsToN6W1doAsZkR3RrCTKZ2bRfYL4IIQkX/l6AtNXjHs9RE+/p\nNjEq6WZ/IjRVFExkClLBm+uqSltxKZILwp/t+1xVsCeNtb+9uTJm/EYK9uyZ\nbn7W\r\n=lULa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6qNuKsoGRuVGz3Xo4t9Y7/tLL4qGtu1SG8N+C0WsacgIgfumP7CMhBxH4Wvd+GATq8yMEg+EYojKD9G5JyNaKRZc="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.2.5_1579639153365_0.12570185100128795"},"_hasShrinkwrap":false},"5.3.0":{"name":"koa-webpack","version":"5.3.0","description":"Development and Hot Reload Middleware for Koa2","license":"MPL-2.0","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 8.0.0 < 9.0.0 || >= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"@hapi/joi":"^15.0.0","app-root-path":"^2.0.1","chalk":"^2.4.2","loud-rejection":"^2.1.0","merge-options":"^1.0.0","webpack-dev-middleware":"^3.0.0","webpack-hot-client":"^4.1.0"},"devDependencies":{"@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","ava":"^2.2.0","conventional-github-releaser":"^3.1.0","cross-env":"^5.1.6","deepmerge":"^4.0.0","del":"^5.0.0","del-cli":"^2.0.0","eslint":"^6.0.1","eslint-config-shellscape":"^2.0.2","husky":"^3.0.0","killable":"^1.0.0","koa":"^2.2.0","koa-compose":"^4.0.0","lint-staged":"^9.2.0","memory-fs":"^0.4.1","nyc":"^14.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","supertest":"^4.0.2","webpack":"^4.28.0"},"keywords":["koa","middleware","webpack"],"ava":{"files":["!**/fixtures/**","!**/helpers/**"]},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":"lint-staged","gitHead":"5b3eb1f75d6f14a2bc15ddeb65c6b5f9074a5b50","_id":"koa-webpack@5.3.0","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"integrity":"sha512-dAZ1Dpv5anpoKijjKHwxUv5nMumreEZtCvqneRlSltWXviJ7KiilwveuK2BMudrRsg8kWq52mo8ETR+VewE6Cg==","shasum":"b95bd83283ff665088f0ebdd10d47fc6857a9cbc","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-5.3.0.tgz","fileCount":8,"unpackedSize":30401,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMEGBCRA9TVsSAnZWagAADrgP/2l9k+5lBtSEZLBVcp7F\nY/CpKR3bRpCgIcAFGFPjPE87cMm5HDo0xOrUkHQzredWHaIWvlVUQphqRps9\nDP2PeqNEbrGQTOqB0ylEf+W0UlLrsOGX4zjJEoc9g+EY9PWJA0BuTxUT2T8J\niouF9Tr5KMNOJi0YwkV2T5VJkoJQlHU9+lCxSnDjjlHu+wl3cZplPfuTB4Oa\nHbXDX1OOWdUEHaZxDb/Xqx/hnKyNOIb7KXgPuyjU8hynJIMMYMsJrcSDwJxT\ngAuk1SjBZfxcirmBjj4/Kr/g9PWqbAcp25G0zgGKmn9Sv55bSv8K7pygaGvj\nSp5f7cwK1rcAXrnZLOsuhZi7nTC0rYwomrCjLZWgvAfwGMGE0gboNVSBrcRS\nIe9q+hQkIOoQr45hvwh8p5jGwQ/SBLk26YQQG/6LU1AbaWg/AVaHh4mHaIc9\njfGmuL7emszoAIdZvM7Lp313MMnmY66VmpDmyMHmDThPRyhPgf/A5rL9RvqA\nf7BC/FvgwpqIIoG0UXxlyczK6a3dqeVkQybOmTVBVFEzcs4TIx3p9JfVK/RC\nvQpz2gxqpCI3/rQ8ZLh4ZQjtfgYQxPzGcmry46yUzCAHdAkdk/ppbe5iChi0\nMOviN/5kGGUozHdkR1T38VGg6UwUEmL9W7K7IilOT9ijmBpKwDhCk3rjYzeS\nEgTM\r\n=2AG2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFBFh5AQfPN/B3flvWDS6yatt1PCleqNPBMqiGuBXwcJAiEA7JYbTTIzItIZHLLd01CtrMRuxE77OS57vA55Dm8vlhg="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_5.3.0_1580220801274_0.6306792654242397"},"_hasShrinkwrap":false},"6.0.0":{"name":"koa-webpack","version":"6.0.0","description":"Development and Hot Reload Middleware for Koa2","license":"MPL-2.0","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"homepage":"https://github.com/shellscape/koa-webpack","bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"main":"lib/index.js","engines":{"node":">= 10.0.0"},"scripts":{"ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"npm run lint && npm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"npm run test -- --verbose","lint":"eslint --fix --cache lib test","lint-staged":"lint-staged","security":"npm audit","test":"ava --timeout=2500"},"peerDependencies":{"webpack":"^4.28.0"},"dependencies":{"app-root-path":"^3.0.0","chalk":"^4.1.0","joi":"^17.2.0","merge-options":"^2.0.0","webpack-dev-middleware":"^3.7.2","webpack-hot-client":"^4.1.2"},"devDependencies":{"@commitlint/cli":"^9.1.2","ava":"^3.11.1","eslint":"^6.0.1","eslint-config-shellscape":"^2.1.0","husky":"^4.2.5","killable":"^1.0.1","koa":"^2.13.0","koa-compose":"^4.1.0","lint-staged":"^10.2.11","nyc":"^15.1.0","pre-commit":"^1.2.2","prettier":"^1.13.4","supertest":"^4.0.2","webpack":"^4.44.1"},"keywords":["koa","middleware","webpack"],"ava":{"files":["!**/fixtures/**","!**/helpers/**"]},"lint-staged":{"*.js":["eslint --fix"]},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS"}},"pre-commit":"lint-staged","gitHead":"1271612ed1f7fa701b463c20d5005c36a744509b","_id":"koa-webpack@6.0.0","_nodeVersion":"14.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Wlg4dEAosthSnXZLWxZe20AF3mMdczX7XD8ElL3GJ5NXpSrvW12KdBPduc6XagKMVGGrCbJ4T9DvD3DUCzqyqg==","shasum":"beac5382ccbdf2bc22f1ebe98954f911b59f4d94","tarball":"https://registry.npmjs.org/koa-webpack/-/koa-webpack-6.0.0.tgz","fileCount":8,"unpackedSize":30084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPScrCRA9TVsSAnZWagAA9ugQAIkMMnGUtPeRd7J30/x3\n1/j8J/1xoUUix0vxCcgVx9mCFtUHCzL3U1Lq9xaFP+CrMInvvJ4OTZ7b6Bz1\nYNUv+jOk8bt8Z9TGa0ZACMfe5BYzKCne+2qCgB5+YitswCB3e9MiNniMXkb5\nKrlX024iI5XyvKcID36lsdGSGTdOUUDeMraDEtcYb8UiQmliUdlcokqvqNBW\n4Sc7BU0jgKhcQ50BvsGsrW93tkIP2BiMxBMjcYFjfW8g/6uBAbQGb0oyk3zY\nQpIdgZyhexlXqFt+k4qKVrCnrkMzQyOl7lpwCxKEehS93YXscdKycSzag9Jk\nx0yz8Xu85GyginHKcVcbT73iqJvwOhnpQyyg94GjgUzp/toXt5SeueUSiRZy\nLQBy4RR+iBapvnGIn5PDTQTAEgCUGHjUiM6+j7j+e5Ml+nQkUa+dJioIGyT1\nuNY6C0OFdThajaygmEUAJYFPuqZVFhCwX5hNgwjR3ABCiPM903iZvRXHcpja\nBjf3ew6uM6h2C4eHwfBwJctQbBoaW8gQ5JqZkSLqDgAWQ4dUE12tnfDoIMRn\nY7IJ2eakY3e9X0BRKXUrkGH5rbiB/LH0sjq8+QM/LAzN7gjw6kLhIqwvS+d4\nH2SZBGOJ4q+Ihk0iJcMUGaKxX0cP68ZdjDJH6JHGcxNAF2zV8V4GmsyuN33j\ndb/5\r\n=cfW8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAudCZHPzOHvkh7xVlyf9X66aK9fJg5eSVVSLlSMGSv2AiAOt8NslUcEpP6JvCWg3KjW425olPr64ub7srF5lv/d5Q=="}]},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/koa-webpack_6.0.0_1597843242297_0.9510797589717255"},"_hasShrinkwrap":false}},"homepage":"https://github.com/shellscape/koa-webpack","repository":{"type":"git","url":"git+https://github.com/shellscape/koa-webpack.git"},"author":{"name":"Andrew Powell","email":"andrew@shellscape.org"},"bugs":{"url":"https://github.com/shellscape/koa-webpack/issues"},"license":"MPL-2.0","readmeFilename":"README.md","users":{"liruiqing":true,"fengmiaosen":true},"keywords":["koa","middleware","webpack"]}