{"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"dist-tags":{"latest":"2.2.0","beta":"1.0.0-rc.0"},"author":{"name":"webpack Contrib Team"},"description":"UglifyJS plugin for webpack","readme":"<div align=\"center\">\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[![cover][cover]][cover-url]\n[![chat][chat]][chat-url]\n[![size][size]][size-url]\n\n# UglifyJS Webpack Plugin\n\nThis plugin uses [uglify-js](https://github.com/mishoo/UglifyJS2) to minify your JavaScript.\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 `uglifyjs-webpack-plugin`:\n\n```console\n$ npm install uglifyjs-webpack-plugin --save-dev\n```\n\nThen add the plugin to your `webpack` config. For example:\n\n**webpack.config.js**\n\n```js\nconst UglifyJsPlugin = require('uglifyjs-webpack-plugin');\n\nmodule.exports = {\n  optimization: {\n    minimizer: [new UglifyJsPlugin()],\n  },\n};\n```\n\nAnd run `webpack` via your preferred method.\n\n## Options\n\n### `test`\n\nType: `String|RegExp|Array<String|RegExp>`\nDefault: `/\\.js(\\?.*)?$/i`\n\nTest to match files against.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        test: /\\.js(\\?.*)?$/i,\n      }),\n    ],\n  },\n};\n```\n\n### `include`\n\nType: `String|RegExp|Array<String|RegExp>`\nDefault: `undefined`\n\nFiles to include.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        include: /\\/includes/,\n      }),\n    ],\n  },\n};\n```\n\n### `exclude`\n\nType: `String|RegExp|Array<String|RegExp>`\nDefault: `undefined`\n\nFiles to exclude.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        exclude: /\\/excludes/,\n      }),\n    ],\n  },\n};\n```\n\n### `chunkFilter`\n\nType: `Function<(chunk) -> boolean>`\nDefault: `() => true`\n\nAllowing to filter which chunks should be uglified (by default all chunks are uglified).\nReturn `true` to uglify the chunk, `false` otherwise.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        chunkFilter: (chunk) => {\n          // Exclude uglification for the `vendor` chunk\n          if (chunk.name === 'vendor') {\n            return false;\n          }\n\n          return true;\n        },\n      }),\n    ],\n  },\n};\n```\n\n### `cache`\n\nType: `Boolean|String`\nDefault: `false`\n\nEnable file caching.\nDefault path to cache directory: `node_modules/.cache/uglifyjs-webpack-plugin`.\n\n> ℹ️ If you use your own `minify` function please read the `minify` section for cache invalidation correctly.\n\n#### `Boolean`\n\nEnable/disable file caching.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        cache: true,\n      }),\n    ],\n  },\n};\n```\n\n#### `String`\n\nEnable file caching and set path to cache directory.\n\n**webpack.config.js**\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        cache: 'path/to/cache',\n      }),\n    ],\n  },\n};\n```\n\n### `cacheKeys`\n\nType: `Function<(defaultCacheKeys, file) -> Object>`\nDefault: `defaultCacheKeys => defaultCacheKeys`\n\nAllows you to override default cache keys.\n\nDefault cache keys:\n\n```js\n({\n  'uglify-js': require('uglify-js/package.json').version, // uglify version\n  'uglifyjs-webpack-plugin': require('../package.json').version, // plugin version\n  'uglifyjs-webpack-plugin-options': this.options, // plugin options\n  path: compiler.outputPath ? `${compiler.outputPath}/${file}` : file, // asset path\n  hash: crypto\n    .createHash('md4')\n    .update(input)\n    .digest('hex'), // source file hash\n});\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        cache: true,\n        cacheKeys: (defaultCacheKeys, file) => {\n          defaultCacheKeys.myCacheKey = 'myCacheKeyValue';\n\n          return defaultCacheKeys;\n        },\n      }),\n    ],\n  },\n};\n```\n\n### `parallel`\n\nType: `Boolean|Number`\nDefault: `false`\n\nUse multi-process parallel running to improve the build speed.\nDefault number of concurrent runs: `os.cpus().length - 1`.\n\n> ℹ️ Parallelization can speedup your build significantly and is therefore **highly recommended**.\n\n#### `Boolean`\n\nEnable/disable multi-process parallel running.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        parallel: true,\n      }),\n    ],\n  },\n};\n```\n\n#### `Number`\n\nEnable multi-process parallel running and set number of concurrent runs.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        parallel: 4,\n      }),\n    ],\n  },\n};\n```\n\n### `sourceMap`\n\nType: `Boolean`\nDefault: `false`\n\nUse source maps to map error message locations to modules (this slows down the compilation).\nIf you use your own `minify` function please read the `minify` section for handling source maps correctly.\n\n> ⚠️ **`cheap-source-map` options don't work with this plugin**.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        sourceMap: true,\n      }),\n    ],\n  },\n};\n```\n\n### `minify`\n\nType: `Function`\nDefault: `undefined`\n\nAllows you to override default minify function.\nBy default plugin uses [uglify-js](https://github.com/mishoo/UglifyJS2) package.\nUseful for using and testing unpublished versions or forks.\n\n> ⚠️ **Always use `require` inside `minify` function when `parallel` option enabled**.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        minify(file, sourceMap) {\n          const extractedComments = [];\n\n          // Custom logic for extract comments\n\n          const { error, map, code, warnings } = require('uglify-module') // Or require('./path/to/uglify-module')\n            .minify(file, {\n              /* Your options for minification */\n            });\n\n          return { error, map, code, warnings, extractedComments };\n        },\n      }),\n    ],\n  },\n};\n```\n\n### `uglifyOptions`\n\nType: `Object`\nDefault: [default](https://github.com/mishoo/UglifyJS2#minify-options)\n\nUglifyJS minify [options](https://github.com/mishoo/UglifyJS2#minify-options).\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        uglifyOptions: {\n          warnings: false,\n          parse: {},\n          compress: {},\n          mangle: true, // Note `mangle.properties` is `false` by default.\n          output: null,\n          toplevel: false,\n          nameCache: null,\n          ie8: false,\n          keep_fnames: false,\n        },\n      }),\n    ],\n  },\n};\n```\n\n### `extractComments`\n\nType: `Boolean|String|RegExp|Function<(node, comment) -> Boolean|Object>`\nDefault: `false`\n\nWhether comments shall be extracted to a separate file, (see [details](https://github.com/webpack/webpack/commit/71933e979e51c533b432658d5e37917f9e71595a)).\nBy default extract only comments using `/^\\**!|@preserve|@license|@cc_on/i` regexp condition and remove remaining comments.\nIf the original file is named `foo.js`, then the comments will be stored to `foo.js.LICENSE`.\nThe `uglifyOptions.output.comments` option specifies whether the comment will be preserved, i.e. it is possible to preserve some comments (e.g. annotations) while extracting others or even preserving comments that have been extracted.\n\n#### `Boolean`\n\nEnable/disable extracting comments.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: true,\n      }),\n    ],\n  },\n};\n```\n\n#### `String`\n\nExtract `all` or `some` (use `/^\\**!|@preserve|@license|@cc_on/i` RegExp) comments.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: 'all',\n      }),\n    ],\n  },\n};\n```\n\n#### `RegExp`\n\nAll comments that match the given expression will be extracted to the separate file.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: /@extract/i,\n      }),\n    ],\n  },\n};\n```\n\n#### `Function<(node, comment) -> Boolean>`\n\nAll comments that match the given expression will be extracted to the separate file.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: function(astNode, comment) {\n          if (/@extract/i.test(comment.value)) {\n            return true;\n          }\n\n          return false;\n        },\n      }),\n    ],\n  },\n};\n```\n\n#### `Object`\n\nAllow to customize condition for extract comments, specify extracted file name and banner.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: {\n          condition: /^\\**!|@preserve|@license|@cc_on/i,\n          filename(file) {\n            return `${file}.LICENSE`;\n          },\n          banner(licenseFile) {\n            return `License information can be found in ${licenseFile}`;\n          },\n        },\n      }),\n    ],\n  },\n};\n```\n\n##### `condition`\n\nType: `Boolean|String|RegExp|Function<(node, comment) -> Boolean|Object>`\n\nCondition what comments you need extract.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: {\n          condition: 'some',\n          filename(file) {\n            return `${file}.LICENSE`;\n          },\n          banner(licenseFile) {\n            return `License information can be found in ${licenseFile}`;\n          },\n        },\n      }),\n    ],\n  },\n};\n```\n\n##### `filename`\n\nType: `Regex|Function<(string) -> String>`\nDefault: `${file}.LICENSE`\n\nThe file where the extracted comments will be stored.\nDefault is to append the suffix `.LICENSE` to the original filename.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: {\n          condition: /^\\**!|@preserve|@license|@cc_on/i,\n          filename: 'extracted-comments.js',\n          banner(licenseFile) {\n            return `License information can be found in ${licenseFile}`;\n          },\n        },\n      }),\n    ],\n  },\n};\n```\n\n##### `banner`\n\nType: `Boolean|String|Function<(string) -> String>`\nDefault: `/*! For license information please see ${commentsFile} */`\n\nThe banner text that points to the extracted file and will be added on top of the original file.\nCan be `false` (no banner), a `String`, or a `Function<(string) -> String>` that will be called with the filename where extracted comments have been stored.\nWill be wrapped into comment.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        extractComments: {\n          condition: true,\n          filename(file) {\n            return `${file}.LICENSE`;\n          },\n          banner(commentsFile) {\n            return `My custom banner about license information ${commentsFile}`;\n          },\n        },\n      }),\n    ],\n  },\n};\n```\n\n### `warningsFilter`\n\nType: `Function<(warning, source) -> Boolean>`\nDefault: `() => true`\n\nAllow to filter [uglify-js](https://github.com/mishoo/UglifyJS2) warnings.\nReturn `true` to keep the warning, `false` otherwise.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        warningsFilter: (warning, source) => {\n          if (/Dropping unreachable code/i.test(warning)) {\n            return true;\n          }\n\n          if (/filename\\.js/i.test(source)) {\n            return true;\n          }\n\n          return false;\n        },\n      }),\n    ],\n  },\n};\n```\n\n## Examples\n\n### Cache And Parallel\n\nEnable cache and multi-process parallel running.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        cache: true,\n        parallel: true,\n      }),\n    ],\n  },\n};\n```\n\n### Preserve Comments\n\nExtract all legal comments (i.e. `/^\\**!|@preserve|@license|@cc_on/i`) and preserve `/@license/i` comments.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        uglifyOptions: {\n          output: {\n            comments: /@license/i,\n          },\n        },\n        extractComments: true,\n      }),\n    ],\n  },\n};\n```\n\n### Remove Comments\n\nIf you avoid building with comments, set **uglifyOptions.output.comments** to **false** as in this config:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        uglifyOptions: {\n          output: {\n            comments: false,\n          },\n        },\n      }),\n    ],\n  },\n};\n```\n\n### Custom Minify Function\n\nOverride default minify function - use [terser](https://github.com/fabiosantoscode/terser) for minification.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  optimization: {\n    minimizer: [\n      new UglifyJsPlugin({\n        // Uncomment lines below for cache invalidation correctly\n        // cache: true,\n        // cacheKeys(defaultCacheKeys) {\n        //   delete defaultCacheKeys['uglify-js'];\n        //\n        //   return Object.assign(\n        //     {},\n        //     defaultCacheKeys,\n        //     { 'uglify-js': require('uglify-js/package.json').version },\n        //   );\n        // },\n        minify(file, sourceMap) {\n          // https://github.com/mishoo/UglifyJS2#minify-options\n          const uglifyJsOptions = {\n            /* your `uglify-js` package options */\n          };\n\n          if (sourceMap) {\n            uglifyJsOptions.sourceMap = {\n              content: sourceMap,\n            };\n          }\n\n          return require('terser').minify(file, uglifyJsOptions);\n        },\n      }),\n    ],\n  },\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## License\n\n[MIT](./LICENSE)\n\n[npm]: https://img.shields.io/npm/v/uglifyjs-webpack-plugin.svg\n[npm-url]: https://npmjs.com/package/uglifyjs-webpack-plugin\n[node]: https://img.shields.io/node/v/uglifyjs-webpack-plugin.svg\n[node-url]: https://nodejs.org\n[deps]: https://david-dm.org/webpack-contrib/uglifyjs-webpack-plugin.svg\n[deps-url]: https://david-dm.org/webpack-contrib/uglifyjs-webpack-plugin\n[tests]: https://dev.azure.com/webpack-contrib/uglifyjs-webpack-plugin/_apis/build/status/webpack-contrib.uglifyjs-webpack-plugin?branchName=master\n[tests-url]: https://dev.azure.com/webpack-contrib/uglifyjs-webpack-plugin/_build/latest?definitionId=8&branchName=master\n[cover]: https://codecov.io/gh/webpack-contrib/uglifyjs-webpack-plugin/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/webpack-contrib/uglifyjs-webpack-plugin\n[chat]: https://img.shields.io/badge/gitter-webpack%2Fwebpack-brightgreen.svg\n[chat-url]: https://gitter.im/webpack/webpack\n[size]: https://packagephobia.now.sh/badge?p=uglifyjs-webpack-plugin\n[size-url]: https://packagephobia.now.sh/result?p=uglifyjs-webpack-plugin\n","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"users":{"alimaster":true,"denji":true,"shoonia":true,"serge-nikitin":true,"sunzhixun":true,"yeming":true,"ibio":true,"luffy84217":true,"akabeko":true,"mskjp":true,"jger":true,"dengyongchao":true,"akicho8":true,"nickgogan":true,"adamduehansen":true,"ycjcl868":true,"tcrowe":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"license":"MIT","versions":{"0.1.0":{"name":"uglifyjs-webpack-plugin","version":"0.1.0","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"98946273849e68cc45f64d532c8de826ec818754","_id":"uglifyjs-webpack-plugin@0.1.0","_shasum":"2ca331f858e39e21bd2bf70aca7f26d900c27fe3","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"2ca331f858e39e21bd2bf70aca7f26d900c27fe3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.0.tgz","integrity":"sha512-x+qKBX4fnPxRlHHxgndzchC7k0kptiMV0Bo4OXPXj7t449/ccpiy8z6WKA19PUptgMYqu2RzBIV4O+NWiLCi0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIErepb5R8slXggah49B7MRBn6VkXwbEx4KcQ2fjB+RJSAiEAntpYC/lptXiPe+kfNpvQ6op1m8OLZObKdHIJgPr2+DQ="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.0.tgz_1485248408944_0.22687040967866778"},"directories":{}},"0.1.1":{"name":"uglifyjs-webpack-plugin","version":"0.1.1","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"f7a4fb641c57cf2e465423f03e1a0539a23f1e29","_id":"uglifyjs-webpack-plugin@0.1.1","_shasum":"08fce5df8c53d82e151c2c8d4a9f898b2abd71f3","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"08fce5df8c53d82e151c2c8d4a9f898b2abd71f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.1.tgz","integrity":"sha512-CtBbUegjArZXps2YPx2Oc1ljSDo037WU4C9Ef2mqoj/Q3LpkxtTIy90cDcJk/ofIC1BhbAXUEE9xyIL7P1/ZLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPrZylYHJ17xSyQE6sYpI2S24PBb/aDBja9AdDrfclsQIhAPX5wqvee8bjUSrCZOYjy4Jdu6NWCI6UFfoHNqTy5qnz"}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.1.tgz_1485337925472_0.9284311428200454"},"directories":{}},"0.1.2":{"name":"uglifyjs-webpack-plugin","version":"0.1.2","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"30e202106984e9f8e6cc1a6356ef0669a97b5383","_id":"uglifyjs-webpack-plugin@0.1.2","_shasum":"5f321148deb2caa2b24a84adfd066490ebf81a5a","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"5f321148deb2caa2b24a84adfd066490ebf81a5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.2.tgz","integrity":"sha512-Nsbg0ibPw6YvLykjRHwtNon5FXLti2glzsaSM3uEA8HqXMnWx55HP+/AbfV3zulNwVIsRXtBNFh0T/2swTtqKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/5ZtobXEZqcuxzMTMyXCU7ZjWA80ec8xVk9H8tVsTjgIgBbEKkXOJhS1jyq3FCyq+FdDU3F7uDm/brRaoojPUSFU="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.2.tgz_1485349110543_0.46651653898879886"},"directories":{}},"0.1.3":{"name":"uglifyjs-webpack-plugin","version":"0.1.3","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"67959008114dc8e897d8e627597804c128bd5cf2","_id":"uglifyjs-webpack-plugin@0.1.3","_shasum":"4f0826b02bd6fd4245125058eee1a24f07460d1d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"4f0826b02bd6fd4245125058eee1a24f07460d1d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.3.tgz","integrity":"sha512-obxk2vZLwyzesm+7zszq5RDDhgL1UuZmCDtn5JT3wj8Dj7n7UTEiJ0lDb77olbsHUL/AxH8m4PJlfq6dW0cgVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH36YhVddciDibL0t1wxZWYPdbJNlezB77tAPpcpnk7vAiAKk3WWbyHtpzds7sqIDZJRFg+SicjwOJYdz/WIijaI5g=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.3.tgz_1486065645126_0.6409291545860469"},"directories":{}},"0.1.4":{"name":"uglifyjs-webpack-plugin","version":"0.1.4","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"dab194e1096d509ceddd361a68c22f525486bf9e","_id":"uglifyjs-webpack-plugin@0.1.4","_shasum":"e676ec359c1428f9e7d19f7424b727e1d6471f8f","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"e676ec359c1428f9e7d19f7424b727e1d6471f8f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.4.tgz","integrity":"sha512-4sqKggDLEIYCbkuOENiz9eBXrTs854xPO9/NN/duK49Ry/J7ydhW96wBegIOVOdNgiWVySKfzmKuWXDCM+YlMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJ1euUBVq5h5+KnqsHunXUcDVuutBcErTqO4EY+N6i3AIgeCisDKHwL4pzTxLgoOd9iw3UZpUX1DJiIPFYfJPxU4I="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.4.tgz_1486363927117_0.9875494972802699"},"directories":{}},"0.1.5":{"name":"uglifyjs-webpack-plugin","version":"0.1.5","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"pre-push":["test:all"],"gitHead":"278752db80357c493fb30b397f83ff1b02d044fd","_id":"uglifyjs-webpack-plugin@0.1.5","_shasum":"07a16d6ee1dde13f8c53aaf2fd4fe8cce8a16ef3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"07a16d6ee1dde13f8c53aaf2fd4fe8cce8a16ef3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.1.5.tgz","integrity":"sha512-0cVuRKVcpahS2pAB09eaTcusQJetQPy/aqM9aujxYa/ijnqdi+8eX9jvoOp9nwWgGahCmqF96UorWOCcpfO4RA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2WeGtK8Iy/4B0THaYRxhLiytZ1dGhG40cfaStl/HBYgIhAKvTh3FEKN3pNB582CQzW8YfWa/pc07Q3PhGR2i8eT1o"}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.1.5.tgz_1487174210202_0.7766178250312805"},"directories":{}},"0.2.0":{"name":"uglifyjs-webpack-plugin","version":"0.2.0","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"729439497adc57235dcc11fb6329047b92580d1c","_id":"uglifyjs-webpack-plugin@0.2.0","_shasum":"b40346de3ecf5da8a42b261852f185b4c3121b50","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"b40346de3ecf5da8a42b261852f185b4c3121b50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.2.0.tgz","integrity":"sha512-+VuyRQkqBfPx4yEOE0Jh1GuPn34XdDezZHMbhqJD5zkjqQv7GvWc3XY/9L5oHm2xvDchzZ3eOi729JSt/oyOiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC2a0Qq0i711fHVNXZU7F9zFDiE2q8JTFn7Z2R4mugeQAiACfnQmm/ArsEAy6bJFjeUFQqBL2SvDDYzJyCei8eY8pw=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.2.0.tgz_1487509885591_0.358569746138528"},"directories":{}},"0.2.1":{"name":"uglifyjs-webpack-plugin","version":"0.2.1","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"526d763cfa4b303d0685057c53027d8c41cbe403","_id":"uglifyjs-webpack-plugin@0.2.1","_shasum":"01f5b0b4c731b599002377b56bab7791339b54e9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"01f5b0b4c731b599002377b56bab7791339b54e9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.2.1.tgz","integrity":"sha512-MIIgAkgJMDMiktMkRXbIaeLADbrVvcTZiguXJ0i+6m8m97VBIAZjj6ZIDKFqmHEV8Bf7LHgn09QNFmFFn1O7yQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAT+Z3czTBwRT03LBli1LJrp+wfR36tHIECKpld77AARAiB64YFHSGkwOYgzyi15nHeLSBozPaW/oz9RHO+5OXVUxQ=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.2.1.tgz_1487571223683_0.966797222616151"},"directories":{}},"0.2.2":{"name":"uglifyjs-webpack-plugin","version":"0.2.2","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.7.5","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"d99c6c25bf96f597cf6020e3d7b3c694df0e2f7c","_id":"uglifyjs-webpack-plugin@0.2.2","_shasum":"a985122a3cf65b2f3f1c249784142d9e95115699","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"a985122a3cf65b2f3f1c249784142d9e95115699","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.2.2.tgz","integrity":"sha512-HM11Ezx4yJwAPGdQnixX/qsIxQAQpDmGPbtWr5BnNWsDYMyf1ZE3/fKRALm4MZNy041VZjbm5o7UbDeni98wwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFSc9tgPiIMZOzaAadJ50gPF/EdRXZTBF/5jkjSnzpL9AiEAtP2ASCO7bf8O/rp+Maaxl2fOfSYQj+WmA2nhJx30Q1E="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.2.2.tgz_1488467822737_0.7280318858101964"},"directories":{}},"0.3.0":{"name":"uglifyjs-webpack-plugin","version":"0.3.0","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"959f76a1a179e792fb052682b52956d9082ccc65","_id":"uglifyjs-webpack-plugin@0.3.0","_shasum":"9551e7e78b70eec6b100b09f2a049c0d140e643d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"9551e7e78b70eec6b100b09f2a049c0d140e643d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.3.0.tgz","integrity":"sha512-rR1DnZkn8RwRwS2XTzjviERCWqLUI8rys0AjAIGTZYt0nOPshOp9Z/ghUsfqVND2RtKxDNpXa32wc1Mlh9u75w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG5eA/5hl9hvbeslScGSMO0vP68KUJwJdAx+YMGjqsk5AiEA1+JsBM5CZdGTFobCHfa9z7nZV/x9j4wzTyO32KeTFAk="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.3.0.tgz_1488604134123_0.427278712624684"},"directories":{}},"0.3.1":{"name":"uglifyjs-webpack-plugin","version":"0.3.1","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.1.4"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"417ab223ca63dd049c9e6e07f7e80d3412301031","_id":"uglifyjs-webpack-plugin@0.3.1","_shasum":"dbee23420c0d84534736a3723c63022a091410dd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"dbee23420c0d84534736a3723c63022a091410dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.3.1.tgz","integrity":"sha512-Fr8YDQvWMIWGq5kfZA7OfLNcZq/HVFXdzzt/JzlyeFGErLz77iLYKI1XW9605/0eoioRNkr0y3ecwyDb44uWng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF1NkiV1LPCXv+AZ/u1hD71Xwdp6zz8NxlLyJduz7GRcAiEAxYhAO8jQD0Ag4nxfRXOryikIl0D1Ir98t38lL5RtTPk="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.3.1.tgz_1490185502395_0.444370633456856"},"directories":{}},"0.4.0":{"name":"uglifyjs-webpack-plugin","version":"0.4.0","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.2.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"c443a79f6319049f3359db3b2a73dcfe243355e2","_id":"uglifyjs-webpack-plugin@0.4.0","_shasum":"0c696ca4a03db5aa27e038a26dbfe3986d9eafbe","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"0c696ca4a03db5aa27e038a26dbfe3986d9eafbe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.0.tgz","integrity":"sha512-Dik0SKwk3PHsepqKPHI7Qk8hpPjQoj5NVVPturx/z2DXPhJNROUphte6QkFJpVXc0iUJ0tzPAd1AT6MZbUKn3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/ud7tObZi51tCgbum6OE4btbfmKBQZDzIV2oRSfBi9gIgKMsr/zv3F5CJUlp1Snpy1d/YL93fDJAxHD/CJ7aIXUk="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.4.0.tgz_1490881323084_0.24384817946702242"},"directories":{}},"0.4.1":{"name":"uglifyjs-webpack-plugin","version":"0.4.1","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.2.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"5ab8b8a65f6bd8dd4876b5079d9b86894ad7d9c6","_id":"uglifyjs-webpack-plugin@0.4.1","_shasum":"7a3fb941ba43986ebf66fbec5accf04731f9f293","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"7a3fb941ba43986ebf66fbec5accf04731f9f293","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.1.tgz","integrity":"sha512-VQCG23che2x71yWueyss0PHxeOriSH+ZAW+nixwfmBlTrunjSTmTna6E2c4eiKXfxpFfGW5t2ogFz1IyfZuaag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFE2dVo4gcee9hG1Sjh/gYkB/gWhusElKKqFrSEXo2rtAiBL1YsBeFQMXkxbrvjdOTYfMe46qRDmCnUlCvDsW+W53Q=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.4.1.tgz_1491384716088_0.2138755286578089"},"directories":{}},"0.4.2":{"name":"uglifyjs-webpack-plugin","version":"0.4.2","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.2.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"22323879c09826ddc9376bc89b1171313a64ecfa","_id":"uglifyjs-webpack-plugin@0.4.2","_shasum":"efa987d34e34100a0ecfc1104942c344669673e5","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"efa987d34e34100a0ecfc1104942c344669673e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.2.tgz","integrity":"sha512-+Dlr0/NLNabIiQAg8LOrQTVQlPR51ytyw1+uBPcGDBIobCpORIyWXdku+W1/6Wy+hEnJjBi3P1dni9IFmW29bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBfQoXGBrMqd3WPPwFH+CcEPUzyXys2nhXOXWVbqoyYbAiB/4RZx1yKL69TwLNn8UhhkejbQ4KK77+WCT7rhYrAvtQ=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.4.2.tgz_1492017606110_0.041457665618509054"},"directories":{}},"0.4.3":{"name":"uglifyjs-webpack-plugin","version":"0.4.3","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^0.2.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"c253e14aa3c2dfe3bccafde61f35b9d68d022788","_id":"uglifyjs-webpack-plugin@0.4.3","_shasum":"a672a7d6655f94dfa7e09670d48030f37cc93267","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"bebraw@gmail.com"},"dist":{"shasum":"a672a7d6655f94dfa7e09670d48030f37cc93267","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.3.tgz","integrity":"sha512-DXBkzkjp0BXJCoikafjnIEsNzhkO2c/wsY+Rm6dVMpTMfp09zF+jItMKDgzvIteHoIekw01vydgEjofskAtKDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3CoLZiBCkeD0RacngpQ/rVk//muV4MLnfJ9H1tPPHjwIgQUG4Soo/nNSvoIdRcVVOJ747N2i8PtEawJ8N1KxItAI="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"petri.kivikangas@protonmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/uglifyjs-webpack-plugin-0.4.3.tgz_1492284080786_0.9603435376193374"},"directories":{}},"0.4.4":{"name":"uglifyjs-webpack-plugin","version":"0.4.4","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^1.0.1"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"13a257f49718dc3030020fadd10aa28a5145bb82","_id":"uglifyjs-webpack-plugin@0.4.4","_shasum":"7829c50ee5a5b755969d4458357ed5a2dd36fbbd","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"sean.larkin@cuw.edu"},"dist":{"shasum":"7829c50ee5a5b755969d4458357ed5a2dd36fbbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.4.tgz","integrity":"sha512-h6cdKF8Vxawupqw8v1K302bUV8msWgg+M1AHJzmVESPYz18CRTDiW5Y+zXlYfkj9oqdfsDpmzPJRQ/ddwHDAPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGdPhaTcVVr98g16tqYHYoMmqvX/vnaI3DHWOD75/S/tAiEA3veEWdzHXki9Oie5aPvrEDz7UddcnpdjYZlYyRbRyrU="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-0.4.4.tgz_1497809682509_0.7885280437767506"},"directories":{}},"0.4.5":{"name":"uglifyjs-webpack-plugin","version":"0.4.5","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"uglify-js":"^2.8.0","webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"dependencies":{"source-map":"^0.5.6","webpack-sources":"^1.0.1"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","uglify-js":"^2.8.18","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"0d13e6eefab881c430e84b6fa7880cbda2852c04","_id":"uglifyjs-webpack-plugin@0.4.5","_shasum":"ad3e2d1cb99599564cad83631c0b6cba9291856d","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"sean.larkin@cuw.edu"},"dist":{"shasum":"ad3e2d1cb99599564cad83631c0b6cba9291856d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.5.tgz","integrity":"sha512-LQM2Ik4yN8HDmDsGuo25ZjenvjM5A6Uapl5It0Ns4hRLquhj18FpvV+YKQbB5+3NqL9y9NE70ZhPvTjthzZ23Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCweDunz7FCtibiAmRgcR3iCKblVeVRVpARuphfAhsTQgIhAOlQoV2BelpYs0u5x9lcd7RTAV6nQauWnmE9ITgoTSWb"}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-0.4.5.tgz_1497908616444_0.6141425459645689"},"directories":{}},"0.4.6":{"name":"uglifyjs-webpack-plugin","version":"0.4.6","description":"UglifyJS plugin for webpack","main":"./dist","scripts":{"build":"babel src -d dist","test:all":"npm run test:coverage && npm run test:lint","test":"jest --","test:coverage":"jest --coverage --","test:watch":"jest --watch --","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","preversion":"npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"","postinstall":"node lib/post_install.js"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"files":["dist","lib"],"jest":{"collectCoverage":true,"moduleFileExtensions":["js"],"moduleDirectories":["node_modules"]},"author":"","license":"MIT","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3.0.0"},"dependencies":{"source-map":"^0.5.6","uglify-js":"^2.8.29","webpack-sources":"^1.0.1"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-jest":"^18.0.0","babel-plugin-syntax-object-rest-spread":"^6.13.0","babel-plugin-transform-object-rest-spread":"^6.20.2","babel-preset-es2015":"^6.18.0","eslint":"^3.13.1","eslint-config-airbnb":"^14.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-node":"^4.0.1","eslint-plugin-react":"^6.9.0","git-prepush-hook":"^1.0.1","jest":"^18.1.0","sync-exec":"^0.6.2","webpack":"^2.2.0"},"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"pre-push":["test:all"],"gitHead":"689dfa100cfe1ca9201dccfc2628b54500955590","_id":"uglifyjs-webpack-plugin@0.4.6","_shasum":"b951f4abb6bd617e66f63eb891498e391763e309","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"sean.larkin@cuw.edu"},"dist":{"shasum":"b951f4abb6bd617e66f63eb891498e391763e309","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz","integrity":"sha512-TNM20HMW67kxHRNCZdvLyiwE1ST6WyY5Ae+TG55V81NpvNwJ9+V4/po4LHA1R9afV/WrqzfedG2UJCk2+swirw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFQvRcTEAHGcy3aoC7805eOn3Dd5sSZt3QUn3RD5inEnAiBb3Jek7O3qPGJw+ot5KEnxf91a9Eem29GnwhNXsInkpg=="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-0.4.6.tgz_1497909096724_0.6575086114462465"},"directories":{}},"1.0.0-beta.0":{"name":"uglifyjs-webpack-plugin","version":"1.0.0-beta.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"source-map":"^0.5.6","uglify-js":"^2.8.29","webpack-sources":"^1.0.1"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.2","cross-env":"^5.0.1","del-cli":"^1.0.0","eslint":"^4.0.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^4.0.0","memory-fs":"^0.4.1","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.1.0","uglify-js":"^2.8.18","webpack":"^3.0.0","webpack-defaults":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"63a590feb4de53922492caaf803437071ea50985","_id":"uglifyjs-webpack-plugin@1.0.0-beta.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-9fFO3I4M3iuNc0FTzjRA3+RgcJxMoyPPXhJDixsWn9oGdaYIiOTd35b7SlSANPAU4IVjxSG5zDNItP3WWXecMw==","shasum":"0e3954e5d3fbfbf25d2687587f6cd956aa2143c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA9lqh6M8RJQDx/DNoWw0Ji0KY2nIih7ZjVpjYxZPmxDAiB4TCqnmY25ImSMb1g7fNteDDjBsN0QPCVXrBXBpeZiBg=="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0-beta.0.tgz_1498765058755_0.2293022684752941"},"directories":{}},"1.0.0-beta.1":{"name":"uglifyjs-webpack-plugin","version":"1.0.0-beta.1","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"source-map":"^0.5.6","uglify-es":"^3.0.21","webpack-sources":"^1.0.1"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.2","cross-env":"^5.0.1","del-cli":"^1.0.0","eslint":"^4.0.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^4.0.0","memory-fs":"^0.4.1","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.1.0","webpack":"^3.0.0","webpack-defaults":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"cfa6c53a15784bf65bd95c59694da51e0a0110ce","_id":"uglifyjs-webpack-plugin@1.0.0-beta.1","_shasum":"595c14d8b85bedd708ab7a6e811894fbe0e69890","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"595c14d8b85bedd708ab7a6e811894fbe0e69890","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.1.tgz","integrity":"sha512-oTikFgDzLcRN9el3sk/a62/wusCiQwr1mhcAWDHgQlMGKfV1ZrmEo/QB26TEoci2MLcJGnW8QbwOscxhn/7k1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAHuyJxvhFtUH1NR7ZUdVkf6aJam0gzibKTIy+SVaudPAiEA21tyJqY8H9tPhvCqCXW6asX52Pba8HKzlCQJZlezqPc="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0-beta.1.tgz_1499310277424_0.8480768757872283"},"directories":{}},"1.0.0-beta.2":{"name":"uglifyjs-webpack-plugin","version":"1.0.0-beta.2","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^9.2.9","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.5.6","uglify-es":"^3.0.24","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.2","cross-env":"^5.0.1","del-cli":"^1.0.0","eslint":"^4.0.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^4.0.0","memory-fs":"^0.4.1","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.1.0","webpack":"^3.0.0","webpack-defaults":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"46405e1348a3f1fe8ccecb361b30ac2feccf9ac7","_id":"uglifyjs-webpack-plugin@1.0.0-beta.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-vTt+xUdBbjfIAmaSm3li3y/9k0m35GXV5AZWAUrSDMOAtI0mmhQ4FAQFtqEkmgEGS+A3S+qFaA0dk1lKheYQSw==","shasum":"3652fd4011afed1956566755d545f8b3fec867b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICLTkU0VNzwwkjJbjRMmPiUq+QC6XFsRRBAboVuMXhlXAiAaBWNfcwkGODe3l+ro+s71DvOYxUKVqzZE1w4XlZipiw=="}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0-beta.2.tgz_1500667503531_0.7577707725577056"},"directories":{}},"1.0.0-beta.3":{"name":"uglifyjs-webpack-plugin","version":"1.0.0-beta.3","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^9.2.9","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.5.6","uglify-es":"^3.0.24","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.24.1","babel-jest":"^20.0.3","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-polyfill":"^6.23.0","babel-preset-env":"^1.5.2","cross-env":"^5.0.1","del-cli":"^1.0.0","eslint":"^4.0.0","eslint-config-webpack":"^1.2.3","eslint-plugin-import":"^2.3.0","jest":"^20.0.4","lint-staged":"^4.0.0","memory-fs":"^0.4.1","nsp":"^2.6.3","pre-commit":"^1.2.2","standard-version":"^4.1.0","webpack":"^3.0.0","webpack-defaults":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.3 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"296e95d0cb855c8a1fbf925940bad467443be8de","_id":"uglifyjs-webpack-plugin@1.0.0-beta.3","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-4fpQrnoYEuzAwDxI2zLrKMgrknaWu71CpG4XaMRXWWyUJ7yBM4ueIhNNf0/AcKVSUgBpVudi1i9h9lWdfrU7ZQ==","shasum":"0715c2ee70bd927685c7cbccda678c6ceab6fc0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAuAj8G9ualK6RCvpGkeFmFO+SoeFPRvn3seMCkOoUSpAiBhgniV21bHF+138+s3Ze9ZUMmir9Z7bDgfCIiulHoQ8Q=="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0-beta.3.tgz_1507605883568_0.7331560940947384"},"directories":{}},"1.0.0-rc.0":{"name":"uglifyjs-webpack-plugin","version":"1.0.0-rc.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^9.2.9","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.5.6","uglify-es":"^3.1.3","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"576ecd99284d72f52d97f92f5e7c813ed7f93103","_id":"uglifyjs-webpack-plugin@1.0.0-rc.0","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-gbF2uoxvIn6xQbRR3fe/lmuMV2p0BgvmSecTfW+aG51j549Hcc2aKRtSuYH/NudIwWDOS5DEDSbhEhZu42KF1A==","shasum":"f046e7eb667c111c8052ca3adeadf798da2d2fef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-rc.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD/twdN7Ef1wZgEfk7MzwRgmJTx8m/r2Hh5C93nJ3KhKQIhAObE0v1V3B0RjFnJq2JOA819IV4KNZef6EaWBjMt6nCm"}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0-rc.0.tgz_1508717102369_0.14772262144833803"},"directories":{}},"1.0.0":{"name":"uglifyjs-webpack-plugin","version":"1.0.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.5.6","uglify-es":"^3.1.3","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"716ed982e53ae07fb50ac2a2fb354d0b79e59518","_id":"uglifyjs-webpack-plugin@1.0.0","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-23qmtiLm1X7O0XVSZ54W7XGHykPss+2lo3RYC9zSzK3DDT5W27woZpDFDKguDCnG1RIX8cDnmy5j+dtXxJCA/Q==","shasum":"1c58b5db1ed043e024aef66f8ade25e148206264","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDbcKKcgbdLbzZyVIsM3GemQfj+rCNEPYB60sUPtwMHLQIhANIKgYJNaJESwBRQGMBF8PjTfh+SpSDHnzpXrh9D6x27"}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.0.tgz_1508789223518_0.8717558428179473"},"directories":{}},"1.0.1":{"name":"uglifyjs-webpack-plugin","version":"1.0.1","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.5.6","uglify-es":"^3.1.3","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"dfd1a2b863a5c4443b4a199ab4c4e160aa8e67bc","_id":"uglifyjs-webpack-plugin@1.0.1","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-3IJhab8Xq7s6XqoPiVFuDpijefJsIrzACT4ggDErSxJAsB9GLDyuWpN7vuX4Lslu/nzIRz2NyXNX/fRMOgqRFw==","shasum":"d324da7144d321202df0968c09f6f8e057d5cdc2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDSYNamYQt4qhAn3QnVVLhG3DhLVFow4u1sIw3kvrcWHQIgIuuZPpMQxi6Uw2ZnA3eoggcQbEyzpkOB01tG4FAv8xI="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.0.1.tgz_1508812696790_0.08465858246199787"},"directories":{}},"1.1.0":{"name":"uglifyjs-webpack-plugin","version":"1.1.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"^3.1.3","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"786b332baebcf883de26034f6f9c0db7ece938b2","_id":"uglifyjs-webpack-plugin@1.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-x5+BK4OvEZZvaoXln/Z1JMGq3Nvp5A8d7oQ7Xpyf17lqZV9NYvugfj5aTaYcxDWNoILgVdnlPWNpAWgVdwT1/g==","shasum":"608f156bfc2a7bbfed6d6b9a3e006f4006c6467b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpJjDxz+GIm9Lq6nIq0xV+h50/zE3aLM/1+0nemrXNPwIhAKB1eaNwY+9sbBx0ad2YmLn2hDqyTldMqq0nrMllrncp"}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.0.tgz_1511061808145_0.9161402161698788"},"directories":{}},"1.1.1":{"name":"uglifyjs-webpack-plugin","version":"1.1.1","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"^3.1.3","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"f3fdba9e2e31816027e7340a40b91c1158f2ec21","_id":"uglifyjs-webpack-plugin@1.1.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-JPs2UFQxIbaPd7iOvWx1beA7My7YMo3tjTLTAmxuKFoKHQkt6fB70Jm6nm25ponWp4+gu/7U4eamelgDlu0Y3g==","shasum":"6167c5aae218ee8109de8920bb769b8acbc55d03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE0K4D//fujFQkjkimkNw0bQMj66Yolmi0jxzMY0LZkyAiBSiuQgIyDHsZk0+q2d7YGsbTNw5/2sLORDK9hoUDhpcg=="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.1.tgz_1511465357909_0.2298690271563828"},"directories":{}},"1.1.2":{"name":"uglifyjs-webpack-plugin","version":"1.1.2","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"^3.2.0","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"d97ab11f0837e175381cadfd3bfd04dfd5275678","_id":"uglifyjs-webpack-plugin@1.1.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-k07cmJTj+8vZMSc3BaQ9uW7qVl2MqDts4ti4KaNACXEcXSw2vQM2S8olSk/CODxvcSFGvUHzNSqA8JQlhgUJPw==","shasum":"8a9abc238d01a33daaf86fa9a84c7ebc1e67b0f9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICObUTNCKedejrbLYbTguh2yvvYE+Be1LW2Fp9Cs3XQeAiEAy1YWC4yBG0SfGSWuKcBco7jub4o5I0vD5Ujl4IcTlxw="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.2.tgz_1512048129203_0.14511683047749102"},"directories":{}},"1.1.3":{"name":"uglifyjs-webpack-plugin","version":"1.1.3","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"^3.2.0","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"fe5b200b3cee568e1a0c95c27eb8f53beef168a0","_id":"uglifyjs-webpack-plugin@1.1.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.3","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-aOkwCwbd0nJ2x73n0OYL7KX6Rzyvyq93gcvvpg18/9pGX+kKgkOmrWJO/+Y2qRYoSpuPEd1C83I3LeW8MhrBhw==","shasum":"3fb3d7e1da08839a737dd15f73b6712535254c22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2rkXTeB9ljKthdIZ/o71omVXSKOggPftlvAQ/LAJ6nwIgFuESWbOG9wqauwW6QmoFrH2uSBun26TbBB9BOgG94HA="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.3.tgz_1513219961789_0.884216049220413"},"directories":{}},"1.1.4":{"name":"uglifyjs-webpack-plugin","version":"1.1.4","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"^3.2.1","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"eb0337742bf05e56bbe8c302171dbfea9e5878a2","_id":"uglifyjs-webpack-plugin@1.1.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.3","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-fRrOJ5tv6YCsJIhP9mPRnfgyo4DVNSIfNOa7Gs9aT1NNpeJc85W7GcbVxQgc+9rU3No6tnkbMqZ4xsgRBU+HGQ==","shasum":"e43ad6e736c315024eb99481a7cc9362d6a066be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAr5JQqPbuqwap25+wsQ5HdX2uPCOzh1Zo4bmB3iF+VzAiB+C8wGeopVGPHCagT9NKkJdHyWySswhZnzKRFuesOTcg=="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.4.tgz_1513251208019_0.5804880203213543"},"directories":{}},"1.1.5":{"name":"uglifyjs-webpack-plugin","version":"1.1.5","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test:all":"npm run test:coverage && npm run test:lint","test":"jest","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","test:watch":"jest --watch","test:lint":"eslint . --ext .js --ignore-path .gitignore --cache","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.0","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.3.0","source-map":"^0.6.1","uglify-es":"3.2.2","webpack-sources":"^1.0.1","worker-farm":"^1.4.1"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.0","del-cli":"^1.1.0","eslint":"^4.9.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^4.3.0","memory-fs":"^0.4.1","nsp":"^2.8.1","pre-commit":"^1.2.2","standard-version":"^4.2.0","webpack":"^3.8.1","webpack-defaults":"^1.6.0"},"repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"keywords":["webpack","uglifyjs","plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"025262284c86196d0a4c4fe71e186132579629ec","_id":"uglifyjs-webpack-plugin@1.1.5","_npmVersion":"5.5.1","_nodeVersion":"8.9.3","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-YBGc9G7dv12Vjx8vUQs54DZgAXVf04LlG6dNNiEbTZjL3PbUqiY4uPB9Kv+fUJaqRskEGva/lS7sh08yJr7jnA==","shasum":"5ec4a16da0fd10c96538f715caed10dbdb180875","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDA8mHzSV21+vx/YSr+71JH85XHpBuoYd1KKXRluGYAQIgDBt2EgrvpTCrXoIw1A+t/yAlHBMnSZRKSIvVu5Yb+as="}]},"maintainers":[{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.5.tgz_1514370727238_0.6834251231048256"},"directories":{}},"1.1.6":{"name":"uglifyjs-webpack-plugin","version":"1.1.6","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"4cf5277b0f408715f0a585be07b14b416c07d294","_id":"uglifyjs-webpack-plugin@1.1.6","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-VUja+7rYbznEvUaeb8IxOCTUrq4BCb1ml0vffa+mfwKtrAwlqnU0ENF14DtYltV1cxd/HSuK51CCA/D/8kMQVw==","shasum":"f4ba8449edcf17835c18ba6ae99b9d610857fb19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCzU/3qlo/cq07PDtA/2HGQ59Sgi5JOyFVnbcu8jx7m0gIgD5pRfZblN1eOj/5BgaXiiAJ8KL+qGXkBfnZ9HzZLg1I="}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.6.tgz_1515134949311_0.3652529059909284"},"directories":{}},"1.1.7":{"name":"uglifyjs-webpack-plugin","version":"1.1.7","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepublish":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"75943e1d2d0a3ee151ad09b816a8e7b0578b6776","_id":"uglifyjs-webpack-plugin@1.1.7","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-cpvAHa4TN6LsV1UnyJxQhndwHalYT6WJBRVMmd6023D6A1o6McxKto3RqG6V4fo8a8oC9JVBJjWL944vQp3s0g==","shasum":"46c00a4b28d8a3d40ac5607ddae3f72df5097072","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICwqIROYLH3cbuuEoWpcXJ+Eq2hUccQJuvII/hCOgg+wAiEA6OEIUzEXv6mnL8q1VOKjy4ekZ7UGTkZvW6CIgxVTZwo="}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.7.tgz_1517251498134_0.47982451948337257"},"directories":{}},"1.1.8":{"name":"uglifyjs-webpack-plugin","version":"1.1.8","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"88cde68f95880ba7bdc1cb075100cf3fc3e74e7e","_id":"uglifyjs-webpack-plugin@1.1.8","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-XG8/QmR1pyPeE1kj2aigo5kos8umefB31zW+PMvAAytHSB0T/vQvN6sqt8+Sh+y0b0A7zlmxNi2dzRnj0wcqGA==","shasum":"1302fb9471a7daf3d0a5174da6d65f0f415e75ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.1.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH3fPiBQ6NnG3ZIfaC3z024U6mddD130he1Vkm3XurVMAiAmNN9o/18qKXGtSLJxraxBFfcUe33bTa62fudoFqzFoQ=="}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin-1.1.8.tgz_1517258754872_0.1750528181437403"},"directories":{}},"1.2.0":{"name":"uglifyjs-webpack-plugin","version":"1.2.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"99240e89d61002c7de0b70bf90137d0c4122b03e","_id":"uglifyjs-webpack-plugin@1.2.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-Bc2NeyTTSJAy2JuKaBpdvWyuySPSPHNcj70KFqu7FhfrfsjPo0Kta9jgAvPrQxnz86mOH1tk4n/I8wvZrXvetA==","shasum":"f706fa4c655000a086b4a97c7d835ed0f6e9b0ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.0.tgz","fileCount":11,"unpackedSize":49577,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIELcOTKpqcrn5GzjmMvqQMMFHi0dQgWed5qRC/5TUMu+AiB3dVIPFpk2cO388Py16sMQPISO2jWw2x24sNPX4Bzhmg=="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.0_1518820172772_0.7973256471000802"},"_hasShrinkwrap":false},"1.2.1":{"name":"uglifyjs-webpack-plugin","version":"1.2.1","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"d460f693bc8b9f25c1f1709e1a728e4571501c9c","_id":"uglifyjs-webpack-plugin@1.2.1","_npmVersion":"5.7.1","_nodeVersion":"9.6.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-QN5o8aOJ2PPzmPWFLDrzrtVp2nY+KYZpVw0SCbJrQK1fqOcLb0h5pI7wMR5Q2nZxvSHEUVfgV0djTnJTd3u2eA==","shasum":"e72ae01a31028b198b4631ec98da997dc3386fa2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.1.tgz","fileCount":11,"unpackedSize":50256,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuSJZ3a43RSkBNWyLQ/qs6bfTAqhooHiUJvafLDeaw6gIgE6lnixERF5AkRZIkyb2+D7C2r5/2sjjViAczUryVWiI="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.1_1519412672789_0.9317483776450266"},"_hasShrinkwrap":false},"1.2.2":{"name":"uglifyjs-webpack-plugin","version":"1.2.2","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.1","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.2","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"9f66276c47114572178ea991a244e9073e07a9c0","_id":"uglifyjs-webpack-plugin@1.2.2","_npmVersion":"5.7.1","_nodeVersion":"9.6.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-CG/NvzXfemUAm5Y4Guh5eEaJYHtkG7kKNpXEJHp9QpxsFVB5/qKvYWoMaq4sa99ccZ0hM3MK8vQV9XPZB4357A==","shasum":"e7516d4367afdb715c3847841eb46f94c45ca2b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.2.tgz","fileCount":11,"unpackedSize":50199,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdE9i1Oam0l7dGJWehGQTTQuJPB6Acx4GHeDa6kgQjgwIgAvB8JQsdOMriSc5WlCUkFOD9P6MncmRws4moCV3oQMk="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.2_1519435636843_0.2475822282184914"},"_hasShrinkwrap":false},"1.2.3":{"name":"uglifyjs-webpack-plugin","version":"1.2.3","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"45a6cdfb451cc24bf341384457181a50909c9f54","_id":"uglifyjs-webpack-plugin@1.2.3","_npmVersion":"5.7.1","_nodeVersion":"9.7.1","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-as/50351uuJGiQbhVvE510SCqM/YOWghCzIFJeEOu5oVE0QOZ3/vu2QcnVvu0Lz+vNd0rKsiCFAlbcw0i/YH2w==","shasum":"bf23197b37a8fc953fecfbcbab66e506f9a0ae72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.3.tgz","fileCount":11,"unpackedSize":51659,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBFuW36oa9Sb/Ie63E7kVrpXDP+Kv/TIgr/zs9xli5mAiEA6sgaYfHLgV9f67XcXLQzghCeNUrxegbMuuUPcxTzPUs="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.3_1520721678515_0.20578650060469483"},"_hasShrinkwrap":false},"1.2.4":{"name":"uglifyjs-webpack-plugin","version":"1.2.4","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","travis:lint":"npm run lint && npm run security","travis:test":"npm run test -- --runInBand","travis:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^21.2.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^21.2.1","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"facbcc6cbb724181d5f439b9d424b2c5069cc676","_id":"uglifyjs-webpack-plugin@1.2.4","_npmVersion":"5.7.1","_nodeVersion":"9.8.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-z0IbjpW8b3O/OVn+TTZN4pI29RN1zktFBXLIzzfZ+++cUtZ1ERSlLWgpE/5OERuEUs1ijVQnpYAkSlpoVmQmSQ==","shasum":"5eec941b2e9b8538be0a20fc6eda25b14c7c1043","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.4.tgz","fileCount":11,"unpackedSize":52341,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAyMfBhCW8UGu8TA3aCS4Yhkb5euQN8ociqUkt8UOkIAIgJPZafQ71aoH/2Nm9CS19VkL2BwhPc1MWj9hUtMCKryk="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.4_1521201157679_0.981282195901718"},"_hasShrinkwrap":false},"1.2.5":{"name":"uglifyjs-webpack-plugin","version":"1.2.5","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^22.4.3","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^22.4.3","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"jest":{"testEnvironment":"node"},"gitHead":"39ed7c75f499956890be9347e1983070da5cedea","_id":"uglifyjs-webpack-plugin@1.2.5","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-hIQJ1yxAPhEA2yW/i7Fr+SXZVMp+VEI3d42RTHBgQd2yhp/1UdBcR3QEWPV5ahBxlqQDMEMTuTEvDHSFINfwSw==","shasum":"2ef8387c8f1a903ec5e44fa36f9f3cbdcea67641","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz","fileCount":12,"unpackedSize":54135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa132iCRA9TVsSAnZWagAAybAP/2N6k4QtnC8c5Jnddgbq\nzH4Em1MxyX5G66FMiEqBZpC3tQa+ymEZSBJ0Ee7y408d2PzYIT2VhQSiQ3gH\nQvSTHuN5jZRe4GghXTBsern4IUf0yL/VFLFCt1mQOJk+fXo2+fES9qNAMTgC\nBBRt6ukT39p4KHjNps2A4XZFYkTBL7i5KL78tanbOtyD8oVhTQs+pHa15vrG\nqqEuQJMDlro9RoCBazOwbbw7vfBLTmj6AXTWaAkJlcb/qi4RckH4eo5L741r\nw3OgpD6s4AJgXjt3i6lqWWZw2v+6oecBD1jtwGPlIffiuL96YNqBEtw8Rryz\nObtoN43L1Y2INHAXC7WIU8c/79eRD6I7HI9H0hDHWBA+WS+dBzu/afVP+h7M\nNSrvk8KEkQkaagJGPqCGvfWTHqBkmWNl4pN+vfLb5gSgdBmPIiMISt7Exe70\n5qgqjAPX8/MCX5tGiyruu64g7jkj5BHIAZxwS84W1CTxNE/8r196APZHdJtc\npRRhXsGLHWNsTyxeiIYfLs9feFDT76uCnDWULjUGX4LfouXlVKzcvMwN5dRj\nW42yTTwBpdusIHoWOqqJ8CyYqW9rnj86MqESyHtwYiPW/q0MhqXwXixXilN9\nzF5fbhXrNbnBNsjWkv2INa+Ib1sqqiHbaoGyfpqE2LISziZ+8Lmh5DotoFar\nfDMS\r\n=DnmL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCyG5+C6lkrDH7ce3FvIU0RN2OfkmeSz6SEW5bH6c+30wIhAP5/5Yvxj/mZNJSeQW3NXXepn4kM719FKuHdifWt3Nxy"}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.5_1524071841510_0.46399157412563063"},"_hasShrinkwrap":false},"1.2.6":{"name":"uglifyjs-webpack-plugin","version":"1.2.6","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^22.4.3","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^22.4.3","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"jest":{"testEnvironment":"node"},"gitHead":"1521c822259b0d372e96c93d275e61b483e23239","_id":"uglifyjs-webpack-plugin@1.2.6","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-NDP94ahjW7ZH+qzdjxjIV04n5YGnrYD2jeHgKgnpUKmdAfcXEO5DbVo21fXAm/KPMyX9k21zWFBMYm9m9R2ptg==","shasum":"f4bb44f02431e82b301d8d4624330a6a35729381","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.6.tgz","fileCount":12,"unpackedSize":55663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKmjhCRA9TVsSAnZWagAAChQP/3eggCPoSE0PMgL5rx/a\ncC+aAmMiKX5nrhOP5ZdKVnJ9sTd+8irA+dNQDCBhRYd42EgLm4cklLsWPHLU\nU8vjmYUFA/QWOMkzTLd/IQXfCEobvkbhsHDa8FuzyfTWwWXT4nROxwewKVjq\nQi5KDBEwBIHw0MMzFRsJCeNT7wgIsqddyON0+dJp7Ih0JhaRqCnpWGQRkYnk\nie3erwB1w8PmSZpfwP0UuaHROZlUv2MvubzYa02ThAYajNt387wqY+xC0ubs\nVjq6qKhM86bDylgFN4iBCSwHC5Jw3qtONgWQVn0RDxcatZq0fjVcYIZ7xv45\n0vwne8aUgWeyPvHbNqvtKHiCCmZ2O4on+fbRNDit9/w5pnYcPvoxhPmNmcx6\n8rZ+B8xV34lk2Zqaz7eyVNVGa6fSCdhcP+nLbUb/oGPiayN6dFND3PkI5gfr\n3FSrUr9pjUVRa1Yk2y2+j08BXZR9OhdcnBY0f4p8eBoYwjyH3+NpakM8zE3I\nCQbw/wPpBqBWnkCBEq+tWvU+1RL981uxFKdWB7MZxYjSA0gfy7y/9/D1rQzx\nENa4RomEr/yTIasgeMp+oGDk/SjJfpz1aTS10Jp0Uplo2q9+TOd9frR0nsOL\n6Q9P+FDDqMiQzU+rfGREZZceg5qFaFwzSbu2fJEtx/wPCftnHTK+eY7ETdtD\nravZ\r\n=wHZv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDj/65HCg/KZXfofXq5YwMumo262G8kgEo2F2jt9Sh6ugIhALfU5ein3rksDmbCIfZQY4KX/F9ny/cK+D67gxGpehQc"}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.6_1529506016820_0.3931207077007206"},"_hasShrinkwrap":false},"1.2.7":{"name":"uglifyjs-webpack-plugin","version":"1.2.7","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^22.4.3","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^22.4.3","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"jest":{"testEnvironment":"node"},"gitHead":"16d4eb345905a284bf1d33be66cb4a9572d91c2c","_id":"uglifyjs-webpack-plugin@1.2.7","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-1VicfKhCYHLS8m1DCApqBhoulnASsEoJ/BvpUpP4zoNAPpKzdH+ghk0olGJMmwX2/jprK2j3hAHdUbczBSy2FA==","shasum":"57638dd99c853a1ebfe9d97b42160a8a507f9d00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.7.tgz","fileCount":12,"unpackedSize":56012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMTPFCRA9TVsSAnZWagAA1RMP+wZiqFnrEvEhBY5ORhKL\nwSFQ5pXQV11ugKtOGANyEm76M8ghyyJInucpLORQa8+hU6V1Lz02H9lkLhwV\nr8J0R4xzy5pkZoVsYqHx/4hu4mQFmbzJ5OaEhY3cy5CfdUGAi6ODns2J5FQa\nLc85k/tBp8LJtJ1wNDAW3Da4IIno4G8jOmJKF3jNhhuh2jK01WTuYYoR5pIw\nz6ZoCxijcpzJqyPvvzeSTs7XbKk6Nc2ixXqFdOPZOzmmAJxd4di6IkHSGgbz\nl/RThcrJRxoIqKqvjTB0iIqmVeMDGX/3/6SJiH0b6e6UMyMiVgnlO6sFiQAH\nfExcTfDz/Xm7fLQcQlpRcqQICw067BAYYseNLXyrIc/h9GiggQCnUeaUhyVk\nT9VlvLwzorQ3YPo3Pyl+VpfKkDW/iRkH8swP/LhuilhgQOyGaQR8lgva+csZ\nvqw/EOLEXHvUHrpin0sHFoNB/pTuM0Wa6BaFu/RByGyZYIUwBodtSnoB7P14\nlaZSObvg487q4HDfePRbpWTkkg0eFICRs5vPqosXuu1rab/W4gxAWRNBZL+W\nZfQh/JXBHzaolwf29l1zO9zKLmTg6wyfqm7cB4KeyivXALJjXqcJlIZ8OlTu\nGp96rU5nGQbQdJ2vjduVMG4OVYW55OFOcbAi7++ARNCu7SILOnktpXWbiQvh\nElxI\r\n=d0jV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFO73yd5gDF98h3YOu94MncEpblewEs3t3/XBM3BD+V5AiEAh5vnFR4G3nrgAMwlAsSkFK36LdCZU4s8dT93d09frlw="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.2.7_1529951173494_0.9312090408888085"},"_hasShrinkwrap":false},"1.3.0":{"name":"uglifyjs-webpack-plugin","version":"1.3.0","description":"UglifyJS plugin for webpack","author":{"name":"webpack Contrib Team"},"license":"MIT","engines":{"node":">= 4.8 < 5.0.0 || >= 5.10"},"main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","prebuild":"npm run clean","clean":"del-cli dist","lint":"eslint --cache src test","lint-staged":"lint-staged","prepare":"npm run build","release":"standard-version","security":"nsp check","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","appveyor:test":"npm run test","webpack-defaults":"webpack-defaults"},"dependencies":{"cacache":"^10.0.4","find-cache-dir":"^1.0.0","serialize-javascript":"^1.4.0","schema-utils":"^0.4.5","source-map":"^0.6.1","uglify-es":"^3.3.4","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"babel-cli":"^6.26.0","babel-jest":"^22.4.3","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","cross-env":"^5.1.3","del-cli":"^1.1.0","eslint":"^4.14.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","jest":"^22.4.3","lint-staged":"^6.0.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","standard-version":"^4.3.0","terser":"^3.7.6","uglify-js":"^3.4.3","webpack":"^3.10.0","webpack-defaults":"^1.6.0"},"peerDependencies":{"webpack":"^2.0.0 || ^3.0.0 || ^4.0.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"jest":{"testEnvironment":"node"},"gitHead":"4d3b3d25c1fcf403e63303cf125178feeb4e1855","_id":"uglifyjs-webpack-plugin@1.3.0","_npmVersion":"6.3.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==","shasum":"75f548160858163a08643e086d5fefe18a5d67de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz","fileCount":10,"unpackedSize":60945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcvXrCRA9TVsSAnZWagAAvJUP/RkXwAcj+S/yzP7Makjh\njXZ15VsqIg7o1KiWy2v8RRizgl31gdjDQ823xxBolZ2EzC3BQNumAJbQmTbG\np/V2mC6CxFHd6d07QNxBZvEFT5jQ04MA0eOhx1JrqAEvV1E1TMEimmfl1L6m\nxjrS7FjK5v5WdLY3GLDR4FrzOwA8VW7mZh2fD1s28dXWI5BcTWY9Q3NaufGo\nv1PNYjzVeWtkJYqk40HzCDVvBWwOPYMhY2l+xz/RXMKCsgezXFMb2Kkq3hZC\nH5EkuOorL38kXzAGQGGClNBKnPg7N/ZTXk0SyG4Pv7/a+2wYg7/WAvfsLu0C\n+n3wlgrCj7oGidaLQq+H71QRqL9gElERg9hwYaoADxuzsMQvKngu7CY1H8ah\nhgTOVi41XzUHEs7RpP2xtyvB/vMhrDTbRt4bfon9FYbHRv1cQhba0o3ZnR47\nUdL8PfJ6sZBmL7l13XhcoOkkKO8W2SfVnSGRQPxYi5Re91qZR4WU0eW91NIS\nS+HNLpdhTn8Bwox8TUwzQjdT5cWk8J6uKwIKPiHGF+W+Z36c62dbX+2XCnOa\nFFbDFXcCPCzzcPLhcsS45Sf6BD6wqid0eKhmBKnkb4dUvEFGpB4xtLwWBggY\n71EvAM+qdQ4NJOWO8HDfwEMuZ8vP6WR3bMKKhuc9bYGGUhVjLMp/lmicJhJk\ncHHi\r\n=x4H8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAsAdjdH7hg36VNnUPfECow113QcP88MAAccDlIPLAQEAiEAhIiRxfl/ic55w2KltmXzjnNDYZpWv5O2VHC6Eq7xNzs="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_1.3.0_1534260714471_0.09627237350346785"},"_hasShrinkwrap":false},"2.0.0":{"name":"uglifyjs-webpack-plugin","version":"2.0.0","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"bin":"","main":"dist/cjs.js","engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","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","prebuild":"npm run clean","prepare":"npm run build","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":"npm audit","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.3.0"},"dependencies":{"cacache":"^11.2.0","find-cache-dir":"^2.0.0","schema-utils":"^1.0.0","serialize-javascript":"^1.4.0","source-map":"^0.6.1","uglify-js":"^3.4.9","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"@commitlint/cli":"^7.1.2","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.4.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","conventional-github-releaser":"^3.1.2","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.5.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^2.6.2","husky":"^0.14.3","jest":"^23.5.0","lint-staged":"^7.2.2","memory-fs":"^0.4.1","pre-commit":"^1.2.2","prettier":"^1.14.2","standard-version":"^4.3.0","terser":"^3.7.6","webpack":"^4.17.2","webpack-defaults":"^2.3.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"jest":{"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"266bb1c23522a19242fe9e3a265e30ef6579fe35","_id":"uglifyjs-webpack-plugin@2.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-553rPZK5sQe9irhMbKv2SAb2wWeoAj+7/IYpuRz+VECEUKZAcIyR2ZwFeaY+umBEtQe4i65iSjhN/aa7KsKIGg==","shasum":"5ca8a9816bb2f826d558fada74b4880e26532ee3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.0.0.tgz","fileCount":10,"unpackedSize":56348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm9wUCRA9TVsSAnZWagAABxAP/3s+5Alq+9F3mxGmpKUk\nCCUhydOjhyPJdI64untyH+lV3vJbiIu/ujQvPoqa0PzMwjG5noDc8G179WRX\nGIduVUW8PMsnOfO+V5r7+Uqelrfw04n0MImqDpsVgyTRheyudMi0Ipmufmzy\nddEfoFjFrP8Kzyp60Kiw0eFzWJdM3Muqfs69bxrkUMiIJrl/Ov4EqvZ6L7B+\ncp7XLk//O6AgYLl3iF46ixr1+eP3357LJnm3Fl5GK5Gbo3LUbiBW5aRBWaIV\n/XWvjCDDxBvtxaZnG0wxfpB4A+grWnnEtShVBhG81amzxsyaheuFnvfAqLmE\nkxQUs1UktWmI3goiZu8JtwfFMTZIOwbuZUvjwvRPmgMQEF6iLVZ8v9U3wzYi\nawmnUKuP/T6XSv5+DoBZXNIXyOT/Q1uGK/1gzn82Kv7IIE7Fh3MiqCNQ49QV\n8em8jUty7GUZLxMObIE8IJJSOa1hjLDDbKgqxMK2MtOuG8Pfbq+1YlDVvENl\ntlLYOvXXMarRvbcLz3f02Hxv/xhgZXE75s2YtwquE3NAUk8zaSNcpzTRPRPy\nkH4YissEB8f5vhbxWPN9wIpi0nUkmMV3bUioPBT+DwJcXVkOfu7Nu1FULBHX\nTmah9m/pVuFf/E2hKY/3JqvcrphdKqENOiLcU8ma3MIEkTcplIuQQ7Yzjjs+\n+JCD\r\n=jlU7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAiMPkMviRuPVfr9cICM6QMSXjG3ignCAPW3DwymsESoAiEA/E72ZJ8s8wMYDq4MYCgkjFFiYMvntFgIso6ix5lVwrA="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.0.0_1536941075941_0.5074468066652935"},"_hasShrinkwrap":false},"2.0.1":{"name":"uglifyjs-webpack-plugin","version":"2.0.1","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"bin":"","main":"dist/cjs.js","engines":{"node":">= 6.9.0 <7.0.0 || >= 8.9.0"},"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","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","prebuild":"npm run clean","prepare":"npm run build","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":"npm audit","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.3.0"},"dependencies":{"cacache":"^11.2.0","find-cache-dir":"^2.0.0","schema-utils":"^1.0.0","serialize-javascript":"^1.4.0","source-map":"^0.6.1","uglify-js":"^3.0.0","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"@commitlint/cli":"^7.1.2","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/eslint-config-webpack":"^2.0.4","babel-cli":"^6.26.0","babel-jest":"^23.4.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","conventional-github-releaser":"^3.1.2","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.5.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^2.6.2","husky":"^0.14.3","jest":"^23.5.0","lint-staged":"^7.2.2","memory-fs":"^0.4.1","pre-commit":"^1.2.2","prettier":"^1.14.2","standard-version":"^4.3.0","terser":"^3.7.6","webpack":"^4.17.2","webpack-defaults":"^2.3.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"jest":{"testEnvironment":"node"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"e1a67c129ae1461e629a34cbcbdf7815d81041a9","_id":"uglifyjs-webpack-plugin@2.0.1","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-1HhCHkOB6wRCcv7htcz1QRPVbWPEY074RP9vzt/X0LF4xXm9l4YGd0qja7z88abDixQlnVwBjXsTBs+Xsn/eeQ==","shasum":"f346af53ed496ce72fef462517d417f62bec3010","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.0.1.tgz","fileCount":10,"unpackedSize":56712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboNHYCRA9TVsSAnZWagAAhOAQAJH9FxDGeGyGi1tU6L/d\ntXqW+Yd+fNJ48Zuk5HcnrecBDlTpZkzWrN0965clIMfZ4wZPTzD+dXCaeifq\nbu4QbElGMQRq8GC0j9IidnuTG80YKYGtMroNAKUMoUliiKzzRLz4deAjOJRI\nWOcgOZGj73feUUQTwwnfObse9bYdlWPtYd/8hb4i0hSdMwtEN5Nsj09j5LlR\nwcZO/v9yCH8FN49LnirIm3ptwoUMxB+UKsNnvu32ibkfkG2q7vlw/wPT9nqU\nZUA/YJWQPwM1O+dhxvlS2h9/0Rr2fRktGddIGk4GDKFiqOTi0o1/uCR1KYtL\nm34toHY8UtxKTehjgQWGgi4Yb4j2S0o8a/FhOKFMFp+6SpYB1JzSWbuhj1c9\nErDZ4v6SEf7qk+4ceuF0H9TmFW+Ps0EcZgHCZrfSYhW2ftsyqBN+N0ENbIWd\nCBk3deUXEG8mFbbMPDB/eJQjya1I0Bwimmi5P1F8Yn+6uJGatxopa4L8pYsl\n8KpX7dFIHP/vd0V9UQpvZAbkCaBJtTOzZIFU9nPalOToEqRISTAboK/H0jx7\nJ9zxijXkcoBBR/Zql7UUvEVIx9yIxlblDRYqWkfYyrL+XiieOVhj2Lpf8mc0\nMjrWvSh3hISS5vY5lFOjxXlmvJMf5EwSIUYcs4der9rpKNzm6pP9F8FN9YLM\nkuaP\r\n=Uf/j\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLC6vRfiamJ5SEaVLoD9ktFcsleGlcCa/jME3opZOOYgIhANf0In90tO2HtZl6j3ahgjQP16D1MByD4wcGQaD4CAxe"}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.0.1_1537266135629_0.3131996305648237"},"_hasShrinkwrap":false},"2.1.0":{"name":"uglifyjs-webpack-plugin","version":"2.1.0","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"main":"dist/cjs.js","engines":{"node":">= 6.9.0"},"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","prebuild":"npm run clean","prepublish":"npm run build","release":"standard-version","security":"npm audit","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"cacache":"^11.2.0","find-cache-dir":"^2.0.0","schema-utils":"^1.0.0","serialize-javascript":"^1.4.0","source-map":"^0.6.1","uglify-js":"^3.0.0","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.2","@babel/polyfill":"^7.0.0","@babel/preset-env":"^7.2.0","@commitlint/cli":"^7.1.2","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/defaults":"^3.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.4.2","conventional-github-releaser":"^3.1.2","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.5.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^3.0.0","husky":"^1.2.1","jest":"^23.5.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","prettier":"^1.14.2","standard-version":"^4.3.0","terser":"^3.7.6","webpack":"^4.17.2"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"lint-staged":{"*.js":["eslint --fix","git add"]},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"e3eff7675cb1f71936cd150f359bae1ac088582d","_id":"uglifyjs-webpack-plugin@2.1.0","_npmVersion":"6.5.0","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-xD8HaE8sFvhYsE2Lr4lSQ/Y2K0DBEaZGqIsrIccdxaAWdFdeYcm54CcMoCCPDpixqUlZAukUMq3cmgIqXubjsQ==","shasum":"630bb89b156a751c5e897769e5c39eb604ceaf9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.0.tgz","fileCount":10,"unpackedSize":63648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHmQVCRA9TVsSAnZWagAAW64P/24xNN/t6GB38meI93YM\nx/52iXI8aQz+25kvhkxK5ThPNVOBOeLV7B9LgupMa5LA66dlhjYKAaijT3zI\nGqZvFkSeO3zeUHOgcz8N46vYFvCLYUfL/04ZTh7Vcsgmcw1X4xrITaIi+GPk\nySNYQAL/ljifbmTY2VrBkmapiNhtYzuvR9IPfVXXyKB3jmkuRhFyYzPqmqN/\nP4MwEbsM1tidgAH7dQXVWT/HjnUQ8Iw09t8rrevK1VQDcFH1dUb36lWiMyqy\noysEF0FP93r19xIebr7+C+ZhltdywnOOSc1h0IoJBEka0TXMXSQ/BcE4//yV\nH/HQhmJC/bfm4LJjU+pnCQl8OP1O/q8aaqmFbE9g/brWZ97BI2tgqj7H16Qx\nAGXy7Cw7tXzRXw+kW+HMuG1TpdovGdOqTTDANwYYRtaHRG1HUEb3d/Fdh0bA\n/92+1SSKRMpNHgF0JjsIsmwiqLbW+EYlzOhTqrGf1Wn2Z5rEofl7TpjW/hk5\nzK2RRKp+VUF+xDEakfT8fF7jT4a/yi7erwbqdXCs+1eyoSGBr7UxHnejerGx\nqE6iXzAWW5oxV8vIn3U7xRXJjhKExNvRsj41PPG6rgytHll8oyeL+0ITDGYU\nFB6yVk+w79QkAZJBfHwOvvL4nDQofBFbKWkBixNAeVIUGb/272YkIRM1OPPO\nKztV\r\n=ubpQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUOi1eBjpH85AYP+tWnYHpXkVNtYqc2BhUu7uVE2CZSAIgU36zXw7z9dtiFGKgyH5HLLWjuLTB+Ps+VlULac8uKrs="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.1.0_1545495572746_0.4077920638356516"},"_hasShrinkwrap":false},"2.1.1":{"name":"uglifyjs-webpack-plugin","version":"2.1.1","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"main":"dist/cjs.js","engines":{"node":">= 6.9.0"},"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","prebuild":"npm run clean","prepublish":"npm run build","release":"standard-version","security":"npm audit","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"cacache":"^11.2.0","find-cache-dir":"^2.0.0","schema-utils":"^1.0.0","serialize-javascript":"^1.4.0","source-map":"^0.6.1","uglify-js":"^3.0.0","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.2","@babel/polyfill":"^7.0.0","@babel/preset-env":"^7.2.0","@commitlint/cli":"^7.1.2","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/defaults":"^3.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^23.4.2","conventional-github-releaser":"^3.1.2","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.5.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^3.0.0","husky":"^1.2.1","jest":"^23.5.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","prettier":"^1.14.2","standard-version":"^4.3.0","terser":"^3.7.6","webpack":"^4.17.2"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"lint-staged":{"*.js":["eslint --fix","git add"]},"commitlint":{"extends":["@commitlint/config-conventional"]},"gitHead":"a3ac27ac329106c9bcb16153f3474c56d9cfb271","_id":"uglifyjs-webpack-plugin@2.1.1","_npmVersion":"6.5.0","_nodeVersion":"10.14.1","_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"dist":{"integrity":"sha512-TQEcyMNkObX/H+FfcKjiDgs5RcXX8vW2UUUrDTOfQgg3lrafztfeM5WAwXo+AzqozJK6NP9w98xNpG/dutzSsg==","shasum":"6937d7513a37280d4792f1fb536bef35e08e420a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.1.tgz","fileCount":10,"unpackedSize":64026,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJMcXCRA9TVsSAnZWagAA9e4P/0pzJ0kU5zHIF0LbdsVt\neI8JOR1n89kGXkzCKU9RlrLZLxRmKO6gC6sfpwgxunIujJXX2MS/IcCm8U4E\nilalclSD1EYz+vCBGumsN6WKuL4nHw50nIiYMsThy9S7P88WKQcbZRg+Nyng\nL0CkcdcEGL1UsYkFAI9scCzn6csjRUgIPFVux2Sxt1mfzxt3jve/WuiS/y6U\ntWcKCWMmgi5v6O9ZrhNO9/nXDK8IGo4KguKMiz7Y4Lb0ehtJwhAu4km0/+8N\n5JWcRP2UztGjIg7/Uxl3zUohnvGy2kak7QnS8cBBWG4mVlM8Tf773OkpEs+h\nkSzHed3VEhw7o6M9+hp2RfftyE7/JcL+rZIp56OP9QPTN0p5rfl2taIBWMP9\nBOVc//Hha9JU/YIHs7c0FHm7tmV+d/6sL5LhTldHnTgbxTWCWqI1mWP4siOU\nCeWyYGG/k0PLiP5bOZxfdbUvw3x0bNFZLkto+V93ei5/X+e1ScMw462Bnryw\nj3DRZmqItcz+35cC/Wfx/ohIpaKS4QfCqaiI04YdS87RltaVdJvYj9XXQN4O\nrkc5/Iti6cgCTfkG6V+x1Ff6xF7jd/kAq1G62reIgCAoXzllEkIRZ+Qurpz+\nug4UMB1dMa34XjLZglbCK5u9p8jQEyJwKeHIj/W0JoHPKG+ciQHJo6GTytnQ\nt5oV\r\n=8/Wy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvQ/9r1jqvaEFxr+8qLUefhldpNj6wp2riuCG10D1B1QIhAP4XcQgOWOJ2/J5NihfXxKln6xomkCqJtgTYZUsmaKQg"}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.1.1_1545914134360_0.6339387636639682"},"_hasShrinkwrap":false},"2.1.2":{"name":"uglifyjs-webpack-plugin","version":"2.1.2","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"main":"dist/cjs.js","engines":{"node":">= 6.9.0"},"scripts":{"start":"npm run build -- -w","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","prepublish":"npm run build","release":"standard-version","security":"npm audit","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","pretest":"npm run lint","test":"npm run test:only","ci:lint":"npm run lint && npm run security","ci:test":"npm run test:only -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","ci:lint:commits":"commitlint --from=origin/master --to=${CIRCLE_SHA1}","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"cacache":"^11.2.0","find-cache-dir":"^2.0.0","schema-utils":"^1.0.0","serialize-javascript":"^1.4.0","source-map":"^0.6.1","uglify-js":"^3.0.0","webpack-sources":"^1.1.0","worker-farm":"^1.5.2"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.2","@babel/polyfill":"^7.0.0","@babel/preset-env":"^7.2.0","@commitlint/cli":"^7.1.2","@commitlint/config-conventional":"^7.1.2","@webpack-contrib/defaults":"^3.0.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^24.1.0","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^5.5.0","eslint-config-webpack":"^1.2.5","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^3.0.0","husky":"^1.2.1","jest":"^24.1.0","lint-staged":"^8.1.0","memory-fs":"^0.4.1","prettier":"^1.14.2","standard-version":"^5.0.0","terser":"^3.7.6","webpack":"^4.17.2"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"babel":{"presets":[["@babel/preset-env",{"targets":{"node":"6.9.0"},"useBuiltIns":"usage"}]]},"husky":{"hooks":{"pre-commit":"lint-staged"}},"lint-staged":{"*.js":["eslint --fix","git add"]},"commitlint":{"extends":["@commitlint/config-conventional"]},"prettier":{"singleQuote":true,"trailingComma":"es5","arrowParens":"always"},"gitHead":"9bc2fdecfc7bcd9b5ed51cc297092eef13292359","_id":"uglifyjs-webpack-plugin@2.1.2","_nodeVersion":"10.15.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-G1fJx2uOAAfvdZ77SVCzmFo6mv8uKaHoZBL9Qq/ciC8r6p0ANOL1uY85fIUiyWXKw5RzAaJYZfNSL58Or2hQ0A==","shasum":"70e5c38fb2d35ee887949c2a0adb2656c23296d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.2.tgz","fileCount":10,"unpackedSize":64470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcc+bfCRA9TVsSAnZWagAAf9UP/2WB2HAZb7VPzGHo9wPL\n1K0mXyl3VgL+/UIoM3IEbdAz31p9FMKcLo2gA5CTqyI+axuCJT5DMUQMAjXi\nU3AeGzpk4g17e8gEToyd5pqr3B/Zyj62PaQovJT6a5Szc3AyhX+Llp/xZadX\nPD0KOHY1KdUsBpUI5pU8u+GwoJq7cjp1hACatIfpV62NVK5O9OZVkibIsDSg\nejZEY99e6KbvE8Vo8/YsqBONE+oSKCKkN/0zFWr8QO9/urToyTzt7VmLhFgZ\nwD1goKPunwK0h2X95QYt4yBOwmliyh5zgQ9xFUFiMsYtudiwS/igANKLdZHk\nfLU12oMgjGQOjN55i212WBJ2lCnsNxCf0ZBvRSZZvcvAaWJNF820FXYatrZP\neQ1SjhVlpZmc0rvdZqENUlqrRvoxJUNGH86WuXeX/qbGz3sFjDZLqCAGjDov\nz039yrtq0kC8PD1OsOBJ6A/mPeqUMxlPTky2+pkKCtN6sTtzi4dLDsdZTt6w\nvDaf3tJwl4tvlB9KFUKLYkUL6grDN3a1X4HGy0IchtPerLw9zRBQbtQhylkt\ndwn+xOYFNHJ4hBHlV/s5yGdBVWsYzdhfjrKL9QExeXL0mUACHkouMyDzH8BP\n3kyihrJFpkgAfg4l3Be+J80MJQDGJ9Ch2qRPpx2txMWfoId46hjI3TS1lJZ2\n3Ic8\r\n=1hfv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgorzyk7b+WyD8Vg+0qcqF/1NAmqz2aCl7HtkYC6zQcgIgHnFO4GrHdQQP0CJo3XXbrQFc9/FtyhgE8iNP6JzNIso="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.1.2_1551099614672_0.1716794588278705"},"_hasShrinkwrap":false},"2.1.3":{"name":"uglifyjs-webpack-plugin","version":"2.1.3","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"main":"dist/cjs.js","engines":{"node":">= 6.9.0"},"scripts":{"start":"npm run build -- -w","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","commitlint":"commitlint --from=master","lint":"eslint --cache src test","prepare":"npm run build","release":"standard-version","security":"npm audit","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","pretest":"npm run lint","test":"npm run test:coverage","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"cacache":"^11.3.2","find-cache-dir":"^2.1.0","is-wsl":"^1.1.0","schema-utils":"^1.0.0","serialize-javascript":"^1.7.0","source-map":"^0.6.1","uglify-js":"^3.5.12","webpack-sources":"^1.3.0","worker-farm":"^1.7.0"},"devDependencies":{"@babel/cli":"^7.4.4","@babel/core":"^7.4.4","@babel/preset-env":"^7.4.4","@commitlint/cli":"^7.6.1","@commitlint/config-conventional":"^7.6.0","@webpack-contrib/defaults":"^4.0.1","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^24.8.0","commitlint-azure-pipelines-cli":"^1.0.1","cross-env":"^5.2.0","del":"^4.1.1","del-cli":"^1.1.0","eslint":"^5.16.0","eslint-plugin-import":"^2.17.2","eslint-plugin-prettier":"^3.1.0","husky":"^2.3.0","jest":"^24.8.0","jest-junit":"^6.4.0","lint-staged":"^8.1.6","memory-fs":"^0.4.1","prettier":"^1.17.1","standard-version":"^6.0.1","terser":"^3.17.0","webpack":"^4.31.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"gitHead":"4c9abe639e7ec5951961cf1dd4fbe3fb5775c4ca","_id":"uglifyjs-webpack-plugin@2.1.3","_nodeVersion":"10.15.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-/lRkCaFbI6pT3CxsQHDhBcqB6tocOnqba0vJqJ2DzSWFLRgOIiip8q0nVFydyXk+n8UtF7ZuS6hvWopcYH5FuA==","shasum":"b00a18d1acda271deb755c99ba0d93568156eb76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.3.tgz","fileCount":10,"unpackedSize":64400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc28p+CRA9TVsSAnZWagAALqMP+wSw+3G1L0Nr8Ib3xh7T\nRb914O+cszxernhp8nxcsBbm3UxuHHGwq8S6Gy7HFOrAHb+JfRn+9P9fRXrX\nYky43WKYV1a64PuOgsNt2F+DaCYtQWdmULnXbQqM/e6GUoTDChZKAgrQxf7m\nJrhFwhIC2AbRIowEM3jcpzgrafY7W15DhRT56YOvDdOXsxfIKkbFmA7vWD9l\nHPisnzL6pnEBHPYy0DXrb2TQ0s2LBxHa0Zfm6L32UXW/qdjSMeSwhiwAw3c5\nBPcEijkQfdgmf26ubclYX0oAxPsrJ1dSMYGCfuZCvpGqBABa8WnkQig9A6/V\n08EslijSF4C4E8pKVOqHWlsxYuPMbb2xYsh7O2Ej473knjY2A7fZMVImBS2q\nUaN80o1fXLEQxl4PwhhCD34q0C8ZSEa4kIjWS+sxkreIFzwYYTJHKwQDRb+T\nUSvFgYApMy2rBcYCOODm2r3GsDcuqGtQpUGRxG8r5X0GjJ9Vwguho25vAQUO\nScPmT+smR9DWqegc9OAmHpr9mHK8NGlVwqqu3KzASRIz5yZBeY4OwDKNpgTh\nz7Lyu2dngoFNic4SvgveACwXLRACdygerqbZdhXjd2OI0XD/FsZd/dk0/aBz\novu7Q1i4erKgM8Rc8jLS2O6i9HQ8haq9eWwIbgmFzuxH56mZvUxnIWCHCVXZ\nBY+L\r\n=F5Hl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAm0q1wWodCkmswmH+VKSdvKeXq5mLK4/VHPDI+sP9UGAiAGFQZiRJW530c7rUeQfqyygIzTLZBwxCYTFMkw5DL7sg=="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"andrew@shellscape.org","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.1.3_1557908093955_0.21106249649898445"},"_hasShrinkwrap":false},"2.2.0":{"name":"uglifyjs-webpack-plugin","version":"2.2.0","description":"UglifyJS plugin for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git"},"author":{"name":"webpack Contrib Team"},"homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin","bugs":{"url":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues"},"main":"dist/cjs.js","engines":{"node":">= 6.9.0"},"scripts":{"start":"npm run build -- -w","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files","clean":"del-cli dist","commitlint":"commitlint --from=master","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different","lint:js":"eslint --cache src test","lint":"npm-run-all -l -p \"lint:**\"","prepare":"npm run build","release":"standard-version","security":"npm audit","test:only":"cross-env NODE_ENV=test jest","test:watch":"cross-env NODE_ENV=test jest --watch","test:coverage":"cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage","pretest":"npm run lint","test":"cross-env NODE_ENV=test npm run test:coverage","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0"},"dependencies":{"cacache":"^12.0.2","find-cache-dir":"^2.1.0","is-wsl":"^1.1.0","schema-utils":"^1.0.0","serialize-javascript":"^1.7.0","source-map":"^0.6.1","uglify-js":"^3.6.0","webpack-sources":"^1.4.0","worker-farm":"^1.7.0"},"devDependencies":{"@babel/cli":"^7.5.5","@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@commitlint/cli":"^8.1.0","@commitlint/config-conventional":"^8.1.0","@webpack-contrib/defaults":"^5.0.2","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^24.8.0","commitlint-azure-pipelines-cli":"^1.0.2","cross-env":"^5.2.0","del":"^4.1.1","del-cli":"^1.1.0","eslint":"^6.1.0","eslint-config-prettier":"^6.0.0","eslint-plugin-import":"^2.18.2","husky":"^3.0.2","jest":"^24.8.0","jest-junit":"^7.0.0","lint-staged":"^9.2.1","memory-fs":"^0.4.1","npm-run-all":"^4.1.5","prettier":"^1.18.2","standard-version":"^7.0.0","terser":"^4.1.2","webpack":"^4.38.0"},"keywords":["uglify","uglify-js","uglify-es","webpack","webpack-plugin"],"gitHead":"eb7353601f565088159acadcc14c579e5bb5e25f","_id":"uglifyjs-webpack-plugin@2.2.0","_nodeVersion":"10.15.2","_npmVersion":"6.10.2","dist":{"integrity":"sha512-mHSkufBmBuJ+KHQhv5H0MXijtsoA1lynJt1lXOaotja8/I0pR4L9oGaPIZw+bQBOFittXZg9OC1sXSGO9D9ZYg==","shasum":"e75bc80e7f1937f725954c9b4c5a1e967ea9d0d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz","fileCount":10,"unpackedSize":65726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQYiSCRA9TVsSAnZWagAAp7MP/0RZCXFZbhbgdvKbGfx0\nd3/aAVSnGlSWC/SqK53yWRcpTjDV1Nzv4god/vuRRDwfJDACSLodGonURpC8\niTwQXY5k72voQG5L9/mKa+fQ8ytclmydZr4MssDNVUh8dmB+o9JXt/+5xSi4\nEoDHn3EO5Xbe0oTkUKEWE8+Ie40pjwE+vKbnovjvudfyPZWKmsNMfdEOXnMp\nkGxuvEoPhLbaBw5hX33xhLQiUloN/xAu7c6GdX6Yaj+Gg3D/PdgJdSvl74aW\nsBVIzQOSnlkVUKmfPDZBeXE3Q5sYrPfnyEcLeVM2iNuyVN5rkXfVWZvWRrM6\nqfNclZd30NrPk78wa/hsbB07XK1K8caC9mNnNE2wMxtdKxWeKuo3EXoM3DeD\nQ5bQ/dMgSWdORUQqXFUmwMzTuu/BKmi5w2T8abFZf6kcGu8NjcM/uHQ94/A1\njtD0RoJKx/bCywm5ZKYSG7b6NpdzjHP/H3eceGmh4ROm42WOdOwbVZgYSsSh\nCH5ZlGKsG+Xfhn9DH/yvy7QADec9kuZ23+qKTQKrxrU6yf5M6JrYqHxsQ4U5\nPhBa0QuFdhJpeOnMGCxV5zsikgbuzOYU8Z7gYsmx1zaiS/6ZWsKCYnj0+RXb\nlelzDc2offjh52AGkb0wLKt4gjHJQZWsAUS1YXsd/7aUU7PfCyC6xuZ7DE/F\n933F\r\n=6Y13\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJG8uH0MBABKLlhpNSIBvZCfL7hRxc/M7ly0kbGrEm+wIgc3ppOWte2fcZ7isALn2yF0Q6uDFMbm9blRP7b0PodlM="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uglifyjs-webpack-plugin_2.2.0_1564575889287_0.07884232678483327"},"_hasShrinkwrap":false}},"name":"uglifyjs-webpack-plugin","time":{"modified":"2023-09-10T02:44:43.320Z","created":"2017-01-24T09:00:10.767Z","0.1.0":"2017-01-24T09:00:10.767Z","0.1.1":"2017-01-25T09:52:06.005Z","0.1.2":"2017-01-25T12:58:32.369Z","0.1.3":"2017-02-02T20:00:46.975Z","0.1.4":"2017-02-06T06:52:08.933Z","0.1.5":"2017-02-15T15:56:51.952Z","0.2.0":"2017-02-19T13:11:27.566Z","0.2.1":"2017-02-20T06:13:44.311Z","0.2.2":"2017-03-02T15:17:03.605Z","0.3.0":"2017-03-04T05:08:54.882Z","0.3.1":"2017-03-22T12:25:04.431Z","0.4.0":"2017-03-30T13:42:05.050Z","0.4.1":"2017-04-05T09:31:56.739Z","0.4.2":"2017-04-12T17:20:08.132Z","0.4.3":"2017-04-15T19:21:22.731Z","0.4.4":"2017-06-18T18:14:43.567Z","0.4.5":"2017-06-19T21:43:37.511Z","0.4.6":"2017-06-19T21:51:37.721Z","1.0.0-beta.0":"2017-06-29T19:37:39.804Z","1.0.0-beta.1":"2017-07-06T03:04:38.639Z","1.0.0-beta.2":"2017-07-21T20:05:04.481Z","1.0.0-beta.3":"2017-10-10T03:24:44.584Z","1.0.0-rc.0":"2017-10-23T00:05:03.415Z","1.0.0":"2017-10-23T20:07:04.454Z","1.0.1":"2017-10-24T02:38:17.765Z","1.1.0":"2017-11-19T03:23:29.230Z","1.1.1":"2017-11-23T19:29:19.020Z","1.1.2":"2017-11-30T13:22:09.327Z","1.1.3":"2017-12-14T02:52:42.767Z","1.1.4":"2017-12-14T11:33:28.963Z","1.1.5":"2017-12-27T10:32:08.419Z","1.1.6":"2018-01-05T06:49:09.390Z","1.1.7":"2018-01-29T18:44:59.134Z","1.1.8":"2018-01-29T20:45:55.833Z","1.2.0":"2018-02-16T22:29:32.822Z","1.2.1":"2018-02-23T19:04:32.919Z","1.2.2":"2018-02-24T01:27:16.889Z","1.2.3":"2018-03-10T22:41:18.595Z","1.2.4":"2018-03-16T11:52:37.778Z","1.2.5":"2018-04-18T17:17:21.716Z","1.2.6":"2018-06-20T14:46:56.902Z","1.2.7":"2018-06-25T18:26:13.566Z","1.3.0":"2018-08-14T15:31:54.589Z","2.0.0":"2018-09-14T16:04:36.067Z","2.0.1":"2018-09-18T10:22:15.745Z","2.1.0":"2018-12-22T16:19:32.870Z","2.1.1":"2018-12-27T12:35:34.491Z","2.1.2":"2019-02-25T13:00:14.878Z","2.1.3":"2019-05-15T08:14:54.141Z","2.2.0":"2019-07-31T12:24:49.593Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack-contrib/uglifyjs-webpack-plugin"}