{"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"dist-tags":{"beta":"1.1.0-0","next":"3.0.0-rc.0","latest":"6.0.1"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"description":"webpack plugin for generating asset manifests","readme":"# Webpack Manifest Plugin [![Build Status](https://travis-ci.org/danethurber/webpack-manifest-plugin.svg?branch=master)](https://travis-ci.org/danethurber/webpack-manifest-plugin)  [![codecov](https://codecov.io/gh/danethurber/webpack-manifest-plugin/badge.svg?branch=master)](https://codecov.io/gh/danethurber/webpack-manifest-plugin?branch=master) [![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/webpack-manifest-plugin#)\n\n\nWebpack plugin for generating an asset manifest.\n\n> NOTE: The following is related to the next major version of `webpack-manifest-plugin`, please check https://github.com/danethurber/webpack-manifest-plugin/blob/1.x/README.md for `v1` documentation\n\n## Install\n\n```bash\nnpm install --save-dev webpack-manifest-plugin\n```\n\n## Usage\n\nIn your `webpack.config.js`\n\n```javascript\nvar ManifestPlugin = require('webpack-manifest-plugin');\n\nmodule.exports = {\n    // ...\n    plugins: [\n      new ManifestPlugin()\n    ]\n};\n```\n\nThis will generate a `manifest.json` file in your root output directory with a mapping of all source file names to their corresponding output file, for example:\n\n```json\n{\n  \"mods/alpha.js\": \"mods/alpha.1234567890.js\",\n  \"mods/omega.js\": \"mods/omega.0987654321.js\"\n}\n```\n\n\n## API:\n\n```js\n// webpack.config.js\n\nmodule.exports = {\n  output: {\n    publicPath\n  },\n  plugins: [\n    new ManifestPlugin(options)\n  ]\n}\n```\n\n### `options.fileName`\n\nType: `String`<br>\nDefault: `manifest.json`\n\nThe manifest filename in your output directory.\n\n### `options.publicPath`\n\nType: `String`\nDefault: `output.publicPath`\n\nA path prefix that will be added to values of the manifest.\n\n### `options.basePath`\n\nType: `String`\n\nA path prefix for all keys. Useful for including your output path in the manifest.\n\n\n### `options.writeToFileEmit`\n\nType: `Boolean`<br>\nDefault: `false`\n\nIf set to `true` will emit to build folder and memory in combination with `webpack-dev-server`\n\n\n### `options.seed`\n\nType: `Object`<br>\nDefault: `{}`\n\nA cache of key/value pairs to used to seed the manifest. This may include a set of [custom key/value](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json) pairs to include in your manifest, or may be used to combine manifests across compilations in [multi-compiler mode](https://github.com/webpack/webpack/tree/master/examples/multi-compiler). To combine manifests, pass a shared seed object to each compiler's ManifestPlugin instance.\n\n### `options.filter`\n\nType: `Function(FileDescriptor): Boolean`\n\nFilter out files. [FileDescriptor typings](#filedescriptor)\n\n\n### `options.map`\n\nType: `Function(FileDescriptor): FileDescriptor`\n\nModify files details before the manifest is created. [FileDescriptor typings](#filedescriptor)\n\n### `options.sort`\n\nType: `Function(FileDescriptor): number`\n\nSort files before they are passed to `generate`. [FileDescriptor typings](#filedescriptor)\n\n### `options.generate`\n\nType: `Function(Object, FileDescriptor, string[]): Object`<br>\nDefault: `(seed, files, entrypoints) => files.reduce((manifest, {name, path}) => ({...manifest, [name]: path}), seed)`\n\nCreate the manifest. It can return anything as long as it's serialisable by `JSON.stringify`. [FileDescriptor typings](#filedescriptor)\n\n### `options.serialize`\n\nType: `Function(Object): string`<br>\nDefault: `(manifest) => JSON.stringify(manifest, null, 2)`\n\nOutput manifest file in different format then json (i.e. yaml).\n\n## FileDescriptor\n\n```ts\nFileDescriptor {\n  path: string;\n  name: string | null;\n  isInitial: boolean;\n  isChunk: boolean;\n  chunk?: Chunk;\n  isAsset: boolean;\n  isModuleAsset: boolean;\n}\n```\n\n### `chunk`\n\nType: [`Chunk`](https://github.com/webpack/webpack/blob/master/lib/Chunk.js)\n\nOnly available is `isChunk` is `true`\n\n### `isInitial`\n\nType: `Boolean`\n\nIs required to run you app. Cannot be `true` if `isChunk` is `false`.\n\n### `isModuleAsset`\n\nType: `Boolean`\n\nIs required by a module. Cannot be `true` if `isAsset` is `false`.\n\n\n## License\n\nMIT © [Dane Thurber](https://github.com/danethurber)\n","repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"users":{"detj":true,"sszhu":true,"ackhub":true,"bourne":true,"flayks":true,"myalin":true,"xu_q90":true,"jcurtis":true,"qbylucky":true,"isenricho":true,"landy2014":true,"sqrtthree":true,"zhilidali":true,"budiantoip":true,"cognivator":true,"luffy84217":true,"rbultitude":true,"arkanciscan":true,"fengmiaosen":true,"bro_strummer":true,"calin.buzatu":true,"martinspinks":true,"gabrielschlomo":true},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"license":"MIT","versions":{"0.0.1":{"name":"webpack-manifest-plugin","version":"0.0.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","rimraf":"^2.3.2","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"db1eab268b70eb4f9dc2ff5fa7866143fc9e3b8b","_id":"webpack-manifest-plugin@0.0.1","_shasum":"8701ee63e13c0e691eeb9a97742eb49d4cad6401","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"8701ee63e13c0e691eeb9a97742eb49d4cad6401","size":2324,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.0.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1430919587537,"_cnpm_publish_time":1430919587537,"_hasShrinkwrap":false},"0.0.2":{"name":"webpack-manifest-plugin","version":"0.0.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","rimraf":"^2.3.2","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"d279131bb3468f6d86652396662ee52f15677e52","_id":"webpack-manifest-plugin@0.0.2","_shasum":"7faf2b2d213e237aa4bf4d602f15e29a52e2190e","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"7faf2b2d213e237aa4bf4d602f15e29a52e2190e","size":2846,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.0.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1432242037797,"_cnpm_publish_time":1432242037797,"_hasShrinkwrap":false},"0.2.0":{"name":"webpack-manifest-plugin","version":"0.2.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","rimraf":"^2.3.2","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"d28b7b3047e8429bc078d32cf06995e5fb50e4d3","_id":"webpack-manifest-plugin@0.2.0","_shasum":"01e4474c0d0e683315808d789a7e2abaa47959bf","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"01e4474c0d0e683315808d789a7e2abaa47959bf","size":2949,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.2.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1433718694573,"_cnpm_publish_time":1433718694573,"_hasShrinkwrap":false},"0.3.0":{"name":"webpack-manifest-plugin","version":"0.3.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","rimraf":"^2.3.2","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"4d9a9ea97494709299912f572f53b7b3f1dd9a5b","_id":"webpack-manifest-plugin@0.3.0","_shasum":"d615fdc7470e2632a53338afa49f060b8423fc25","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"d615fdc7470e2632a53338afa49f060b8423fc25","size":2991,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.3.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1435846818411,"_cnpm_publish_time":1435846818411,"_hasShrinkwrap":false},"0.4.0":{"name":"webpack-manifest-plugin","version":"0.4.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"fa98cbff666267a77a06715957ebc9e3996cd635","_id":"webpack-manifest-plugin@0.4.0","_shasum":"8c26f56f7e37748106f21d3792450fe4d68f0d01","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"8c26f56f7e37748106f21d3792450fe4d68f0d01","size":3064,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.4.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1438895529881,"_cnpm_publish_time":1438895529881,"_hasShrinkwrap":false},"0.5.0":{"name":"webpack-manifest-plugin","version":"0.5.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"25e22f8de0f9842c7cb596ee76e58cfdff1f62ca","_id":"webpack-manifest-plugin@0.5.0","_shasum":"61b55307b6e29642b197c68bc9cee37fca636eb8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"61b55307b6e29642b197c68bc9cee37fca636eb8","size":3157,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-0.5.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"publish_time":1446301087275,"_cnpm_publish_time":1446301087275,"_hasShrinkwrap":false},"1.0.0":{"name":"webpack-manifest-plugin","version":"1.0.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"d92ff5d56461253d5de29414236eb2b953cd9b27","_id":"webpack-manifest-plugin@1.0.0","_shasum":"4e5f9772a61af45924df088f55dc3b216181e430","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"4e5f9772a61af45924df088f55dc3b216181e430","size":3267,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.0.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/webpack-manifest-plugin-1.0.0.tgz_1454864150846_0.4383944752626121"},"directories":{},"publish_time":1454864153554,"_cnpm_publish_time":1454864153554,"_hasShrinkwrap":false},"1.0.1":{"name":"webpack-manifest-plugin","version":"1.0.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"lodash":"^3.5.0"},"gitHead":"7fe385ee5942f83755c007232e4322401e11ff97","_id":"webpack-manifest-plugin@1.0.1","_shasum":"77947c728686af665c3114608389a0cd65ed6a08","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"77947c728686af665c3114608389a0cd65ed6a08","size":3477,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.0.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-manifest-plugin-1.0.1.tgz_1461637995921_0.5357394826132804"},"directories":{},"publish_time":1461637998022,"_cnpm_publish_time":1461637998022,"_hasShrinkwrap":false},"1.1.0-0":{"name":"webpack-manifest-plugin","version":"1.1.0-0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"gitHead":"3a44de52de1d3a5b99dcc828c4df5d1154131e8d","_id":"webpack-manifest-plugin@1.1.0-0","_shasum":"0a5ac53042681a481e838135a8741f3f0fac0636","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"0a5ac53042681a481e838135a8741f3f0fac0636","size":3934,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.0-0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-manifest-plugin-1.1.0-0.tgz_1476890774622_0.9217108350712806"},"directories":{},"publish_time":1476890775276,"_cnpm_publish_time":1476890775276,"_hasShrinkwrap":false},"1.1.0":{"name":"webpack-manifest-plugin","version":"1.1.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"gitHead":"f33a0ad48e29b41f545bcdaa03bf6c2a331cd6e0","_id":"webpack-manifest-plugin@1.1.0","_shasum":"6b6c718aade8a2537995784b46bd2e9836057caa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"dist":{"shasum":"6b6c718aade8a2537995784b46bd2e9836057caa","size":3923,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-manifest-plugin-1.1.0.tgz_1476891411337_0.4521902452688664"},"directories":{},"publish_time":1476891412850,"_cnpm_publish_time":1476891412850,"_hasShrinkwrap":false},"1.1.1":{"name":"webpack-manifest-plugin","version":"1.1.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"gitHead":"b2033d0812bf17d300603a4d6ed3bf23f31697b5","_id":"webpack-manifest-plugin@1.1.1","_npmVersion":"5.1.0","_nodeVersion":"8.1.2","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"fd54135fc1287ca8fef05f5e6a44fe9377559dfb","size":2605,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.1.1.tgz_1499368996631_0.6949390885420144"},"directories":{},"publish_time":1499368997713,"_hasShrinkwrap":false,"_cnpm_publish_time":1499368997713},"1.1.2":{"name":"webpack-manifest-plugin","version":"1.1.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=4"},"devDependencies":{"css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"gitHead":"ca27c2d835645de78155fc49abb16d15d1c90509","_id":"webpack-manifest-plugin@1.1.2","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"e9d9967f4f739ee25380ca57de7f9417c5bea029","size":2583,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.1.2.tgz_1499436425229_0.1633587647229433"},"directories":{},"publish_time":1499436426239,"_hasShrinkwrap":false,"_cnpm_publish_time":1499436426239},"1.2.0":{"name":"webpack-manifest-plugin","version":"1.2.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=0.10"},"peerDependencies":{"webpack":"1 || 2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"458fb42a7895f434b901e644a2bf9f9de3595d56","_id":"webpack-manifest-plugin@1.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.1.3","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"2a078481e6fb0e811f13e1c018c44a2d62798085","size":2882,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.2.0.tgz_1500575659297_0.4506592967081815"},"directories":{},"publish_time":1500575660255,"_hasShrinkwrap":false,"_cnpm_publish_time":1500575660255},"1.2.1":{"name":"webpack-manifest-plugin","version":"1.2.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=0.10"},"peerDependencies":{"webpack":"1 || 2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"d7792d74eee84a4130f87e50a25b5bad0304a7b9","_id":"webpack-manifest-plugin@1.2.1","_npmVersion":"5.3.0","_nodeVersion":"8.1.2","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"e02f0846834ce98dca516946ee3ee679745e7db1","size":2838,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.2.1.tgz_1500592153530_0.4067050442099571"},"directories":{},"publish_time":1500592154488,"_hasShrinkwrap":false,"_cnpm_publish_time":1500592154488},"1.3.0":{"name":"webpack-manifest-plugin","version":"1.3.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=0.10"},"peerDependencies":{"webpack":"1 || 2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","mutexify":"^1.1.0"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"4c7c1665badcaa0a21ce4004fc6e0b0c09cca1f3","_id":"webpack-manifest-plugin@1.3.0","_npmVersion":"5.3.0","_nodeVersion":"8.1.2","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"08526d5e5b8f3e204c9922dc1af7f3f47d9d5448","size":4168,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.3.0.tgz_1502312314882_0.31191951246000826"},"directories":{},"publish_time":1502312316353,"_hasShrinkwrap":false,"_cnpm_publish_time":1502312316353},"1.3.1":{"name":"webpack-manifest-plugin","version":"1.3.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=0.10"},"peerDependencies":{"webpack":"1 || 2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"1d691af97b955cc8c1c8cd5b684e54a81c7d0a3d","_id":"webpack-manifest-plugin@1.3.1","_npmVersion":"5.3.0","_nodeVersion":"8.1.3","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"dc071dd00cc602a014f107436f53a189c0e55a2c","size":4112,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.3.1.tgz_1502711878044_0.25891235563904047"},"directories":{},"publish_time":1502711878907,"_cnpm_publish_time":1502711878907,"_hasShrinkwrap":false},"1.3.2":{"name":"webpack-manifest-plugin","version":"1.3.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=0.10"},"peerDependencies":{"webpack":"1 || 2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^0.5.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^1.7.3"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"ea193faf3a9e8c13ab96fe48316bdc2d2a4281d3","_id":"webpack-manifest-plugin@1.3.2","_npmVersion":"5.4.0","_nodeVersion":"8.4.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"5ea8ee5756359ddc1d98814324fe43496349a7d4","size":4116,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-1.3.2.tgz_1505392791648_0.4696916504763067"},"directories":{},"publish_time":1505392792622,"_cnpm_publish_time":1505392792622,"_hasShrinkwrap":false},"2.0.0-rc.1":{"name":"webpack-manifest-plugin","version":"2.0.0-rc.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=4"},"peerDependencies":{"webpack":"2 || 3"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.0","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","mutexify":"1.0.1"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"ed72f6897c8e5b43ebd1751ee31aac0bc725ec19","_id":"webpack-manifest-plugin@2.0.0-rc.1","_npmVersion":"5.4.0","_nodeVersion":"8.4.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"82b03afd05a308a36a6066f1c37ac9ff1c9d5e8a","size":4250,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0-rc.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin-2.0.0-rc.1.tgz_1505995199603_0.17563559766858816"},"directories":{},"publish_time":1505995200621,"_cnpm_publish_time":1505995200621,"_hasShrinkwrap":false},"2.0.0-rc.2":{"name":"webpack-manifest-plugin","version":"2.0.0-rc.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"nyc jasmine"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=4"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^2.2.0","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.9.0","jasmine":"^2.2.1","memory-fs":"^0.2.0","nyc":"^10.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5"},"nyc":{"reporter":["lcov","text"],"exclude":["spec"]},"gitHead":"052970ef91b9b319e0ba06772f2debf998e5a241","_id":"webpack-manifest-plugin@2.0.0-rc.2","_npmVersion":"5.6.0","_nodeVersion":"8.7.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"7e12abb805795fe256b085a214a15d9568f0e692","size":4546,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0-rc.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.0-rc.2_1519858994295_0.916625826517252"},"_hasShrinkwrap":false,"publish_time":1519858995733,"_cnpm_publish_time":1519858995733},"2.0.0":{"name":"webpack-manifest-plugin","version":"2.0.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^2.3.1","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.2","file-loader":"^1.1.11","jest":"^22.4.3","memory-fs":"^0.2.0","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"24acf95aaaaa4a2050e5f62340b66b2d0f6932aa","_id":"webpack-manifest-plugin@2.0.0","_npmVersion":"5.7.1","_nodeVersion":"8.7.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"691a0209e12083c375f6f22732ebc0e660437529","size":4585,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.0_1523204802103_0.9551429509855953"},"_hasShrinkwrap":false,"publish_time":1523204802147,"_cnpm_publish_time":1523204802147},"2.0.1":{"name":"webpack-manifest-plugin","version":"2.0.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^2.3.1","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.2","file-loader":"^1.1.11","jest":"^22.4.3","memory-fs":"^0.2.0","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"cbab79e9088f55911d919d61d223ce58e3b00c36","_id":"webpack-manifest-plugin@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"8.3.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"9ef26040eb2980bfcdd74a3ef88b6562c559469f","size":4639,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.1_1524140619070_0.4646410153166771"},"_hasShrinkwrap":false,"publish_time":1524140619215,"_cnpm_publish_time":1524140619215},"2.0.2":{"name":"webpack-manifest-plugin","version":"2.0.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^2.3.1","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.2","file-loader":"^1.1.11","jest":"^22.4.3","memory-fs":"^0.2.0","rimraf":"^2.6.1","style-loader":"^0.8.3","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"95d94efbaa0ddde1abb68ec93764c9f63c130db0","_id":"webpack-manifest-plugin@2.0.2","_npmVersion":"5.8.0","_nodeVersion":"8.7.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"e46747a3c1dbf2e24298ca0f2a91764f51f5af60","size":4621,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.2_1525033842047_0.9584608549454403"},"_hasShrinkwrap":false,"publish_time":1525033842320,"_cnpm_publish_time":1525033842320},"2.0.3":{"name":"webpack-manifest-plugin","version":"2.0.3","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^2.3.1","css-loader":"^0.9.1","extract-text-webpack-plugin":"^3.0.2","file-loader":"^1.1.11","jest":"^22.4.3","memory-fs":"^0.2.0","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.8.3","svgr":"^1.9.2","webpack":"^3.5.2"},"files":["index.js","lib"],"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^0.30.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"cad06c8476f83f33e0f9540886db177d7cf7b87a","_id":"webpack-manifest-plugin@2.0.3","_npmVersion":"5.6.0","_nodeVersion":"8.3.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"b42c5b08a0319cedb3ec45d9375a9ecee0acf5eb","size":4669,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.3.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.3_1527012659466_0.6852635663982392"},"_hasShrinkwrap":false,"publish_time":1527012659518,"_cnpm_publish_time":1527012659518},"2.0.4":{"name":"webpack-manifest-plugin","version":"2.0.4","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^3.1.0","css-loader":"^1.0.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^2.0.0","jest":"^23.5.0","memory-fs":"^0.4.1","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.23.0","svgr":"^1.9.2","webpack":"^3.12.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^7.0.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"bcca8907df46ad6b57199d34d7be876f95170a52","_id":"webpack-manifest-plugin@2.0.4","_npmVersion":"6.1.0","_nodeVersion":"10.7.0","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"e4ca2999b09557716b8ba4475fb79fab5986f0cd","size":4635,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.0.4_1536743360647_0.5146138978290937"},"_hasShrinkwrap":false,"publish_time":1536743360827,"_cnpm_publish_time":1536743360827},"2.1.0":{"name":"webpack-manifest-plugin","version":"2.1.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^3.1.0","css-loader":"^1.0.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^2.0.0","jest":"^23.5.0","memory-fs":"^0.4.1","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.23.0","svgr":"^1.9.2","webpack":"^3.12.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^7.0.0","lodash":">=3.5 <5","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"687e2608b6c48d9ce6f26ce03df02de8db7c5f9b","_id":"webpack-manifest-plugin@2.1.0","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"shasum":"5c7c6b3bcfc28fa4a32bcd63c739a83a04eb41bf","size":4782,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.1.0_1569254954976_0.398654001151896"},"_hasShrinkwrap":false,"publish_time":1569254955238,"_cnpm_publish_time":1569254955238},"2.1.1":{"name":"webpack-manifest-plugin","version":"2.1.1","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^3.1.0","css-loader":"^1.0.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^2.0.0","jest":"^23.5.0","memory-fs":"^0.4.1","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.23.0","svgr":"^1.9.2","webpack":"^3.12.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^7.0.0","lodash":">=3.5 <5","object.entries":"^1.1.0","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"6e736d40cdcc4dc9e0098ce6615b23407081b105","_id":"webpack-manifest-plugin@2.1.1","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"shasum":"6b3e280327815b83152c79f42d0ca13b665773c4","size":4802,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.1.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.1.1_1569333260435_0.37654100022555714"},"_hasShrinkwrap":false,"publish_time":1569333260681,"_cnpm_publish_time":1569333260681},"2.1.2":{"name":"webpack-manifest-plugin","version":"2.1.2","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^3.1.0","css-loader":"^1.0.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^2.0.0","jest":"^23.5.0","memory-fs":"^0.4.1","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.23.0","svgr":"^1.9.2","webpack":"^3.12.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^7.0.0","lodash":">=3.5 <5","object.entries":"^1.1.0","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"0ae710575e29726d1606c5c48bae888438a1bac0","_id":"webpack-manifest-plugin@2.1.2","_npmVersion":"6.4.1","_nodeVersion":"8.16.1","_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"dist":{"shasum":"990c448b4cfe1cf0b2dfad4a422264aabc4c98eb","size":4874,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.2.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.1.2_1569452916489_0.8262922014845031"},"_hasShrinkwrap":false,"publish_time":1569452916661,"_cnpm_publish_time":1569452916661},"2.2.0":{"name":"webpack-manifest-plugin","version":"2.2.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"2 || 3 || 4"},"devDependencies":{"codecov":"^3.1.0","css-loader":"^1.0.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^2.0.0","jest":"^23.5.0","memory-fs":"^0.4.1","react":"^16.3.2","rimraf":"^2.6.1","style-loader":"^0.23.0","svgr":"^1.9.2","webpack":"^3.12.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^7.0.0","lodash":">=3.5 <5","object.entries":"^1.1.0","tapable":"^1.0.0"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true},"gitHead":"5715c07748a80dae583074304e306534eac1896a","_id":"webpack-manifest-plugin@2.2.0","_nodeVersion":"10.16.3","_npmVersion":"6.9.0","dist":{"shasum":"19ca69b435b0baec7e29fbe90fb4015de2de4f16","size":5071,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_2.2.0_1570035476236_0.7898308017256204"},"_hasShrinkwrap":false,"publish_time":1570035476368,"_cnpm_publish_time":1570035476368},"3.0.0-rc.0":{"name":"webpack-manifest-plugin","version":"3.0.0-rc.0","description":"webpack plugin for generating asset manifests","main":"index.js","scripts":{"test":"jest","codecov":"codecov"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","engines":{"node":">=6.11.5"},"peerDependencies":{"webpack":"4"},"devDependencies":{"@svgr/webpack":"^4.3.3","codecov":"^3.6.1","css-loader":"^3.2.0","file-loader":"^4.2.0","jest":"^24.9.0","memory-fs":"^0.4.1","mini-css-extract-plugin":"^0.8.0","react":"^16.9.0","rimraf":"^3.0.0","style-loader":"^1.0.0","webpack":"^4.41.0"},"repository":{"type":"git","url":"git+https://github.com/danethurber/webpack-manifest-plugin.git"},"bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"homepage":"https://github.com/danethurber/webpack-manifest-plugin","dependencies":{"fs-extra":"^8.1.0","lodash":"^4","tapable":"^1.1.3"},"jest":{"testEnvironment":"node","coverageDirectory":"./coverage/","collectCoverage":true,"coveragePathIgnorePatterns":["<rootDir>/spec/helpers/"]},"readmeFilename":"README.md","gitHead":"4e02e21a61f2a7e41d36b0564d45c5f4932b0615","_id":"webpack-manifest-plugin@3.0.0-rc.0","_nodeVersion":"10.16.3","_npmVersion":"6.9.0","dist":{"shasum":"d488cc34d9509aa4ffcf98eee8559d9106195e2a","size":5046,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-3.0.0-rc.0.tgz"},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"mastilver@hotmail.fr"}],"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-manifest-plugin_3.0.0-rc.0_1571924625933_0.783278159185876"},"_hasShrinkwrap":false,"publish_time":1571924626036,"_cnpm_publish_time":1571924626036},"3.0.0":{"name":"webpack-manifest-plugin","version":"3.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@3.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["lib/*.js"]},"dist":{"shasum":"426644300e5dc41a75a9c996c4d4f876eb3c2b5b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-3.0.0.tgz","fileCount":6,"integrity":"sha512-nbORTdky2HxD8XSaaT+zrsHb30AAgyWAWgCLWaAeQO21VGCScGb52ipqlHA/njix1Z8OW8IOlo4+XK0OKr1fkw==","signatures":[{"sig":"MEUCIAPMVSzvR4bfRv31dHgfPZGuZUb+YbRwb6/LP+15qHXEAiEAgCak11j9l3lqesxX8rt03+IB/LKbXoqG291zym6fDVk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfx7uCCRA9TVsSAnZWagAAh+cP/RkiVAO01f3q3Uv9N32X\nwzFxfuvyPg6O4Lys/GsFb6dwMaTcW6dJwVy1pn2PHkMvxvkyP18VvN5ufty6\nIEvczBvy4EibAMuXjmVaZy9JIDheaRmLZYgYAro7w2jLKCbQYnqR1qvhNqRx\nvUvkAc52pNli/Wf9wAkJnh9PzvfsMKtYsjMnTn67GHv6gwaesT9JKIIeIDJa\nVwJKVQDNwXTvwCo0GHhissXuR7CLgmlsw0V9u0k7IahQkQ4zbxrWTydgfw67\nTufXsr0+FzHOUq5/9kL1VG0H5Zhq+dW2xRiWIFCurdCeGw+nXIDk7g1qZsLi\nRRgN6ibj3peIkOXpbjhJwtm0Y8oXBxxZWVUrmQay//4ZH+xl1Me+3wShtgje\n7IPOLEgpc82bEhCdlDd1xOIZZnLgOHaC+bNuD+KlGEQIY4r/ddoFh2pxN6Q2\n80D4pAxe8kjxWSyKO0m+Enaehu3T+dD4CckAfssy0yMof9UZcuL0Fgcn0Fub\n0JdOyfSjXj4ozubyejJ4xBQYy6egsRiYduLhDAB3/igvc/Y/xFdjOtOJu7oE\nhJIo1NfZ4LNvuMI/D1Q8jAhUABsdY1r3309VwtqwEUbDHZMjs0eAqmnS8OqT\n6OTxMfx+uX5VRt48H31lve6zI2VqBm1IB/hrMWuKR/E9o4Qp2uIZ2mgnbwxf\naRIB\r\n=e28H\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"lib/index.js","engines":{"node":">=10.22.1"},"gitHead":"728e43113536ec1eecbc5517d4076f954e7caf4d","scripts":{"lint":"npm run lint:docs && npm run lint:json && npm run lint:package && npm run lint:js","test":"npm run test:v4 && npm run test:v5","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --verbose","lint:js":"eslint --fix --cache lib test","test:v4":"ava","test:v5":"npm install webpack@^5.0.0 --no-save && ava","posttest":"npm install webpack@^4.44.2","security":"npm audit --audit-level=moderate","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:json":"prettier --write codecov.yml .circleci/config.yml .eslintrc","ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","lint:package":"prettier --write package.json --plugin=prettier-plugin-package"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.4","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.1.0","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","react":"^16.3.2","codecov":"^3.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","file-loader":"^2.0.0","lint-staged":"^10.4.0","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","copy-webpack-plugin":"^6.2.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^2.1.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":">=4.44.2"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_3.0.0_1606925185624_0.01785910025323645","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"webpack-manifest-plugin","version":"3.1.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@3.1.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["lib/*.js"]},"dist":{"shasum":"9030b8839bed093d93930a9d1d3a7ab00f7ac4f7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-3.1.0.tgz","fileCount":6,"integrity":"sha512-7jgB8Kb0MRWXq3YaDfe+0smv5c7MLMfze8YvG6eBEXZmy6fhwMe/eT47A0KEIF30c0DDEYKbbYTXzaMQETaZ0Q==","signatures":[{"sig":"MEUCIB2/heN1sKe32dpqM+TQgh4gm+CNqhgAICb7kZjHVeqoAiEAg/rLKb3quHEV/usMpZQZdOQOg8EQ3u+MNgSE3zMeHTc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgSOnfCRA9TVsSAnZWagAALSMP/1B/guZ8DV5Nf6pq4Hub\nbxhvX4lZj0bR4O4+J8sctpWLWMjygvKZoTJMzs42k4fXgQ5optZF/liEu5j6\nvW0ZUMXHuVpFCcKt6g7pSnJL/b7X2DJMddu8f/euL893Qs4RRXFN8B6A+2sl\nKliajyEwHsSOVG+GCMH/W9LlLpkFOrH6eKy675i9Vy4nFvta+ePUDGGFV68L\nvayiKcnslxxnxU825fGAL0m15X2FVm0Mikg6hIK036J+1MbnAkZicL6qnEOG\nULil2PEgmV74btv65vKX2wEf7Q9Fg7MIRRcbmkwRWC0Hz8qdcatwCFssSbRy\naJfISC2aVmE+K8aTPWE79FRaiE4AnPYR84xTDok7VHRmG1Uqy3Rf2vnVHo48\nNAkvsVVIDb2dz0BiHaxxBMjIdgTfyB/gpdOHtyXj5Xn+rvKOKOgFCbNg83gp\nXlML8xh5LlVUrpqcaT3rZHQGvY16Fy1rgz5z2UkMdn6WC5WQRU0LROQVC0OA\neEjsmzrI4QAfKUPgjb0foe2f7UVeLLJdRGASu/AeEwaGs+VeJFH2Uzu/OfbF\nWwdvNYtIoah+EDyPprRTSVTgmfWlFBCcm4r8mj72L+nhlVbDzwd3XqLNDmms\nmWDQtNQ0B1GzNMA/cpT4kG6r2oyrp/YR5qZbWsTx1OU/lGp4h7UFsFBuSLTm\nO1Iv\r\n=uqQZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"lib/index.js","engines":{"node":">=10.22.1"},"gitHead":"4d3e935debdf1ef7d915389e13d7e2e059b8c3d2","scripts":{"lint":"npm run lint:docs && npm run lint:json && npm run lint:package && npm run lint:js","test":"npm run test:v4","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --verbose","lint:js":"eslint --fix --cache lib test","test:v4":"ava","test:v5":"npm install webpack@^5.0.0 --no-save && ava","posttest":"npm install webpack@^4.44.2","security":"npm audit --audit-level=moderate","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:json":"prettier --write codecov.yml .circleci/config.yml .eslintrc","ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","lint:package":"prettier --write package.json --plugin=prettier-plugin-package"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","react":"^16.3.2","codecov":"^3.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","file-loader":"^2.0.0","lint-staged":"^10.4.0","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","copy-webpack-plugin":"^6.2.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^2.1.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":">=4.44.2"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_3.1.0_1615391199142_0.7748863269915642","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"webpack-manifest-plugin","version":"3.1.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@3.1.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["lib/*.js"]},"dist":{"shasum":"d4c57ef70e0641f754dd005cb5ba7ca5601ac9d3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-3.1.1.tgz","fileCount":6,"integrity":"sha512-r3vL8BBNVtyeNbaFwDQoOWqBd0Gp/Tbzo8Q3YGZDV+IG77gsB9VZry5XKKbfFNFHSmwW+f1z4/w2XPt6wBZJYg==","signatures":[{"sig":"MEQCIG7W/5kftq2CpoKomAGgluU+E0ydKgtZLoMB2BkqHpNdAiB65Ig1UmPBg1U43FoxAqbAz8CSIger5nT4+PgcP+qv9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21259,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZdHUCRA9TVsSAnZWagAAYLwP/AhvFqTxw9LWrnhVYa3r\nI6Wt33+X/xi1Ljnym9H68IZ5OmZBSS1RdnGMuM87R0QD6bJ9wN16J/3/AOsz\nrAl6n/SFci8PXPXPqsIzpZVMsj+LQOM5WG9HRt6wa82mu2GWk8b49k/j8ZwL\nvdwqq5XCKsMNyhtnlBGfFuMNa5BEU6OKk5j6WUCGakWLuUcXBVBA+VBel4Di\nqZu7750SWWX6iu0+fhYN9+w82HQufDdDfLnA1cLl6hvsqT0gTftqv1Kl4oQf\noVO1YGW/0qPuL0flAoYIHt+2hz4HLZpvC2GJDlh2lSh1++jdvH5DgBc4fLL1\nVQO059EmFgwuFcUraM/aEdkX965cEiKa5TEbzV1t+279njcVW8F6fCOHq3OO\ndV5majqMxaAzfwmOpg38JQVOKIAWPjHBRFrNr/yZsePZztBoRhf/pDmZ5LhV\nS5E1cZmkbeb9/9L+ldQZG+2BedtdGzd80e5QSs9vqY56nKne9B9gwpj7PNbH\n++3ER6MPJHtvLNERBJsJq+/7Qc0uAzj/pA0cYv7ty4WI4vwFJyayddjogprh\nxkRyKl6pB2GOFnOE63jigC2Qro68xHLrCe7bxk0GZcMYBcCmqgfR6RT4k38O\nivg3q7nlaHjofHY3j3GuQllL5SiNoNR555/Jj+2F2ysSviDnHL2Ul/dCZNc9\nbZDV\r\n=ACkR\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"lib/index.js","engines":{"node":">=10.22.1"},"gitHead":"da910dcfc3984ef699e417a3ee9cb8bb7c35b890","scripts":{"lint":"npm run lint:docs && npm run lint:json && npm run lint:package && npm run lint:js","test":"npm run test:v4 && npm run test:v5","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --verbose","lint:js":"eslint --fix --cache lib test","test:v4":"ava","test:v5":"node set-webpack-version.js \"^5\" && npm install && ava","posttest":"node set-webpack-version.js \"^4.44.2\" && npm install","security":"npm audit --audit-level=moderate","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:json":"prettier --write codecov.yml .circleci/config.yml .eslintrc","ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","lint:package":"prettier --write package.json --plugin=prettier-plugin-package"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","react":"^16.3.2","codecov":"^3.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","file-loader":"^2.0.0","lint-staged":"^10.4.0","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","copy-webpack-plugin":"^6.2.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^2.1.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":">=4.44.2"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_3.1.1_1617285588349_0.5400857826027765","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"webpack-manifest-plugin","version":"3.2.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@3.2.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["lib/*.js"]},"dist":{"shasum":"28290be3005f27867b2c7d8c52c01d0c7876033d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-3.2.0.tgz","fileCount":6,"integrity":"sha512-68b94EUjHrvUy+um+lmkIKHyfsFkJFDr+7s/GqLIhTSB6i9QzprQph8XOYnJU7ANqTyYr5g5Ng/DrAH0g3wjog==","signatures":[{"sig":"MEUCIFmbWqi+FluR2YJ0GLI0kCmEAvH7Y+U3OvZQ2bel+dltAiEA3I9l4XX5LqMn2rtJWzzH8afD0fzeq+5oGBeN/eaA2l4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/1S9CRA9TVsSAnZWagAAIe8QAJprZ84RWv/yztJw3TeW\nVHDhrREnKxKjzKh8SonEOwPHrX73NOGEojwJbBQcKNRhDNvknMmDhluWsHz/\nQL0kJLeIv3oKiB/KIYZcMBOkjg2SAuk3Po5K7179t3XkVJqh0Dmgab6MXiqM\nACI3J+bmSVzvl1tQEVjwINnjiVzh/Ju8Ii/jz69tgtE3b3irtiOi44kxs/Hy\nqO2Rq39fuXP4y3g0W/ZD7yOfae2WG9Lef/0l2w+gFTndtbqt7p+S6Vw5bPhS\nZ0fC52YrysWT9/msq5/c4KsJCcS38cZzR3+jELRG7hjVgP6MWJjmNaTCo5LY\n/HGOQLh1suKhkJJ62qwXs0XzZzN9WEI02cXV2OXNHqUttdUvfCHAMUBYIL73\n5QQUjNAwx3UuBJtnXgFuXWmhmArL5ijJlr6TSHGrrO0T0Nr+K9dOxN8p7cHT\nc/3arSIw5paJa3++16xfOu3eqVmqbTjKk9oDjPfrEHWBWc3Hrpw9BowWjZkA\nWZBKefuX/w6yu+r8mb8dCdJKfekD3WYBBL0TQqzQS9AHuDaiAG/Ly0GekwCN\nCJ4W0L4WM5LhbFX67+rKGjYgUnymLymFv1BNZajjF78Pqye3PABDa5cXLUzB\nEMEyDN8K06oajMu/2TPtQWTWDsq6dTNVjdd2mfFchtwwoWDgxiNqbFKvkVwD\n81fO\r\n=oa4z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"lib/index.js","engines":{"node":">=10.22.1"},"gitHead":"1b9142e05852ff3499b172449a8e1254e0a1c9df","scripts":{"lint":"npm run lint:docs && npm run lint:json && npm run lint:package && npm run lint:js","test":"npm run test:v4 && npm run test:v5","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --verbose","lint:js":"eslint --fix --cache lib test","test:v4":"ava","test:v5":"node set-webpack-version.js \"^5\" && npm install && ava","posttest":"node set-webpack-version.js \"^4.44.2\" && npm install","security":"npm audit --audit-level=high","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:json":"prettier --write codecov.yml .circleci/config.yml .eslintrc","ci:coverage":"nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","lint:package":"prettier --write package.json --plugin=prettier-plugin-package"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","react":"^16.3.2","codecov":"^3.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","file-loader":"^2.0.0","lint-staged":"^10.4.0","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","copy-webpack-plugin":"^6.2.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^2.1.0","extract-text-webpack-plugin":"^3.0.2","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_3.2.0_1627346109843_0.007917326997963992","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"webpack-manifest-plugin","version":"4.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@4.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"2157c853f3fa03f8cbaae59e92c021a54dce562c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-4.0.0.tgz","fileCount":12,"integrity":"sha512-nUj1TXLMa9Z3YC7klzt5VVyECgeMGGhlDpHvADAj2sj4Q4xSDKvHRWIQUMvsm4FPqiU4UDLjGbdEREYRFBggSA==","signatures":[{"sig":"MEUCIB+hLGEScYQU8n8pnzVoBq3EBJ6x/S5B6I6ou8dNZDbLAiEA9mSa9V3xQw3K+XxKHGJAA5OM6oBYpPAs0vxObr/t7KI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAarMCRA9TVsSAnZWagAAW5cP/RUjNHz5QM4vOZZMfOZg\n313YORdEWAK0HvnmW2e5uYf/aCQZ133H/qtea8Eqk8ll9G0GTtpBwSQUErZJ\nmT84sA72/6mfAjinww1ektbUonRwgfArpVO3ZsJbKbLpHZsh2Z6kgAZ8utWy\nb5Km/WbS2lLbLr7o1V4ssaRmgsCeEeXMnET/2o81u+ujNT/fTut0KolZaqZh\neUPLUHXrn4AXoGnjKo64riY8eG9wnngRKMSAi/bynSG6iPSObuTDwUw2aXGr\neTYbYlOLW5lkoXzoSIHOosqrEVxnThOYr0qVoPSs1pkAo/BgnkphgvcmbdiT\nFlnc/ZhK0LO3nhOAds7LbJpIO5DzeHsAx7pavhNlkf42fsnhERItRbSpzXrK\nIV5k9AfQpMPe6OdqmFIbbB10wKinS6UsaNhquPhXK1zYdv4ZNaksDEn0HE9q\nv9vKjiTm/cS7XyizHw5weYrOR+Q817kY/fBBoX01esdAJ4jmS3I6NDGAdpr1\nMqIl7sQ09v++yTfxxYnbdUXcwJDtX5odIHlmqE76ApLPGNWn+ID1EONfu3xv\n+QpK3DEhos7E9n2tWe7/nUSnK3GK7ZHPUurNCLuegrlGOERZoouz/3wVQaT6\nJF5V+Mu2a09kTsC+X8F/6sY+s789Yp8P6VbsfaFvynjqPwM4UYLJ0rxpN677\n2fkz\r\n=MbAp\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"5ff683260cb6b7f48ad8a0f02faebe89a63d964e","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm test:v4 && pnpm test:v5","build":"tsc --project tsconfig.json","switch":"cd scripts && ts-node --project ./tsconfig.json ./set-webpack-version.ts","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache scripts src test","pretest":"pnpm build","test:v4":"ava","test:v5":"pnpm switch -- \"5\" && pnpm install && ava","posttest":"pnpm switch -- \"4\"","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^2.0.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^4.41.26","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","extract-text-webpack-plugin":"^3.0.2","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2"},"webpack-versions":{"4":{"webpack":"^4.44.2","@types/webpack":"^4.41.26"},"5":{"webpack":"latest","@types/webpack":"latest"}},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_4.0.0_1627499212025_0.22912950752251948","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"webpack-manifest-plugin","version":"4.0.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@4.0.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"425e37caf7580fc02a4650d8405387e91299b233","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-4.0.1.tgz","fileCount":12,"integrity":"sha512-b4SLlTkvXEZQh0M/HUH1z9jiwdapjsMbOqlHJH/0/Ic9dpGHmf+X36GeOpFqn8Oz64RucaOKwVSmsNhfw3Cr2w==","signatures":[{"sig":"MEUCIQDezyl6u97JFUAmVvcdRkiZIePxwvPPA0wngphMk3RATAIgEi3Ff6LXYM+tL4aF8GejvdFs8jBOok8+GqH63HegzRc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAc3kCRA9TVsSAnZWagAAAgEP/AnWN6JiPxqEd3WDsB4x\nQmBNtS4CCSPZrPC/AdOQVuDEBVAQnFYvSHCbN6J8jdknXqpJQ+o5iWLhtILB\nzAA5s8x0UIch7NP0w2EijIIPEjpU/Y/sURJSEj1wCOE41w8bePSUIcMKWgk1\nsmEpMCFd60JlnJeetOlDUMOZY/0GWnPE6cTSGlb4Tz4uXWYG42UaTvJFeAIh\nlIx+YOhNndYdsaq+ZjEO6wT6AdZ1u25gEC9D1cuACvAdb6sb1stAxRWGhcQT\n05Ot82UiAqm1FkSGqyFd7pleRaUGkfSS1YMFELdTB3KjIgBPX4JpTHKpeIEM\ndnyAb3m9txgDsSyzztp/5YRRr2iQ2dqBNKLXDzS6JvH492lUOlrmcsobvY79\nGDVmp65vZi1wQcKwdxq7zB2ri2ivCplCNhfCZhZS0WX0C0KoKhlZX5gQ0TnS\n1D/lmKFHzzj0r+u0jW4GJjYLfS/qSVvdp2j0BUMKJTk2RBIUG2nW/Qxra642\nhaK+3FOJzsT9N79oFhfQXCMflUUGq0JxjHeWXzSdiwCne/shfVsCkawe6Rc6\nlk+2M9jKFVqd/2CZit//+NEJQ/2XibZf2fDroIEh/Spq1SFyT8rJUKQ5Sy/d\nnoFkYq2gdGbeQPHG+TIUfwn8T7iDB/Pod5yTRJHA3THlUQiBXv9+1YLghCtc\nikqU\r\n=tYfz\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"9bfc989b807b3d6134ac79cb82c9f356c8bad596","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm test:v4 && pnpm test:v5","build":"tsc --project tsconfig.json","switch":"cd scripts && ts-node --project ./tsconfig.json ./set-webpack-version.ts","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache scripts src test","pretest":"pnpm build","test:v4":"ava","test:v5":"pnpm switch -- \"5\" && pnpm install && ava","posttest":"pnpm switch -- \"4\" && pnpm install","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^2.0.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^4.41.26","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","extract-text-webpack-plugin":"^3.0.2","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2 || ^5.47.0"},"webpack-versions":{"4":{"webpack":"^4.44.2","@types/webpack":"^4.41.26"},"5":{"webpack":"latest","@types/webpack":"latest"}},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_4.0.1_1627508196001_0.953051732699385","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"webpack-manifest-plugin","version":"4.0.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@4.0.2","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"a7ee46219a6c820a5cdae0f7ddb7cb04837448fb","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-4.0.2.tgz","fileCount":12,"integrity":"sha512-Ld6j05pRblXAVoX8xdXFDsc/s97cFnR1FOmQawhTSlp6F6aeU1Jia5aqTmDpkueaAz8g9sXpgSOqmEgVAR61Xw==","signatures":[{"sig":"MEQCICNsFFeGtKw9VOmte0Rgi1uBrlEs5rQ8DQWsgNK5mgIOAiAMWagzY2g3ZI4RZt4OBRgwYE9SwMWXkhEVwuVSOMg5EQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhApSICRA9TVsSAnZWagAAWaYP/0L1M889NYVXy/NLfzMb\n7B+RtNOiFl9eQWbcpt/bTgM/PPXcJCpWG72/WkRe7wRxFSI/0om7qNbyOUwa\nxO8WHtdidv2fTjK7RNB74blA5bgr2FiJeWeptGsMUHL9s/nTBTW2GspHKd6e\n7veqNZGD7h0cXMgE6QN+WHNun7ocoVEnHRlnvnRTl97Y83Tu/uN7RsgRsE7I\naA6Iyipuc5sTrJjrQk6u5XWQHU4VMleXbIGruAeLy7hFf3fxcPhrlyin5PLI\nYZxNZFt2b8Gf6kei4XeH1OK33HZDH7ynNf3zhF4JyIWRHfskQq3956adDwII\n9GVv2wt+EUzMmAeMSMIfkPjfx84IBVWLdoN55rjKvtf38lntKxp78vChUeQj\nvikP8hsg38d9th6k+Dzo4IgPN09EPI5b9BNcLWSA3kGeudGA91VCNWBlG1st\nTAFVn4m85/6JgYElGECWt9OfaUI1a/PhSycF6PQgK68ZBi+mEYZsJwzxOuhv\nZa4Art7UiujEFdAKMQz0Wskn8iem03dXNmhV+GAVseTUtrrUbN2jPone8IGy\n5m3JrI7XjKi2SNIqq4rqwHrSBZtcXEJLscGvj+8hnhv/1qLYvKd6oiYs0Pt3\nce7l+GBkiLTzx5BnxhnYLW0MAXzS/lTOvjcbBXSob4pwotQEzaEck7IdRZga\nuFOP\r\n=eHxD\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"77eca2545b70ea235fc2c6b5ddf0f90540dd8588","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm test:v4 && pnpm test:v5","build":"tsc --project tsconfig.json","switch":"cd scripts && ts-node --project ./tsconfig.json ./set-webpack-version.ts","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache scripts src test","pretest":"pnpm build","test:v4":"ava","test:v5":"pnpm switch -- \"5\" && pnpm install && ava","posttest":"pnpm switch -- \"4\" && pnpm install","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^2.0.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^4.41.26","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","extract-text-webpack-plugin":"^3.0.2","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2 || ^5.47.0"},"webpack-versions":{"4":{"webpack":"^4.44.2","@types/webpack":"^4.41.26"},"5":{"webpack":"latest","@types/webpack":"latest"}},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_4.0.2_1627559048455_0.2121592057558619","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"webpack-manifest-plugin","version":"4.1.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@4.1.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"d81db448b4bb06a7c358fb49ce717032d614a340","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.0.tgz","fileCount":4,"integrity":"sha512-qzbtp+O+uVCaIJ+bDp4gNQ3uRTr2rxOhn6helrkWFl1hIXmKSbGugelo1pV004IDTmJx84no3KrEm2kT7QB9Sw==","signatures":[{"sig":"MEYCIQCHhav2objAB+nsGXLNkVmeUSbfNsyN99QlmBFeHMVFEQIhALc8SBpZOSQLLB2WXEyeK1NF/ep1+0QYLYsNGLzHUsBA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3aAtCRA9TVsSAnZWagAA+kUP/irWrzAtlHV/zNhlRkI2\nFJFBphdP/xNQO7p7f8yl8tWfCt7Z3HoUNsNVSFGiDdfc7TUSG9ytQBEE7qxh\ngL9F6G2GLiLdZpGRnK3RAwKvVANIPSRnDjak3hCGk0nkdji8l2XywKf9DqY2\nwgYA6yb0IwVTywyaGzO8Fq/VXdFTzjjLdsX1a33QZIKzSkou3rtsf+UNMy+r\nVZM4QLcKKq16kEfzY+mlHi8o+XBV241+YZzZF/CzkdbV8oFWSQAbH+rV5GA9\ngV2AA4F+kvsUxxSxJWztnmTasOFzREM0J7SAKXd/PXNvFOS+Bmp3FBMYwOWi\nnPDPVUCfTGU0aJHhYkIEiCwlffv/BEggDuiKBI+fi+0PbqfytQwaiGV1OVQB\n3ODRKhp5fEYKM+oUja3oIuBm1mXBYFlWsn8B1q2wjCPDxeSL1cAWlA4GKFj6\n3SVOleR1ZZqP1XdczptTdLv6ru1nCiFcgqTaojEdmjEbFx2Ynhlw0XYE5Qj7\nnx2ldmwY1KBMvTsYadwHnPSWf+JkTx5ybVgRFAoHh/uwedq8VLpUkjuDrlSg\nt68FXELxFh3xAi9A93Khg94x88Zt22OpJO1z8YdKdDr1MytOPvSuZlDqRamk\nZM45b6AgyOXUaB9OijyqtReJXr+XF3s9Do2erDn4tlEasWll0JMHCagl0tP3\nx7BD\r\n=FRfN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"4ac6c240fc964fdc8f1d3efb510e1e58576cfc72","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm test:v4 && pnpm test:v5","build":"tsc --project tsconfig.json","switch":"cd scripts && ts-node --project ./tsconfig.json ./set-webpack-version.ts","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache scripts src test","pretest":"pnpm build","test:v4":"ava","test:v5":"pnpm switch -- \"5\" && pnpm install && ava","posttest":"pnpm switch -- \"4\" && pnpm install","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^2.0.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^4.41.26","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","extract-text-webpack-plugin":"^3.0.2","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2 || ^5.47.0"},"webpack-versions":{"4":{"webpack":"^4.44.2","@types/webpack":"^4.41.26"},"5":{"webpack":"latest","@types/webpack":"latest"}},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_4.1.0_1641914412912_0.5738880135602316","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"webpack-manifest-plugin","version":"4.1.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@4.1.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"10f8dbf4714ff93a215d5a45bcc416d80506f94f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz","fileCount":12,"integrity":"sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==","signatures":[{"sig":"MEQCIGNqxUSL4jDOhBLzM/L4tyHTpcQYjdR6ov+ayjzFQvRYAiAI92J+ZI2bCZcg9UM87JxpXhxAabvvRv6s/GdTUaOhIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37526,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3aUcCRA9TVsSAnZWagAAeEcP+gI0jbYD++eIE9MoJihs\nrpNw6CBFLPeY9l+1oAFjMK+BQTrUEm9ncWYng4EKj449zqMuinLsYjsY8Sod\nLXvdeTeV+uwzbapuLuhek3k5ipEy2kYC2Bz5c5cSLFR48LSWHcXP7UE+9tlg\npfAETZYJK2wajp7gZZBN40zIpIVYJyInUzOoC4vqAQSmLpLl59ozevmeIRVX\nIJOQUUQO/YkwRRVnvMW8do2Nvb9Bx6hP6Eocx5jL/JdqpyII3bqwRQ5ivLFI\nqc55lbXCUYBfFG7r+dId2r0jnd6AYIuMPOYpMz+u1TLvw7Q4jsTDexo9Izef\nnnsNN+uPtNtbbAowkvC+e0w+7fQqSi1zRhviS3MqicBUCsUWPIjInkBQ2nhk\nfh79sqoAJB5R8dh462x8ymhxom7JttsG/Rjjt5O8T3IWO9GVO2ZbiS45iMRI\nS7JLjfKSd3EYaqD3nDSXEJmZX5QQuO7a6RwXUbwBtyy6UVw3od5TeDDbrICZ\njJfZGU4aHn4ngVPbqXRH3lE0WIajFQVJc2k6GtpMUirLSumd1Q+Rj7dhQS9q\nelNmjtQzufrC9x1q8sQQl75rp54v3nH0xwF33HL60UfMiiVllMavOV+rQtYI\nMtxKfiW+pWbGOlfnP1jrWd9EAhmLJ20eiWJcShwWTPWGCoQxN3V12kIaEKej\nffOY\r\n=v3l0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"793a035c4162c4f34273af6aeef25b5686e5c4d0","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm test:v4 && pnpm test:v5","build":"tsc --project tsconfig.json","switch":"cd scripts && ts-node --project ./tsconfig.json ./set-webpack-version.ts","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache scripts src test","pretest":"pnpm build","test:v4":"ava","test:v5":"pnpm switch -- \"5\" && pnpm install && ava","posttest":"pnpm switch -- \"4\" && pnpm install","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.9","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.15.3","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^4.44.2","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","css-loader":"^1.0.0","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^2.0.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^4.41.26","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","extract-text-webpack-plugin":"^3.0.2","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^4.44.2 || ^5.47.0"},"webpack-versions":{"4":{"webpack":"^4.44.2","@types/webpack":"^4.41.26"},"5":{"webpack":"latest","@types/webpack":"latest"}},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_4.1.1_1641915676549_0.4458167379902278","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"webpack-manifest-plugin","version":"5.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@5.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"084246c1f295d1b3222d36e955546433ca8df803","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-5.0.0.tgz","fileCount":12,"integrity":"sha512-8RQfMAdc5Uw3QbCQ/CBV/AXqOR8mt03B6GJmRbhWopE8GzRfEpn+k0ZuWywxW+5QZsffhmFDY1J6ohqJo+eMuw==","signatures":[{"sig":"MEQCIGox+MFwQPM5XsqHMuuibOiYTMUtKmMUT0hpAU8UdinQAiAlqgvmFbphZUy9Wjl1jFvSbjEeHayYDIVMOQl/D2M3+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36665,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJ3kdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOrA/+PTE3TrVn03DZ4BZpWagfFJmoLWF61g7YiO71C0wy909Tf3E1\r\ndvDtNguI8y/wHB+E4/2ILfm019L+w/t3X8IFxzqdCMLRVjgxeIoCMf/nBX67\r\nxAAWE5dIzqezEu1L16pcV7Fbi8v1tA8HUng48H9O1/a8gdtQP94sB1xk6DRi\r\ngbFABROJ+Xino9FIrkheEnRk1xLZ8CfU+3SItTmuh2Mugj7XUbiSYdERpryp\r\nw0t8q5i+R5b9I6yTbdwg7y+fZutgsUzfxW5xeOkmHkqv20riAtbDiOiLWa/Q\r\naLSPY9VGW5IVHWPeHKIEW8PFwFxfNX2y4ig7R+d7xBMuzxMeHacucNUhk67Z\r\nwHuYEaso42Hbm0wi560H/mL+wXpB3OfLH4oEEGojzsf7NjZvk74O9aN3viVD\r\n9kldZVYqEWHDtPa2KkoSqbw+cumJMtGYZmP3X8KJElyqmbXIiPRVbq0OFYGt\r\nI9yG+SDg4meZd+Bl/7hn5RqFeHmANqNAb4V/tnFeHJNGE3lc4UNt0BHRvbYe\r\nPG5D9NvELdJEJS2ZXCmWK7FKFepNED2kpBem+tyJFnJ5BuU8t017yTBcEL9O\r\n37e9/S6iw2JTHW5l51oSzvkpakq74LQdZPgOouRA5shi/J//q4hmXaf3w3YZ\r\nXsxf9ysD0vTUse9Flsp+oY0ltvAeKC8D0+E=\r\n=ovvr\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.22.0"},"gitHead":"180940caa25c17be9fce714e9b328681dc561334","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"pnpm install && ava","build":"tsc --project tsconfig.json","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache src test","pretest":"pnpm build","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.14.16","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"14.19.0","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.13.0","del":"^6.0.0","nyc":"^15.1.0","husky":"4.3.8","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^5.47.0","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","pre-commit":"^1.2.2","typescript":"^4.3.5","@types/node":"^16.4.3","file-loader":"^6.2.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.2.0","@types/webpack":"^5.28.0","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^4.2.0","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^5.47.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_5.0.0_1646754077337_0.04409023656523425","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"webpack-manifest-plugin","version":"5.0.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@5.0.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/output/**"]},"nyc":{"exclude":["test/"],"include":["src/*.ts"]},"dist":{"shasum":"8d401fec7fa587cba5af561eb60e39d6a8050e8a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-5.0.1.tgz","fileCount":12,"integrity":"sha512-xTlX7dC3hrASixA2inuWFMz6qHsNi6MT3Uiqw621sJjRTShtpMjbDYhPPZBwWUKdIYKIjSq9em6+uzWayf38aQ==","signatures":[{"sig":"MEUCIFcbQNsGom0phPxc5ORohtVUNG4vFB4gUQGhdv3UQkRSAiEAocOxguX91drKCiGA4GMiFxya3Pe/vPWahf3dPZxFowU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":36816},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"types":"./dist/index.d.ts","engines":{"node":">=14"},"gitHead":"b87cabc87794bafc4cb7118c723bd5cab525e1d1","scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"ava --timeout=2m","build":"tsc --project tsconfig.json","ci:lint":"pnpm lint && pnpm security","ci:test":"pnpm test -- --verbose","lint:js":"eslint --cache --fix --cache src test","prepare":"husky install","pretest":"pnpm install && pnpm build","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write codecov.yml package.json","ci:coverage":"nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov","lint-staged":"lint-staged","prepublishOnly":"pnpm lint && pnpm build"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"10.2.4","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.js":["eslint --fix"]},"_nodeVersion":"18.19.1","dependencies":{"tapable":"^2.0.0","webpack-sources":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^5.1.0","del":"^6.0.0","nyc":"^15.1.0","husky":"8.0.2","react":"^16.3.2","tslib":"^2.3.0","codecov":"^3.1.0","ts-node":"^10.1.0","webpack":"^5.75.0","prettier":"^2.1.2","memory-fs":"^0.4.1","@ava/babel":"^1.0.1","pre-commit":"^1.2.2","typescript":"^4.9.4","@types/node":"^16.4.3","file-loader":"^6.2.0","lint-staged":"11.1.1","style-loader":"^0.23.0","@svgr/webpack":"^5.4.0","webpack-merge":"^5.8.0","@types/webpack":"^5.28.0","@commitlint/cli":"^13.1.0","copy-webpack-plugin":"^6.2.1","@types/webpack-sources":"^2.1.1","prettier-plugin-package":"^1.2.0","eslint-config-shellscape":"^6.0.0","@commitlint/config-conventional":"^13.1.0","@wordpress/dependency-extraction-webpack-plugin":"^3.1.0"},"peerDependencies":{"webpack":"^5.75.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_5.0.1_1741735078344_0.9239700236507926","host":"s3://npm-registry-packages-npm-production"}},"6.0.0":{"name":"webpack-manifest-plugin","version":"6.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@6.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"dist":{"shasum":"14dbe5802a48a23204d2744bc8543a25826907b7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-6.0.0.tgz","fileCount":12,"integrity":"sha512-IxArS8sqyZAWrfkZfB/7yDS7GgeKZsUpC7XHDsh0tVCgO66TWcwZMWGB/61cWro/4EHv8GGzPc0hW5Nn9ZCbjA==","signatures":[{"sig":"MEQCIDJznf1ymlSpeVlAXI2se5Xp3RcG8/yloIO2A0dx68rcAiBlKuwtIWZtGNiQagjRpVit4KbR0S0Dm9swC9dd0Bj5Cw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":35276},"main":"dist/index.js","type":"module","_from":"file:webpack-manifest-plugin-6.0.0.tgz","husky":{"hooks":{"pre-commit":"lint-staged"}},"types":"./dist/index.d.ts","engines":{"node":">=20.19.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","default":"./dist/index.js"}},"scripts":{"lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","test":"vitest run","build":"tsc --project tsconfig.json","ci:lint":"pnpm lint && pnpm security","ci:test":"vitest run","lint:js":"eslint --cache --fix src test","security":"pnpm audit --audit-level=high --prod","lint:docs":"prettier --write README.md","lint:json":"prettier --write package.json","lint-staged":"lint-staged"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/private/var/folders/07/ywbfgwc57_z4yx4m8vzhr8580000gp/T/d7e2a7bf7667a97aa206616104be946e/webpack-manifest-plugin-6.0.0.tgz","_integrity":"sha512-IxArS8sqyZAWrfkZfB/7yDS7GgeKZsUpC7XHDsh0tVCgO66TWcwZMWGB/61cWro/4EHv8GGzPc0hW5Nn9ZCbjA==","pre-commit":"lint-staged","repository":{"url":"git+https://github.com/shellscape/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"10.8.2","description":"A Webpack Plugin for generating Asset Manifests","directories":{},"lint-staged":{"*.{js,ts,tsx,cjs,mjs}":["eslint --fix"]},"_nodeVersion":"20.19.0","dependencies":{"tapable":"^2.0.0","webpack-sources":"^3.3.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"^8.0.1","husky":"9.1.7","react":"^19.2.0","tslib":"^2.3.0","eslint":"^8.57.0","vitest":"^4.0.5","webpack":"^5.75.0","prettier":"^3.6.2","memory-fs":"^0.5.0","pre-commit":"^1.2.2","typescript":"^5.6.3","@types/node":"^24.9.2","file-loader":"^6.2.0","lint-staged":"16.2.6","style-loader":"^4.0.0","@svgr/webpack":"^8.1.0","webpack-merge":"^6.0.1","@types/webpack":"^5.28.0","copy-webpack-plugin":"^13.0.1","@types/webpack-sources":"^3.2.3","prettier-plugin-package":"^2.0.0","eslint-config-shellscape":"^6.0.0","eslint-import-resolver-typescript":"^4.4.4","@wordpress/dependency-extraction-webpack-plugin":"^6.34.0"},"peerDependencies":{"webpack":"^5.75.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_6.0.0_1761834353266_0.8738851164908472","host":"s3://npm-registry-packages-npm-production"}},"6.0.1":{"name":"webpack-manifest-plugin","version":"6.0.1","description":"A Webpack Plugin for generating Asset Manifests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/shellscape/webpack-manifest-plugin.git"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"homepage":"https://github.com/shellscape/webpack-manifest-plugin","bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"main":"dist/index.js","type":"module","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","default":"./dist/index.js"}},"engines":{"node":">=20.19.0"},"peerDependencies":{"webpack":"^5.75.0"},"dependencies":{"tapable":"^2.0.0","webpack-sources":"^3.3.3"},"devDependencies":{"@svgr/webpack":"^8.1.0","@types/node":"^24.9.2","@types/webpack":"^5.28.0","@types/webpack-sources":"^3.2.3","@wordpress/dependency-extraction-webpack-plugin":"^6.34.0","copy-webpack-plugin":"^13.0.1","del":"^8.0.1","eslint":"^8.57.0","eslint-config-shellscape":"^6.0.0","eslint-import-resolver-typescript":"^4.4.4","file-loader":"^6.2.0","husky":"9.1.7","lint-staged":"16.2.6","memory-fs":"^0.5.0","pre-commit":"^1.2.2","prettier":"^3.6.2","prettier-plugin-package":"^2.0.0","react":"^19.2.0","style-loader":"^4.0.0","tslib":"^2.3.0","typescript":"^5.6.3","vitest":"^4.0.5","webpack":"^5.75.0","webpack-merge":"^6.0.1"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"lint-staged":{"*.{js,ts,tsx,cjs,mjs}":["eslint --fix"]},"maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"pre-commit":"lint-staged","scripts":{"build":"tsc --project tsconfig.json","ci:lint":"pnpm lint && pnpm security","ci:test":"vitest run","lint":"pnpm lint:docs && pnpm lint:json && pnpm lint:js","lint-staged":"lint-staged","lint:docs":"prettier --write README.md","lint:js":"eslint --cache --fix src test","lint:json":"prettier --write package.json","security":"pnpm audit --audit-level=high --prod","test":"vitest run"},"_id":"webpack-manifest-plugin@6.0.1","types":"./dist/index.d.ts","_integrity":"sha512-R0p/8/IJVY5hIhQtkeWUQugalVpIwojc09eb14zGq+oiZOCmN5paAz2NBJfd+6v9eBbxAS3YMjc2ov8UMlCDLQ==","_resolved":"/private/var/folders/07/ywbfgwc57_z4yx4m8vzhr8580000gp/T/a5a5e0ce7a617c2fc67cbcbe2036a732/webpack-manifest-plugin-6.0.1.tgz","_from":"file:webpack-manifest-plugin-6.0.1.tgz","_nodeVersion":"20.19.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-R0p/8/IJVY5hIhQtkeWUQugalVpIwojc09eb14zGq+oiZOCmN5paAz2NBJfd+6v9eBbxAS3YMjc2ov8UMlCDLQ==","shasum":"8db0b6b75bd8635fcee657f025dff3bc9ba77fb4","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/webpack-manifest-plugin/-/webpack-manifest-plugin-6.0.1.tgz","fileCount":12,"unpackedSize":35521,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIHlUAMro0C9YXoOmGIMIz/3N5l+b0gZ/xIrpMB6yphiDAiAeYmSr+QNr65J9Ic655q5ROkQIkllfMJPEvWSBWmSfCg=="}]},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-manifest-plugin_6.0.1_1762095548532_0.5252754385093561"},"_hasShrinkwrap":false}},"name":"webpack-manifest-plugin","time":{"created":"2015-05-06T13:39:47.537Z","modified":"2020-11-11T14:46:07.385Z","0.0.1":"2015-05-06T13:39:47.537Z","0.0.2":"2015-05-21T21:00:37.797Z","0.2.0":"2015-06-07T23:11:34.573Z","0.3.0":"2015-07-02T14:20:18.411Z","0.4.0":"2015-08-06T21:12:09.881Z","0.5.0":"2015-10-31T14:18:07.275Z","1.0.0":"2016-02-07T16:55:53.554Z","1.0.1":"2016-04-26T02:33:18.022Z","1.1.0-0":"2016-10-19T15:26:15.276Z","1.1.0":"2016-10-19T15:36:52.850Z","1.1.1":"2017-07-06T19:23:17.713Z","1.1.2":"2017-07-07T14:07:06.239Z","1.2.0":"2017-07-20T18:34:20.255Z","1.2.1":"2017-07-20T23:09:14.488Z","1.3.0":"2017-08-09T20:58:36.353Z","1.3.1":"2017-08-14T11:57:58.907Z","1.3.2":"2017-09-14T12:39:52.622Z","2.0.0-rc.1":"2017-09-21T12:00:00.621Z","2.0.0-rc.2":"2018-02-28T23:03:15.733Z","2.0.0":"2018-04-08T16:26:42.147Z","2.0.1":"2018-04-19T12:23:39.215Z","2.0.2":"2018-04-29T20:30:42.320Z","2.0.3":"2018-05-22T18:10:59.518Z","2.0.4":"2018-09-12T09:09:20.827Z","2.1.0":"2019-09-23T16:09:15.238Z","2.1.1":"2019-09-24T13:54:20.681Z","2.1.2":"2019-09-25T23:08:36.661Z","2.2.0":"2019-10-02T16:57:56.368Z","3.0.0-rc.0":"2019-10-24T13:43:46.036Z","3.0.0":"2020-12-02T16:06:25.754Z","3.1.0":"2021-03-10T15:46:39.296Z","3.1.1":"2021-04-01T13:59:48.508Z","3.2.0":"2021-07-27T00:35:09.997Z","4.0.0":"2021-07-28T19:06:52.159Z","4.0.1":"2021-07-28T21:36:36.166Z","4.0.2":"2021-07-29T11:44:08.619Z","4.1.0":"2022-01-11T15:20:13.044Z","4.1.1":"2022-01-11T15:41:16.709Z","5.0.0":"2022-03-08T15:41:17.511Z","5.0.1":"2025-03-11T23:17:58.492Z","6.0.0":"2025-10-30T14:25:53.445Z","6.0.1":"2025-11-02T14:59:08.722Z"},"readmeFilename":"README.md","homepage":"https://github.com/danethurber/webpack-manifest-plugin"}