{"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"keywords":["webpack","plugin","transfer","move","copy"],"dist-tags":{"latest":"4.0.1"},"author":{"name":"Len Boyette"},"description":"Copy files and directories in webpack","readme":"## Copy Webpack Plugin\n\nThis is a [webpack](http://webpack.github.io/) plugin that copies individual files or entire directories to the build directory.\n\n### Getting started\n\nInstall the plugin:\n\n```\nnpm install --save-dev copy-webpack-plugin\n```\n\n### Usage\n\n`new CopyWebpackPlugin([patterns], options)`\n\nA pattern looks like:\n`{ from: 'source', to: 'dest' }`\n\n#### Pattern properties:\n\n| Name | Required | Default     | Details                                                 |\n|------|----------|------------ |---------------------------------------------------------|\n| `from` | Y        |             | _examples:_<br>'relative/file.txt'<br>'/absolute/file.txt'<br>'relative/dir'<br>'/absolute/dir'<br>'\\*\\*/\\*'<br>{glob:'\\*\\*/\\*', dot: true}<br><br>Globs accept [minimatch options](https://github.com/isaacs/minimatch) |\n| `to`   | N        | output root if `from` is file or dir<br><br>resolved glob path if `from` is glob | _examples:_<br>'relative/file.txt'<br>'/absolute/file.txt'<br>'relative/dir'<br>'/absolute/dir'<br>'relative/[name].[ext]'<br>'/absolute/[name].[ext]'<br><br>Templates are [file-loader patterns](https://github.com/webpack/file-loader) |\n| `toType` | N | **'file'** if `to` has extension or `from` is file<br><br>**'dir'** if `from` is directory, `to` has no extension or ends in '/'<br><br>**'template'** if `to` contains [a template pattern](https://github.com/webpack/file-loader) | |\n| `context` | N | compiler.options.context | A path that determines how to interpret the `from` path |\n| `flatten` | N | false | Removes all directory references and only copies file names<br><br>If files have the same name, the result is non-deterministic |\n| `ignore` | N | [] | Additional globs to ignore for this pattern |\n| `transform` | N | function(content, path) {<br>&nbsp;&nbsp;return content;<br>} | Function that modifies file contents before writing to webpack |\n| `force` | N | false | Overwrites files already in compilation.assets (usually added by other plugins) |\n\n#### Available options:\n\n| Name | Default | Details |\n| ---- | ------- | ------- |\n| `ignore` | [] | Array of globs to ignore (applied to `from`) |\n| `copyUnmodified` | false | Copies files, regardless of modification when using watch or webpack-dev-server. All files are copied on first build, regardless of this option. |\n| `debug` | **'warning'** | _options:_<br>**'warning'** - only warnings<br>**'info'** or true - file location and read info<br>**'debug'** - very detailed debugging info\n\n### Examples\n\n```javascript\nvar CopyWebpackPlugin = require('copy-webpack-plugin');\nvar path = require('path');\n\nmodule.exports = {\n    context: path.join(__dirname, 'app'),\n    devServer: {\n        // This is required for older versions of webpack-dev-server\n        // if you use absolute 'to' paths. The path should be an\n        // absolute path to your build destination.\n        outputPath: path.join(__dirname, 'build')\n    },\n    plugins: [\n        new CopyWebpackPlugin([\n            // {output}/file.txt\n            { from: 'from/file.txt' },\n            \n            // {output}/to/file.txt\n            { from: 'from/file.txt', to: 'to/file.txt' },\n            \n            // {output}/to/directory/file.txt\n            { from: 'from/file.txt', to: 'to/directory' },\n\n            // Copy directory contents to {output}/\n            { from: 'from/directory' },\n            \n            // Copy directory contents to {output}/to/directory/\n            { from: 'from/directory', to: 'to/directory' },\n            \n            // Copy glob results to /absolute/path/\n            { from: 'from/directory/**/*', to: '/absolute/path' },\n\n            // Copy glob results (with dot files) to /absolute/path/\n            {\n                from: {\n                    glob:'from/directory/**/*',\n                    dot: true\n                },\n                to: '/absolute/path'\n            },\n\n            // Copy glob results, relative to context\n            {\n                context: 'from/directory',\n                from: '**/*',\n                to: '/absolute/path'\n            },\n            \n            // {output}/file/without/extension\n            {\n                from: 'path/to/file.txt',\n                to: 'file/without/extension',\n                toType: 'file'\n            },\n            \n            // {output}/directory/with/extension.ext/file.txt\n            {\n                from: 'path/to/file.txt',\n                to: 'directory/with/extension.ext',\n                toType: 'dir'\n            }\n        ], {\n            ignore: [\n                // Doesn't copy any files with a txt extension    \n                '*.txt',\n                \n                // Doesn't copy any file, even if they start with a dot\n                '**/*',\n\n                // Doesn't copy any file, except if they start with a dot\n                { glob: '**/*', dot: false }\n            ],\n\n            // By default, we only copy modified files during\n            // a watch or webpack-dev-server build. Setting this\n            // to `true` copies all files.\n            copyUnmodified: true\n        })\n    ]\n};\n```\n\n### Testing\n\n[![Build Status](https://travis-ci.org/kevlened/copy-webpack-plugin.svg?branch=master)](https://travis-ci.org/kevlened/copy-webpack-plugin)\n\nRun `npm test`\n\n### FAQ\n\n#### \"EMFILE: too many open files\" or \"ENFILE: file table overflow\"\n\nGlobally patch fs with [graceful-fs](https://www.npmjs.com/package/graceful-fs)\n\n`npm install graceful-fs --save-dev`\n\nAt the top of your webpack config, insert this\n\n    var fs = require('fs');\n    var gracefulFs = require('graceful-fs');\n    gracefulFs.gracefulify(fs);\n\nSee [this issue](https://github.com/kevlened/copy-webpack-plugin/issues/59#issuecomment-228563990) for more details\n\n#### This doesn't copy my files with webpack-dev-server\n\nStarting in version [3.0.0](https://github.com/kevlened/copy-webpack-plugin/blob/master/CHANGELOG.md#300-may-14-2016), we stopped using fs to copy files to the filesystem and started depending on webpack's [in-memory filesystem](https://webpack.github.io/docs/webpack-dev-server.html#content-base):\n\n> ... webpack-dev-server will serve the static files in your build folder. It’ll watch your source files for changes and when changes are made the bundle will be recompiled. **This modified bundle is served from memory at the relative path specified in publicPath (see API)**. It will not be written to your configured output directory.\n\nIf you must have webpack-dev-server write to your output directory, you can force it with the [write-file-webpack-plugin](https://github.com/gajus/write-file-webpack-plugin).\n\n### License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"users":{"corintho":true,"r3nya":true,"rbartoli":true,"zoey1990":true,"j3manoto":true,"igsys":true,"zwxajh":true,"antanst":true,"huangxinxin":true,"sdt":true,"fadihania":true,"ghostcode521":true,"chrisz-b612":true,"gusgarcia":true,"monolithed":true,"aristov":true,"langri-sha":true,"klimnikita":true,"shanewholloway":true,"manny":true,"yedaodao":true,"dheerajvs":true,"shakakira":true,"dbuggerx":true,"podlebar":true,"uptonking":true,"serge-nikitin":true,"monkeykode":true,"creager":true},"bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"license":"MIT","versions":{"0.1.0":{"name":"copy-webpack-plugin","version":"0.1.0","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","node-dir":"^0.1.10"},"scripts":{"test":"mocha"},"devDependencies":{"chai":"^3.4.0"},"gitHead":"4cf2f329b51e4fcf16310df03fdad40946bf28fe","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.1.0","_shasum":"4af0aa7f9894420f4cd3aa53fe8b859fd76f5788","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"4af0aa7f9894420f4cd3aa53fe8b859fd76f5788","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.1.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"0.2.0":{"name":"copy-webpack-plugin","version":"0.2.0","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","node-dir":"^0.1.10"},"scripts":{"test":"mocha"},"devDependencies":{"chai":"^3.4.0"},"gitHead":"9167baaeaea5528172208a6b512d93d946d62dc2","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.2.0","_shasum":"9456097dc344f1afccc3c933fc37c256fa14f485","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"9456097dc344f1afccc3c933fc37c256fa14f485","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.2.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"0.3.0":{"name":"copy-webpack-plugin","version":"0.3.0","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"cd76747b5e920de948098b9ab2d2aa06413165a3","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.3.0","_shasum":"068eb1e98cb4747b0348677785edbe3c6655cb2f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"068eb1e98cb4747b0348677785edbe3c6655cb2f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.3.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"0.3.1":{"name":"copy-webpack-plugin","version":"0.3.1","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"336db6b341fdd9faa4a7d8eabff9b9503b29bbe8","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.3.1","_shasum":"e2df442ee124036a9ed02f35cc10b1dfd6aa2104","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"e2df442ee124036a9ed02f35cc10b1dfd6aa2104","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.3.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"0.3.2":{"name":"copy-webpack-plugin","version":"0.3.2","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"f93eb6a764f864066777e57c46e0af0817eac56e","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.3.2","_shasum":"bd636a2f4113f3f250ead13efeb7f3a5711e0333","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"bd636a2f4113f3f250ead13efeb7f3a5711e0333","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.3.2.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"0.3.3":{"name":"copy-webpack-plugin","version":"0.3.3","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"d327b92f74542d39e8e8b9aee97630c54cc4813a","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@0.3.3","_shasum":"f33bd4270fe4f8eec5591a373fba02e8de762162","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"f33bd4270fe4f8eec5591a373fba02e8de762162","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-0.3.3.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"1.0.0":{"name":"copy-webpack-plugin","version":"1.0.0","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"f02a9f9b34bde5250dcab9f9bbe39cccc41f4ab6","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@1.0.0","_shasum":"4541c695df8f9c11a043c83e5e6da1a1158941ec","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"4541c695df8f9c11a043c83e5e6da1a1158941ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-1.0.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"1.1.0":{"name":"copy-webpack-plugin","version":"1.1.0","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"0eaec4a6c7b00e1c89b4027a8ebd301746368171","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@1.1.0","_shasum":"c7d0a232bebaf775c6f42ac44f079d532d492aa8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"c7d0a232bebaf775c6f42ac44f079d532d492aa8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-1.1.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"1.1.1":{"name":"copy-webpack-plugin","version":"1.1.1","description":"Copy files and directories in webpack","main":"index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^3.10.1","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"test":"node ./node_modules/mocha/bin/mocha"},"devDependencies":{"chai":"^3.4.0","mocha":"^2.3.4"},"gitHead":"d47a06ede412a4982991014076c6e88b2293497b","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@1.1.1","_shasum":"7ef9321dc2b17d0127b91817095fc6f21021496e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"7ef9321dc2b17d0127b91817095fc6f21021496e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-1.1.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"directories":{}},"2.0.0":{"name":"copy-webpack-plugin","version":"2.0.0","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"2359cba2d0244936e539522f15539e7fafe59056","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.0.0","_shasum":"3e676446a09b7c1bbead873f3d0ec77793d43cc3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"3e676446a09b7c1bbead873f3d0ec77793d43cc3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.0.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.0.0.tgz_1460692843129_0.5514434291981161"},"directories":{}},"2.0.1":{"name":"copy-webpack-plugin","version":"2.0.1","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"6a05f2ec83d5a44d3c20e2ef18f646f70dec8687","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.0.1","_shasum":"73d5b3d4d82c1bd10829a4737aab7673246a70c3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"73d5b3d4d82c1bd10829a4737aab7673246a70c3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.0.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.0.1.tgz_1460697859935_0.45549954008311033"},"directories":{}},"2.1.0":{"name":"copy-webpack-plugin","version":"2.1.0","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"b10bb6574ad010600cb242b924c9cdbed4b1707f","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.0","_shasum":"71c4f2d34272ae36df3d293ef9cfe76b190489ad","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"71c4f2d34272ae36df3d293ef9cfe76b190489ad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.0.tgz_1460838424226_0.13250536588020623"},"directories":{}},"2.1.1":{"name":"copy-webpack-plugin","version":"2.1.1","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"348b62b43bcb19cda515502e17664611fa85e8af","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.1","_shasum":"66cd1c41375f9b48f44c0a627328e7efe7248b7d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"66cd1c41375f9b48f44c0a627328e7efe7248b7d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.1.tgz_1460841256291_0.7978333730716258"},"directories":{}},"2.1.2":{"name":"copy-webpack-plugin","version":"2.1.2","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"982c60b4bb44df7bbe90d43f5ed3c2ecbc7cf561","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.2","_shasum":"f4150ee783860d702e5b9391ffe7c72a6128dde6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"f4150ee783860d702e5b9391ffe7c72a6128dde6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.2.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.2.tgz_1461439968165_0.682680340250954"},"directories":{}},"2.1.3":{"name":"copy-webpack-plugin","version":"2.1.3","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"8a67f98ea654d54a7991337e687ea0130a7f339b","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.3","_shasum":"d45e653824804d11fe194c5e2103315fc296023b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"d45e653824804d11fe194c5e2103315fc296023b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.3.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.3.tgz_1461440166440_0.7726620547473431"},"directories":{}},"2.1.4":{"name":"copy-webpack-plugin","version":"2.1.4","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"4025f8a1fec37ed3ab0c64f0fb68ec7f99234e32","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.4","_shasum":"1c832a94940960ee2316ff3e2735936da766548a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"1c832a94940960ee2316ff3e2735936da766548a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.4.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.4.tgz_1463121441874_0.2532865183893591"},"directories":{}},"2.1.5":{"name":"copy-webpack-plugin","version":"2.1.5","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"pragmatist lint","watch-lint":"pragmatist watch-lint","test":"pragmatist --es5 --type-assertions test","watch-test":"pragmatist --es5 --type-assertions watch-test","build":"pragmatist --es5 build","watch-build":"pragmatist --es5 watch-build"},"devDependencies":{"chai":"^3.4.0","eslint":"^2.7.0","eslint-plugin-jsdoc":"^2.3.1","eslint-plugin-lodash":"^1.6.5","eslint-plugin-react":"^4.3.0","pragmatist":"^3.0.21"},"gitHead":"91205306c5833813ce1f0ef26f82c1041fc12f0f","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.5","_shasum":"c2a311737def0d493102f7c62ea94638cccf63f4","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"c2a311737def0d493102f7c62ea94638cccf63f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.5.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.5.tgz_1463153968500_0.8068870154675096"},"directories":{}},"2.1.6":{"name":"copy-webpack-plugin","version":"2.1.6","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"d5e59e018a37ba664bab3b4d07d3dfe9498edd3a","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@2.1.6","_shasum":"4f88c388fceaf2b7ab0bb239c7d6222c829c9f60","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"4f88c388fceaf2b7ab0bb239c7d6222c829c9f60","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-2.1.6.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-2.1.6.tgz_1463252131807_0.5233784634619951"},"directories":{}},"3.0.0":{"name":"copy-webpack-plugin","version":"3.0.0","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"a753c1676adbd366c0b301022a991fe172be8de1","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@3.0.0","_shasum":"f4039a799823a4b551fda29cb57e9430dde17c68","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"f4039a799823a4b551fda29cb57e9430dde17c68","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-3.0.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-3.0.0.tgz_1463272151331_0.8961700932122767"},"directories":{}},"3.0.1":{"name":"copy-webpack-plugin","version":"3.0.1","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"3b1a451b54dba6e12a8ac979887b15385f28915c","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@3.0.1","_shasum":"9bb3e9d6c6064de65c5bce44cf236b4d077a2131","_from":".","_npmVersion":"2.14.12","_nodeVersion":"6.2.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"9bb3e9d6c6064de65c5bce44cf236b4d077a2131","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-3.0.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-3.0.1.tgz_1464584481299_0.1540836349595338"},"directories":{}},"4.0.0":{"name":"copy-webpack-plugin","version":"4.0.0","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10","loader-utils":"^0.2.15"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","test:nolint":"npm run build && npm run build:tests && mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"1423818cb3f550854531a98625c985ecefe9c75f","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@4.0.0","_shasum":"385e7f8deeb993f6d48b9f9854d50391912633ae","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"385e7f8deeb993f6d48b9f9854d50391912633ae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-4.0.0.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-4.0.0.tgz_1477252264513_0.9662640381138772"},"directories":{}},"4.0.1":{"name":"copy-webpack-plugin","version":"4.0.1","description":"Copy files and directories in webpack","main":"dist/index.js","repository":{"type":"git","url":"git+https://github.com/kevlened/copy-webpack-plugin.git"},"keywords":["webpack","plugin","transfer","move","copy"],"author":{"name":"Len Boyette"},"license":"MIT","homepage":"https://github.com/kevlened/copy-webpack-plugin","dependencies":{"bluebird":"^2.10.2","fs-extra":"^0.26.4","glob":"^6.0.4","is-glob":"^3.1.0","loader-utils":"^0.2.15","lodash":"^4.3.0","minimatch":"^3.0.0","node-dir":"^0.1.10"},"scripts":{"lint":"eslint src/ tests/","pretest":"npm run lint && npm run build && npm run build:tests","test":"mocha compiled_tests/","test:nolint":"npm run build && npm run build:tests && mocha compiled_tests/","build":"babel src/ --out-dir dist/","build:tests":"babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"},"devDependencies":{"babel-cli":"^6.8.0","babel-preset-es2015":"^6.6.0","chai":"^3.4.0","eslint":"^2.9.0","mocha":"^2.4.5","ncp":"^2.0.0"},"gitHead":"de4ff3231646548e9b524cde45cc1655cbb3373d","bugs":{"url":"https://github.com/kevlened/copy-webpack-plugin/issues"},"_id":"copy-webpack-plugin@4.0.1","_shasum":"9728e383b94316050d0c7463958f2b85c0aa8200","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kevlened","email":"boyettel@gmail.com"},"dist":{"shasum":"9728e383b94316050d0c7463958f2b85c0aa8200","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/copy-webpack-plugin/-/copy-webpack-plugin-4.0.1.tgz"},"maintainers":[{"name":"kevlened","email":"boyettel@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-webpack-plugin-4.0.1.tgz_1479085838474_0.2435299465432763"},"directories":{}}},"name":"copy-webpack-plugin","time":{"modified":"2017-03-27T19:32:46.330Z","created":"2015-10-27T02:33:59.354Z","0.1.0":"2015-10-27T02:33:59.354Z","0.2.0":"2015-10-29T02:52:15.343Z","0.3.0":"2015-11-27T20:31:34.174Z","0.3.1":"2015-11-27T20:36:09.886Z","0.3.2":"2015-11-28T01:41:53.949Z","0.3.3":"2015-11-28T01:51:49.809Z","1.0.0":"2016-01-24T21:29:45.189Z","1.1.0":"2016-01-26T06:32:57.890Z","1.1.1":"2016-01-26T06:42:24.598Z","2.0.0":"2016-04-15T04:00:46.595Z","2.0.1":"2016-04-15T05:24:20.521Z","2.1.0":"2016-04-16T20:27:04.617Z","2.1.1":"2016-04-16T21:14:18.700Z","2.1.2":"2016-04-23T19:32:51.501Z","2.1.3":"2016-04-23T19:36:06.973Z","2.1.4":"2016-05-13T06:37:24.860Z","2.1.5":"2016-05-13T15:39:29.029Z","2.1.6":"2016-05-14T18:55:35.086Z","3.0.0":"2016-05-15T00:29:14.473Z","3.0.1":"2016-05-30T05:01:24.311Z","4.0.0":"2016-10-23T19:51:07.449Z","4.0.1":"2016-11-14T01:10:38.712Z"},"readmeFilename":"README.md","homepage":"https://github.com/kevlened/copy-webpack-plugin"}