{"_id":"webpack-manifest-plugin","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"dist-tags":{"next":"3.0.0-rc.0","beta":"1.1.0-0","latest":"6.0.1"},"author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"description":"A Webpack Plugin for generating Asset Manifests","readme":"[size]: https://packagephobia.now.sh/badge?p=webpack-manifest-plugin\n[size-url]: https://packagephobia.now.sh/result?p=webpack-manifest-plugin\n\n<div align=\"center\">\n\t<img width=\"256\" src=\"https://raw.githubusercontent.com/shellscape/webpack-manifest-plugin/master/assets/manifest.svg?sanitize=true\" alt=\"webpack-manfiest-plugin\"><br/><br/>\n</div>\n\n[![size][size]][size-url]\n[![libera manifesto](https://img.shields.io/badge/libera-manifesto-lightgrey.svg)](https://liberamanifesto.com)\n\n# webpack-manifest-plugin\n\nA Webpack plugin for generating an asset manifest.\n\n:heart: Please consider [Sponsoring my work](https://github.com/sponsors/shellscape)\n\n## Requirements\n\n`webpack-manifest-plugin` is an [evergreen \uD83C\uDF32](./.github/FAQ.md#what-does-evergreen-mean) module.\n\nThis module now requires Node.js v20.19.0 or newer and Webpack v5.0.0.\n\n## Contributing\n\nThis repository leverages [pnpm](https://pnpm.js.org/) for dependency management.\n\nTo begin, please install `pnpm`:\n\n```console\n$ npm install pnpm -g\n```\n\n## Install\n\nUsing npm:\n\n```console\nnpm install webpack-nano webpack-manifest-plugin --save-dev\n```\n\n_Note: We recommend using [webpack-nano](https://github.com/shellscape/webpack-nano), a very tiny, very clean webpack CLI._\n\n## Usage\n\nCreate a `webpack.config.js` or `webpack.config.mjs` file (ESM):\n\n```js\nimport { WebpackManifestPlugin } from 'webpack-manifest-plugin';\n\nexport default {\n  // an example entry definition\n  entry: ['app.js'],\n  // ...\n  plugins: [new WebpackManifestPlugin(/* options */)]\n};\n```\n\nAnd run `webpack`:\n\n```console\n$ npx wp\n```\n\nWith the default options, the example above will create a `manifest.json` file in the output directory for the build. The manifest file will contain a map of source filenames to the corresponding build output file. e.g.\n\n```json\n{\n  \"dist/batman.js\": \"dist/batman.1234567890.js\",\n  \"dist/joker.js\": \"dist/joker.0987654321.js\"\n}\n```\n\n### Options\n\n### `assetHookStage`\n\nType: `Number`<br>\nDefault: `Infinity`\n\nIf you need to consume the output of this plugin in another plugin, it can be useful to adjust the stage at which the manifest is generated. Pass a new stage to `assetHookStage` to change when the manifest is generated. See the [docs on `processAssets`](https://webpack.js.org/api/compilation-hooks/#list-of-asset-processing-stages) for more detail.\n\nNote: any files added to the compilation after the stage specified will not be included in the manifest.\n\n### `basePath`\n\nType: `String`<br>\nDefault: `''`\n\nSpecifies a path prefix for all keys in the manifest. Useful for including your output path in the manifest.\n\n### `fileName`\n\nType: `String`<br>\nDefault: `manifest.json`\n\nSpecifies the file name to use for the resulting manifest. By default the plugin will emit `manifest.json` to your output directory. Passing an absolute path to the `fileName` option will override both the file name and path.\n\n### `filter`\n\nType: `Function`<br>\nDefault: `undefined`\n\nAllows filtering the files which make up the manifest. The passed function should match the signature of `(file: FileDescriptor) => Boolean`. Return `true` to keep the file, `false` to remove the file.\n\n### `generate`\n\nType: `Function`<br>\nDefault: `undefined`\n\nA custom `Function` to create the manifest. The passed function should match the signature of `(seed: Object, files: FileDescriptor[], entries: string[]) => Object` and can return anything as long as it's serialisable by `JSON.stringify`.\n\n### `map`\n\nType: `Function`<br>\nDefault: `undefined`\n\nAllows modifying the files which make up the manifest. The passed function should match the signature of `(file: FileDescriptor) => FileDescriptor` where an object matching `FileDescriptor` is returned.\n\n### `publicPath`\n\nType: `String`<br>\nDefault: `<webpack-config>.output.publicPath`\n\nA path prefix that will be added to values of the manifest.\n\n### `removeKeyHash`\n\nType: `RegExp | false`<br>\nDefault: `/([a-f0-9]{32}\\.?)/gi`\n\nIf set to a valid `RegExp`, removes hashes from manifest keys. e.g.\n\n```json\n{\n  \"index.c5a9bff71fdfed9b6046.html\": \"index.c5a9bff71fdfed9b6046.html\"\n}\n```\n\n```json\n{\n  \"index.html\": \"index.c5a9bff71fdfed9b6046.html\"\n}\n```\n\nThe default value for this option is a regular expression targeting Webpack's [default md5 hash](https://webpack.js.org/configuration/output/#outputhashfunction). To target other hashing functions / algorithms, set this option to an appropriate `RegExp`. To disable replacing the hashes in key names, set this option to `false`.\n\n### `seed`\n\nType: `Object`<br>\nDefault: `{}`\n\nA cache of key/value pairs 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 `WebpackManifestPlugin` instance.\n\n### `serialize`\n\nType: `Function(Object) => string`<br>\nDefault: `undefined`\n\nA `Function` which can be leveraged to serialize the manifest in a different format than json. e.g. `yaml`.\n\n### `sort`\n\nType: `Function`<br>\nDefault: `undefined`\n\nAllows sorting the files which make up the manifest. The passed function should match the signature of `(fileA: FileDescriptor, fileB: FileDescriptor) => Number`. Return `0` to indicate no change, `-1` to indicate the file should be moved to a lower index, and `1` to indicate the file shoud be moved to a higher index.\n\n### `useEntryKeys`\n\nType: `Boolean`<br>\nDefault: `false`\n\nIf `true`, the keys specified in the `entry` property will be used as keys in the manifest. No file extension will be added (unless specified as part of an `entry` property key).\n\n### `useLegacyEmit`\n\nType: `Boolean`<br>\nDefault: `false`\n\nIf `true`, the manifest will be written on the deprecated webpack `emit` hook to be compatible with not yet updated webpack plugins.\n\nA lot of webpack plugins are not yet updated to match the new webpack 5 API. This is a problem when other plugins use the deprecated `emit` hook. The manifest will be written before these other plugins and thus files are missing on the manifest.\n\n### `writeToFileEmit`\n\nType: `Boolean`<br>\nDefault: `false`\n\nIf `true`, will emit the manifest to the build directory _and_ in memory for compatibility with `webpack-dev-server`.\n\n## Manifest File Descriptor\n\nThis plugin utilizes the following object structure to work with files. Many options for this plugin utilize the structure below.\n\n```ts\n{\n  chunk?: Chunk;\n  isAsset: boolean;\n  isChunk: boolean;\n  isInitial: boolean;\n  isModuleAsset: boolean;\n  name: string | null;\n  path: string;\n}\n```\n\n### `chunk`\n\nType: [`Chunk`](https://github.com/webpack/webpack/blob/master/lib/Chunk.js)\n\nOnly available if `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## Compiler Hooks\n\nThis plugin supports the following hooks via the `getCompilerHooks` export; `afterEmit`, `beforeEmit`. These hooks can be useful, e.g. changing manifest contents before emitting to disk.\n\n### `getCompilerHooks`\n\nReturns: `{ afterEmit: SyncWaterfallHook, beforeEmit: SyncWaterfallHook }`\n\n#### Usage\n\n```js\nconst { getCompilerHooks } = require('webpack-manifest-plugin');\n\nclass BatmanPlugin {\n  apply(compiler) {\n    const { beforeEmit } = getCompilerHooks(compiler);\n\n    beforeEmit.tap('BatmanPlugin', (manifest) => {\n      return { ...manifest, name: 'hello' };\n    });\n  }\n}\n```\n\n## Notes\n\n- If using this plugin with `webpack-clean` and `webpack-dev-server`, please review [this issue](https://github.com/shellscape/webpack-manifest-plugin/issues/267).\n\n## Attiribution\n\nSpecial thanks to [Dane Thurber](https://github.com/danethurber), the original author of this plugin, without whom this plugin would not exist.\n\n## Meta\n\n[CONTRIBUTING](./.github/CONTRIBUTING.md)\n\n[LICENSE (MIT)](./LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/shellscape/webpack-manifest-plugin.git"},"users":{"jcurtis":true,"fengmiaosen":true,"cognivator":true,"xu_q90":true,"martinspinks":true,"ackhub":true,"flayks":true,"arkanciscan":true,"qbylucky":true,"myalin":true,"landy2014":true,"sszhu":true,"bro_strummer":true,"bourne":true,"sqrtthree":true,"luffy84217":true,"zhilidali":true,"budiantoip":true,"gabrielschlomo":true,"detj":true,"isenricho":true,"calin.buzatu":true,"rbultitude":true},"bugs":{"url":"https://github.com/shellscape/webpack-manifest-plugin/issues"},"license":"MIT","versions":{"1.1.0-0":{"name":"webpack-manifest-plugin","version":"1.1.0-0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.1.0-0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"0a5ac53042681a481e838135a8741f3f0fac0636","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.0-0.tgz","integrity":"sha512-oZzZbSYEhJc0/aC7s5WZpVW+ZYnwHv8p10WduMV8lt1MvuWDpAkUhLvDRwJ2dPsWGQ6fO06mKwqYuSthQ+i8xw==","signatures":[{"sig":"MEUCICZ5vNEkF3ONUcWn1RY3D9tHYnVkfS0JxdTiElsUeXvNAiEA6rF0IItODvCSQ9kXscRgDxagZLsxRav0fmAN4uTi2UI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0a5ac53042681a481e838135a8741f3f0fac0636","gitHead":"3a44de52de1d3a5b99dcc828c4df5d1154131e8d","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"3.10.3","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"6.3.1","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.1.0-0.tgz_1476890774622_0.9217108350712806","host":"packages-18-east.internal.npmjs.com"}},"0.4.0":{"name":"webpack-manifest-plugin","version":"0.4.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.4.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"8c26f56f7e37748106f21d3792450fe4d68f0d01","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.4.0.tgz","integrity":"sha512-3pUx/Edr5pwB4rSPmaZiBS3EFtQitTfwXtEJvSDdLCrqZFxL8lMb0RZ0ysjcRhhCBUwDm9UqJLWQAiTEzIlE3A==","signatures":[{"sig":"MEYCIQDuEAxzbf/piq6vyT9giS3lDDSRVCObpZfKyDD8PvWvLgIhAIwh+DGeoVupq9JuBE8JZTEvKtEeBU96cFarGRoiPKrH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8c26f56f7e37748106f21d3792450fe4d68f0d01","gitHead":"fa98cbff666267a77a06715957ebc9e3996cd635","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.10.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.4","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"0.5.0":{"name":"webpack-manifest-plugin","version":"0.5.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.5.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"61b55307b6e29642b197c68bc9cee37fca636eb8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.5.0.tgz","integrity":"sha512-174B+Lc0VJeBtF+Olipakb1RmA+gWf6Us1BDFtQiZVbnDFpBxTldhyX/Vd6NLm5r3hIYIzHQB+1YtnYYH+6zkA==","signatures":[{"sig":"MEQCIFbdnoIDagMmL8qCxR65onqzk6bME5Sojir/xmIQpFfCAiBHCkC4ZEXjJfWroqtshcveqVqa2M2jNx2jIdzouBHU+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"61b55307b6e29642b197c68bc9cee37fca636eb8","gitHead":"25e22f8de0f9842c7cb596ee76e58cfdff1f62ca","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.5.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.0","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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.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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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"}},"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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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.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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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"}},"0.0.2":{"name":"webpack-manifest-plugin","version":"0.0.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.0.2","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"7faf2b2d213e237aa4bf4d602f15e29a52e2190e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.0.2.tgz","integrity":"sha512-KiOzeoNPIiZPqE3Wq6OZhLIFjeUOAjO6iRAy+GEF12CKZKovjjG6+qvV7uQ8UAxXBzPAmgCzSJXWkej+E4crUQ==","signatures":[{"sig":"MEQCICw69vvIg+YMKaGA/7WaYns8Iz7Nh5/r7R5dFXL+1O4AAiBJUMPVL1Dxv4umLlLGYwa8pVePM0gwFdQUkJ80GQCnwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7faf2b2d213e237aa4bf4d602f15e29a52e2190e","gitHead":"d279131bb3468f6d86652396662ee52f15677e52","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.7.5","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.2","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"rimraf":"^2.3.2","jasmine":"^2.2.1","webpack":"^1.7.3","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"0.2.0":{"name":"webpack-manifest-plugin","version":"0.2.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.2.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"01e4474c0d0e683315808d789a7e2abaa47959bf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.2.0.tgz","integrity":"sha512-IIUOSxQ87KfOX/R8vD2gVLRYzKdF1ctBmEvQ22nK9VhBqD+0kh1uq9DlzjTNEOyGGYPx4gh82TlqFn+XQMZkvQ==","signatures":[{"sig":"MEUCIQDLozth+SC90KehD7+pfZSRK84i9Y/mDe+sRFGvCPPv2wIgc47Of87dRAihLVmGQ/kuq9SupUxJe4Zia64zJTe4PaI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"01e4474c0d0e683315808d789a7e2abaa47959bf","gitHead":"d28b7b3047e8429bc078d32cf06995e5fb50e4d3","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.5.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.0","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"rimraf":"^2.3.2","jasmine":"^2.2.1","webpack":"^1.7.3","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"0.3.0":{"name":"webpack-manifest-plugin","version":"0.3.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.3.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"d615fdc7470e2632a53338afa49f060b8423fc25","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.3.0.tgz","integrity":"sha512-bXk0MjNApXp8j+SCTqs5HdFeyV2N/zi/NXg97fwD0SteneWc/AGn5m+dW0iHNYHMPjZCi0KGBft4fEUPlqU5mA==","signatures":[{"sig":"MEYCIQC0M33/sq1Z4T5POA4KSsOTfYqB3IFVYg5P9GRH6NmTHwIhAMrKEb5Fg8k84tEzT9bnaGrG7kxa9NC3QOMIH1xlCXvE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d615fdc7470e2632a53338afa49f060b8423fc25","gitHead":"4d9a9ea97494709299912f572f53b7b3f1dd9a5b","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.10.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.4","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"rimraf":"^2.3.2","jasmine":"^2.2.1","webpack":"^1.7.3","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"0.0.1":{"name":"webpack-manifest-plugin","version":"0.0.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@0.0.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"8701ee63e13c0e691eeb9a97742eb49d4cad6401","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-0.0.1.tgz","integrity":"sha512-5bgeHXfQi4gZWRamP0+efVCZf9XrEUCwTaSGXdf9tRroQy+a34fyQAuh5uhQy+1/fTA9JPY5z3pWz5XKyc9G0w==","signatures":[{"sig":"MEUCIDgVoe1xkhHxSnRKRT89Gvweyr3Ue0U8T8Gc3gdubBeaAiEAuSXzaydswolW8acMX8UJoZcNdHJhQ9C/45TT3QvU+6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8701ee63e13c0e691eeb9a97742eb49d4cad6401","gitHead":"db1eab268b70eb4f9dc2ff5fa7866143fc9e3b8b","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"2.5.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"0.12.0","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"rimraf":"^2.3.2","jasmine":"^2.2.1","webpack":"^1.7.3","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"}},"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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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.0.0-rc.0":{"name":"webpack-manifest-plugin","version":"3.0.0-rc.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@3.0.0-rc.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"d488cc34d9509aa4ffcf98eee8559d9106195e2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-3.0.0-rc.0.tgz","fileCount":5,"integrity":"sha512-KL4W5wh/ZnYF1pIzK/beFSgPPINbqD/oQeVS/5YwiZX486wcyZ+ZfeQZ1/8LfxHFG/s27G2hGcwkQ/H/amQCfQ==","signatures":[{"sig":"MEUCIFK6/UAXtMHpZuJoZLQoGLjQ+p3o8A0/peN2EN2OIHidAiEAi+AceUfHdXlVxorQA0phbuYIp6avQOSAFuLLLs+kGsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsaqSCRA9TVsSAnZWagAA7EEP/1cIQdmGj2xQ7vYFiPh0\nx+HP5meF7BxTE5jd7yMg5+x4cwrCTDWXsvx1BsPRHH0dWNP+101aVGCHaDvs\nNek0PMU2jUgb3jPlayBOqnfLDVxXvordPNpL+RdPpgyFQ7QW+G4PCo0vCuf0\nt70TanPhYC/dU99wRTGv79qXqmRJ0dae/VcwLxU6lena5eZYGy1jREkbn2/i\nxCgGNokZ6TxYKkUCNByfr7F8XVnHPCOjmoXgcn/plhR3mnWajYDSGlwCiJIE\naxMHidqGO/OG+cnSGg5sS74tK1unhDDTZ/UFJm/2gagtUNr5xMWTsqz8SkZy\n3iw2ZybbZHUwFKyC7gH2gs1hXiuKXEDUSFaFTDmO4FDmychDmdKGsxSaCU0R\nkbgLqlkOQH34T9opXC7fnTzF6iDMbZ6jOR4nROWagalp2Vp7boIDuQjZqjzC\nrB39NPHfpdFaZ9RqyAjRZS5kig+opORiPpYps14j2PQZMK3BgTewY0ukCU4C\nMY/kbkVe1lnhWlxgdpz2lKwhhU7UVdU8BQspzeXtf97JZE64/fcyWEwqkcvl\n1uHBcC91s2qrywh1PdApOs7Hf1+Xs1B3OeGG8qsFHh38NlKDSe1GUwKDI7A/\nE81+Biq/Wf067WmfjwbOTAXOgZcMvQ4orb7Zx2CLdWzM5oDW4IR3yRLK6eby\nm/f/\r\n=v7cs\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/","coveragePathIgnorePatterns":["<rootDir>/spec/helpers/"]},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"4e02e21a61f2a7e41d36b0564d45c5f4932b0615","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.9.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"10.16.3","dependencies":{"lodash":"^4","tapable":"^1.1.3","fs-extra":"^8.1.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^24.9.0","react":"^16.9.0","rimraf":"^3.0.0","codecov":"^3.6.1","webpack":"^4.41.0","memory-fs":"^0.4.1","css-loader":"^3.2.0","file-loader":"^4.2.0","style-loader":"^1.0.0","@svgr/webpack":"^4.3.3","mini-css-extract-plugin":"^0.8.0"},"peerDependencies":{"webpack":"4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_3.0.0-rc.0_1571924625933_0.783278159185876","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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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"}},"2.0.0":{"name":"webpack-manifest-plugin","version":"2.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"691a0209e12083c375f6f22732ebc0e660437529","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0.tgz","fileCount":5,"integrity":"sha512-wr6rE6iVgevIO2NgKa021hJpO2xWCF5/TUK4i8u9pyVp6QVewG+qGT+kFSX4cMmhcVWTmTgryED2Wx+F384Aow==","signatures":[{"sig":"MEYCIQCmP5+P6U2rncI6v3a1REzWdQVZxTMg66N7ShMmb2IMoAIhANB7ufCMnspXTRvf5756rvzf0gzgHa12UirdCLFzPoRr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12698},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=6.11.5"},"gitHead":"24acf95aaaaa4a2050e5f62340b66b2d0f6932aa","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.7.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.7.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^0.30.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","rimraf":"^2.6.1","codecov":"^2.3.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^1.1.11","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.0_1523204802103_0.9551429509855953","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"webpack-manifest-plugin","version":"2.0.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"9ef26040eb2980bfcdd74a3ef88b6562c559469f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.1.tgz","fileCount":5,"integrity":"sha512-ST+PNNHxGaCOedV68Bo3nCTJ0xD6+l84N3RLBbWQ23BHeQF6jK/h3IAFlvdK8GH9ALSiQFqxLGuuUMOLy5sfPA==","signatures":[{"sig":"MEQCIFVciCn4QGe7IA8+KSzo9Gkf7/Suju+tHpfVjL+qH/JfAiBfEFtOtx6fN7dMgtw/xm/OWXjcDtyZ6aELga2FIpflSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2IpLCRA9TVsSAnZWagAA5K8P/AoahrXHm5rQQBwibilV\nB9/foW5pT7e/aV4b/8C2Ta+GfG86yQK8RCs4U6zNGqFwTUDw48jxv2T3ktcF\nhFcjqmaeBgHBjVgsGHeFW+At1M7jl5q7fBdQ41nD6Dcfu1CqVoW68+71NyWd\nkQc6A9dvR7gZOaYYr0LDqvmekLDWOb5f3IBjLRfUtrUR/XfX/zilYSDt3R5E\nhcf6tze1O0PU/V1tLQ6qimATeZf4JYI0eqIbuCYTVGF4WhkN2WNcY09qkcxp\nqt+SOQMhSkxDDSS/WI7kpGn/BJMk36wFTQdKdfiv59oO3Ef0huUp+6IbWi8v\n8Dbyte6hYZri1xhNwJ9TGXL4anL8/UKVvTwzgJZPeVdyRhXworz6yzfIh+Nv\nae6FJRoT0b+oyYxiSTOvcFQcWJ1jhvJj1TXTIcNEWwGHIFrULqNMTvds28MJ\neuRKmqylqsrnPHU26DyeGEmCwENDsmsPgEiqoVUUZqLAcB1bCGWc8vJqCefR\nZ4q/JknzLR9J/PePtcfs07OjYN0HZfynZTGktxfuXK74ZbZPplLYo0tl6Cza\n8OGCq9pkZyiyK6fj7RqvxEXPcZTpKj1QmEsKFHAjd2mCtMuZqcXUTaqOUUe4\njkifhl5ZK8PhIF/juXH8GPL7bKTB0XaGP66uuXKCCQm+DBvsXm96oX5b9OEq\nyyEL\r\n=1yGx\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=6.11.5"},"gitHead":"cbab79e9088f55911d919d61d223ce58e3b00c36","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.6.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.3.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^0.30.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","rimraf":"^2.6.1","codecov":"^2.3.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^1.1.11","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.1_1524140619070_0.4646410153166771","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"webpack-manifest-plugin","version":"2.1.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.1.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"5c7c6b3bcfc28fa4a32bcd63c739a83a04eb41bf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.0.tgz","fileCount":5,"integrity":"sha512-vQn/mY9okBQUim6fQo+8lYzn/MWcSMGbGpQyKIR6c6NF++lVxfzdlZBL0FGVQsb1RFL/rPdKwu6hkbtWv6CEYg==","signatures":[{"sig":"MEQCIH+tCFtziifE32LDoOrPj4ijhHBSNWYIgrofRGAdatqWAiBikqLeLo1nZnXjaMEJv4XBhWdSsYE8qZXKv8PkyGLP3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiO4rCRA9TVsSAnZWagAAMlwP/REOczx2IC9k3pAPPiHY\n8UjBbJi6Gz2sekYLd/o+7b3TDHUpZvvYe8QjX4OQD6YmIDnJhfiPwNBm9k8y\nBCRuwNkN+CJJTlyvadui2vNXnukwtfKkpzyjVnIc9/wVoQh/Rjkqva4Es6pw\nLKQS+DNikX72PzYjSvKfwofAX3BlvXpQUzZE/Cl7lAIImDWc+Xyd/T/lPePC\nEkr9oNfHYfyRkMNOt4B1okMXXp1i5HGD3zeVxLE+Otv/Vr7uphwJkI5fc/zt\nSKY02QmAvPfpm5K+5IBqRVIwzGFG2/+I1XA8fDefd1uPq6z5TkISwITX0wnb\nOFgjOjEHS6OKEZ4L74dW2VUymfX8MZB1v5TGv3zM/XDF8UihIE/czRqRp11K\nkQ3WqEnJ27hFD+VVO7ejyhqW5CaUUGXyrAC84FQhp7+HvY2YPoHoPk/hW4NE\njsCud2lJTTzvS9adL2FTLOfh4wEGe+diyjt2My+rEFVafvrTw6WkQhrUH0ZU\nJHIBfLYvZKhG6da5t+SCTiJrS1ob7QfPnCSfEE+nGbctrz+pnWeQN+Z2IKyd\niYcsnh51FtzAiFimwVXtvnFdWZyKbU1sAKUVij8n6houfWKu8+4XAeXocxCw\n4QfmTnP4CMTSuZsGFIaXg/Jm/OAz6qlDb8Rz5VauBzP6/FvKIfd4jYMFeEAZ\nQzz+\r\n=3MS3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"687e2608b6c48d9ce6f26ce03df02de8db7c5f9b","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.10.3","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"12.10.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.5.0","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^3.1.0","webpack":"^3.12.0","memory-fs":"^0.4.1","css-loader":"^1.0.0","file-loader":"^2.0.0","style-loader":"^0.23.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.1.0_1569254954976_0.398654001151896","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"webpack-manifest-plugin","version":"2.0.4","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.4","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"e4ca2999b09557716b8ba4475fb79fab5986f0cd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.4.tgz","fileCount":5,"integrity":"sha512-nejhOHexXDBKQOj/5v5IZSfCeTO3x1Dt1RZEcGfBSul891X/eLIcIVH31gwxPDdsi2Z8LKKFGpM4w9+oTBOSCg==","signatures":[{"sig":"MEUCIQCq9wcNXRTSOLtCoKlswE8EoANlZEDH+jBgh73JovJ9GAIgfIliwtLa7BJ3VkmdeTstbi4J5AUvyK3YgHSfpfrqokw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmNfBCRA9TVsSAnZWagAAthgP/38tEgzkELjNCdBnmK+E\nHyVkS97aKsE9bJ3rlm6e2718cEH1SOwfBz2OhiW09dGLEqKrEI0n7dJ8P9k7\ntGHmPqNrn3FoR1avlUWFRuWiGxmZnRIQjjnvfNSzRTOnAKrQVBBpGCtgBVaG\nBSbqjqRJ2xBj1Lp/eEbG5FplgYLw58TicIkzqgEDat4v4Ko7XBxLnjE0TZ35\nwn7roSUC6EhUH5mAVAXBw5Wb7pwckVv2HSeuD3DaD2gZZKEo/63r5LN1fUu0\neCkSo6ElLSisw+lyBbsVhaxzghzSx0iD6IcPyQrkgOKXAAm27Pa+Ieu/mvQB\nc9FH5XARj6tnyNGsEVnhxA2AnjIoxhBeQRJuCwbqvIgpAnu7Cc77jTIKQDXB\njFhVBYnrvPIZOlz+RzHZ2K3MgEila5AKdZO+nYf890S3tfScV3rFQf4uajzy\nKrzwH0UJ42FNmNjMygol/NM4DuDB6IDs2nfhJyJJwF1po/rwwAv3UjAL3nTO\nalcAogd5BXvFh3RXCH6Oq8Q+j6n6/r2vEkvSWoZLo0u5JDdVuAqWo+f0/N77\nj3IsSAabwiAeMo90v4mVMSIXd0qKh2Pih2KVOa4X2v7jDTu86l6naAGpu0ls\nfhbd5Jx4TcwwKXQOLUgIoUVn6zebGu2dwXbuZOdpT879zHXgA9dlV4L3kf7o\nM6tT\r\n=XFZV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"bcca8907df46ad6b57199d34d7be876f95170a52","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.1.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"10.7.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.5.0","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^3.1.0","webpack":"^3.12.0","memory-fs":"^0.4.1","css-loader":"^1.0.0","file-loader":"^2.0.0","style-loader":"^0.23.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.4_1536743360647_0.5146138978290937","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"webpack-manifest-plugin","version":"2.0.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.2","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"e46747a3c1dbf2e24298ca0f2a91764f51f5af60","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.2.tgz","fileCount":5,"integrity":"sha512-yg87MFSPKrc/02BbxI1oaQUOMV4ElhWQRU4X+XgmbVbBlw+/Pe/q6j1e9sk7HJCm1wh/Iz2Lggkr0VhW3Ogifg==","signatures":[{"sig":"MEUCIDOaO1X1hFtx/QXtksPSCghvBH3TVg10YZeAVnMufUAVAiEAxmzmCF+VAha5Vt1FmyZHSlGYwG16ODV+xNCtJLnw8A8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5itzCRA9TVsSAnZWagAAy5cP/0N39pXx5MZt1V2bbBM+\npuw16D+b9NwZz18QgXt7M5/gQgl+zLXoGOfOAuTFY0EdL+Upku5rFnVlgfLm\n7uu/+16OAgRAqM8PAsENEubew0KR8MDe50id7wnn5MTLwMogy0Xo0aQBOfUu\nZvQTCf74cxzGndnr5fPPGgJJW+eJqeoP2wDMas1zvP42YOaggYerqw5Layol\nqcbIdSzBDNFOXPAKQAk+6l7OJZeHU7e3YOkSP4Qye/k99pZXjAcUQbxHkzGO\ngfMl5nDLwAdTad26lF6zGtHGIJJSYoxiraD4hu+X58JOzOFVQ7VB0ncWYaZe\n40ulZiT3m97HuEh5ndAkbyb6mAyTYq2KqAtm7Av0ARBoAuZU69SJC55Alp40\nQbfbwF3FKhiV7uxQ6vTiamB4M8bO/Y+gq1wLjqaOiEUVdxMouJ0D9Nq0L4nl\nIVVdz/K5a4KXJCySDoQN5+SJnrRi3Kw6AbAVO+xNFzlOWrMccmBbQL4VeVKo\nbRgot2u2KOhuDeH2VdTwUF7oFi1d5I9aA1PFKaWMd9PFgUYhOzWifd7dAzlI\n+CTgx9DAMA605ClPrsbRKqtvMRFqqbetvZ8JPAK/ZCxJnwPRWLfHYg5yvlnE\nNh0lFhu3xVwV0kaWzkCzu7uSDwMQAjHq1aoWNBnU2ZI1uulkHXu6zSNnPpj8\nsxr4\r\n=AzDA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=6.11.5"},"gitHead":"95d94efbaa0ddde1abb68ec93764c9f63c130db0","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.8.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.7.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^0.30.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","rimraf":"^2.6.1","codecov":"^2.3.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^1.1.11","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.2_1525033842047_0.9584608549454403","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"webpack-manifest-plugin","version":"2.1.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.1.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"6b3e280327815b83152c79f42d0ca13b665773c4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.1.tgz","fileCount":5,"integrity":"sha512-2zqJ6mvc3yoiqfDjghAIpljhLSDh/G7vqGrzYcYqqRCd/ZZZCAuc/YPE5xG0LGpLgDJRhUNV1H+znyyhIxahzA==","signatures":[{"sig":"MEUCIQCTB/X6wooUxFMvlBJZNIll0ignmotWkNukUu8BwwH2nQIgBn9xGYpRNDpYedy1KDV8XKm4kYbqXHic2TsjCtuFf84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiiANCRA9TVsSAnZWagAAlsAP/igVB1igAxF8Y3hpqBF9\nxf3B9SBjBDihq4f6AaWRsPuyJh/xnClA+KyCHDX2vwT0tHAjA+tR49AKixn+\nqCALI6cHm0MSGeQKuA77X081wJjgtTqGBw8M4F3dFA8znwC3WYwFSg3ZnxnD\n9e6QaxjHsgerrLQqlk9ll4/bzbSjYA5nuJVN5NgEqKZim34hjxapL8mIEbs7\nmbVj5O0hRZKVM36RDM0kx/Th/Nq47LtEg3QXwS2auIvB/Q9UVWcQeAPNoirq\nzgNO0wulpWMcWv/mIr0k3KgLNeQxtKDTgHEBWDzkXwUevd7PShL7sNePFXzd\nknhimYSgl2tY5nRzeJ+mnFIQUzJauvWwGl9nDwVSyN/zpUnXJ0Jj4frdArFS\nBXNY/RmyPB0vUho8fdGy93FVGe+tMErZy5xazzp75uq4SlWSM7wDG3Gle0WI\nb8tU0030sQ5eAK9z7NFd8kaMGO/w/ZwtVwOOBaL74efoi/SSrjKh3uY+LP0g\n2TTjDOU8rqdlkMwAyWi763m/IJH3hAbLUPljXDvS+vzHIvmmlK1Togs/qu/+\n/XP83eP1dQ1EsLl5SOgcbhgvudl1cIzXynBuelsPZoFrMMzqsAZb8CHJSRB2\nwbeMW18GheFrhhBhqVWyRML2i2mC8bDeFCy91UgySITrG4y7CkJ2mJ5/Z9NS\nFJWb\r\n=osY2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"6e736d40cdcc4dc9e0098ce6615b23407081b105","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.10.3","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"12.10.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^7.0.0","object.entries":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.5.0","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^3.1.0","webpack":"^3.12.0","memory-fs":"^0.4.1","css-loader":"^1.0.0","file-loader":"^2.0.0","style-loader":"^0.23.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.1.1_1569333260435_0.37654100022555714","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"webpack-manifest-plugin","version":"2.2.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.2.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"19ca69b435b0baec7e29fbe90fb4015de2de4f16","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz","fileCount":5,"integrity":"sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==","signatures":[{"sig":"MEUCIG/w8xumtxgVa7JhvdXiWvK9NJ9XcpMU9QnsqTM+Bt9pAiEAxiL26vfD++y1IMqK9YxnmB0/UJ/ZgTOamXS55DLxuNI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlNcUCRA9TVsSAnZWagAA3rEP/jscOKjxIueTBG16qEhz\nlJ9uOAMDNl1JvCbA5f9ZIu5Ud8ocA32ucVC8nMI5qNnczO9tAe5/0xDRpJN6\nzVzmomv10+js8OVYYhDVM3nE2997qw6H0b9i13GMc9E+1hAwt+06X9H0yKI5\nOESiuBV5dK31aaL7XpZuOgOVWmbDLhmtOsJhMbbvdKmUnJ3entht0+8IvoSu\nPVdx+NKz+2QaYU3Y8F4dS1v7wDnhZtGzLwcE1Q+ShzaTdQ8frq4PX0qaJ9oe\nR6jAezrEflFGpt3WZE9fXgJZvb69xkukP898TmmJXhQl9a+/pRRfwdG68NKo\nN0tdPE2a8aH3wSVNz4kOVdfKMerKWZq0B6SRew1RWJd1VdjfpExJhykmJqbL\nxA/8GmyKq4dvA+74UBqG1HORIa9BuLpk5XUAqoE6TKTNt2/lug+yrkgan/Uz\nnGaROjgx11K7Cp6WHCXH5gu1l374q2Jd4lTcUsEZ42ybgxf/vzMg2SY5ZcX7\nspiaOeuDTCliUAlQdT35MEcEWWLr2Fa5q6DmHoWHxXjXI4lZTEnWJy8d8Olo\nBNY3uBJmwCiHaFWVHBPMwk2ENsrg5VkhIGdxfeZE7w2Vst6AYleBk5WknoyA\n/k3nyHJ+jHvVNhS653EEjdhvBH2kys2JL7i7gy/CljyC9YsQU1IX5IzBI7fU\nPXjn\r\n=0GJ/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"5715c07748a80dae583074304e306534eac1896a","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.9.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"10.16.3","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^7.0.0","object.entries":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.5.0","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^3.1.0","webpack":"^3.12.0","memory-fs":"^0.4.1","css-loader":"^1.0.0","file-loader":"^2.0.0","style-loader":"^0.23.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.2.0_1570035476236_0.7898308017256204","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"webpack-manifest-plugin","version":"2.0.3","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.3","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"b42c5b08a0319cedb3ec45d9375a9ecee0acf5eb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.3.tgz","fileCount":5,"integrity":"sha512-FZcnB3MMQ0CT0aU1+LItwywXWAixLTGUEAtN0fw15dScf2LudQwheLPUCj+QMhDlwZT+9ysfKqUFTcfUGc8bXg==","signatures":[{"sig":"MEUCIB5qL+VOnUjJk6nreAys8QXuyyQWes/bYlCxwpeTO31xAiEAgsETU35UH37ngnbrGPHubn+fVXbX0AKL8BxCTqN/2r0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBF00CRA9TVsSAnZWagAAfiwP/RRFJNoIy7JEZ2ZhbmxG\nvnXCXmbwy7rmJC4W0/do5i9WBEI+WO7ZVXroFQPp8oUUXmoVK1uOw9zJs+Af\nlt1FV28suwGXvSbFzhTpCX47bXTMbOJabBevjsklqwCA1HEHLmgD3vH3wo1l\nbAMi+7sCl7IxtJ3ob6zcQl7wlR4W1tPiVaBRWsDjHkE6a+oRPw5HG06+Sp5r\n/OOfmVs51MFvqKNZBnAReFszPC6h2gfjjuUC/5HUN9yTo7AQT/+npA15RvLU\nH2Z7lOv8bDfNIAiILnsvNOxWF6fbpjHgXYZhZBPLWtUqvYfSHWbUPdSsCU81\n9ckhOWXwwz/S3czqGL5CZumkI8He2Odtio+tIwStweqS3iVoW3m4EpZnklTm\n5Oq6zMW8ljoZnTHp9xigQ9T4CtcafDZlPT1SNmIxzGHTfl/CXi/Ft6zWO6pI\n/9ITzdC5Tzy5S4vChLRYXfHyRu+uWRkEa9FfuNSHQgDscntE+5aT+RjBypvQ\nISRkY3Kqyv1EzPBOeQcapv2cZS70tWFyZkCAIdBpKm/978RrDuQHPR6L8H/B\n7wMACPPXi4svdpJcBcStP8wxUpobUlWx6wHUB67y1x9d4DvBTF7Payjq7h8A\nihqdjLL2DIrV94G7wWWK0rnyEi51f/5xuABtw0a1xqd6VwUPGoj5hr2xoekM\nSprQ\r\n=jwd9\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=6.11.5"},"gitHead":"cad06c8476f83f33e0f9540886db177d7cf7b87a","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.6.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.3.0","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^0.30.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^2.3.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^1.1.11","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.3_1527012659466_0.6852635663982392","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"webpack-manifest-plugin","version":"2.1.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.1.2","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"990c448b4cfe1cf0b2dfad4a422264aabc4c98eb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.2.tgz","fileCount":5,"integrity":"sha512-XWjPY0NXXJ1tGQZgtOMZtEsm8mST23nvO7q5e5H26NH4pv7wfYbHaX9Uwogve+IF6Ilv4j1e3hPr9N3JGZdilA==","signatures":[{"sig":"MEUCIDVN3auFuKLds53uAasajzEGlTtVMsgIbOxtVXjHFAtkAiEAvScL45W82xQtljqdhHWxFzRIShIrJaLTWjm0CHhBHAw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdi/N1CRA9TVsSAnZWagAABPIP/30JTEqIkj99F4ZNypR3\n4mQp0mgW1L4IYyWWjshpTKgBD4a+1n/QL0pwfvZJA0iR5nMUGlP/R61q/rIJ\nI8AnJjqPJbx51l6/BrcyvCETQb59FzmESnkhPzFr7Zf9Z0X2jPIBNzSHfcay\nlHktRI7d+CoC1W1qREINHeNDtQRhkVDukIUWU4HM5SsoVo4qDG1SoBJKeI2b\nvu6Lj6utMazYDtK24JaXanueN5YGJcLTJw3JHDCCA2kf5XaXmmbQh+6sY6pY\nYoOBKm4QUdJBnGF654dcE2HVbn5Fkfd3oa6D1Qqe5t+eDMxmx3MRge+aPpta\nCFT9JGNW683Ov5sA4HissmgXswnv0ZPtOoZcvzoxI3Ije8fc9gkI8X/ca0gS\nDq7Ff+VFtAXsbJp5InL+dcuIUftnaVpsZWVxPVuRyoqa52tY2OfKvzElLYUp\nyvs3mS3DWCtpO0WxIQIHxKX0xW4y8E7ETn1hoYjnnJVsPPQbpWPygzMOM2HO\nnAHiTmw/vt5MuEA0Fl3hf8zMimCc1d++AAUqi89u/LReKtkKCjf+52ev0Aax\nLj9w5GLnORvUkTSoir2jQ9IkinIvBmMNj/AL4WZMZ1fLsRCKKqXCp7PSqKCs\nV5Mh2SwLPASCZ+98RpoSXMSOjp6H34uNTVER2VnoPyI0WVffw0Z83QdM42Zj\n9aaM\r\n=Smfk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"./coverage/"},"main":"index.js","engines":{"node":">=6.11.5"},"gitHead":"0ae710575e29726d1606c5c48bae888438a1bac0","scripts":{"test":"jest","codecov":"codecov"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"6.4.1","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.16.1","dependencies":{"lodash":">=3.5 <5","tapable":"^1.0.0","fs-extra":"^7.0.0","object.entries":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.5.0","svgr":"^1.9.2","react":"^16.3.2","rimraf":"^2.6.1","codecov":"^3.1.0","webpack":"^3.12.0","memory-fs":"^0.4.1","css-loader":"^1.0.0","file-loader":"^2.0.0","style-loader":"^0.23.0","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.1.2_1569452916489_0.8262922014845031","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"webpack-manifest-plugin","version":"1.1.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.1.2","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"e9d9967f4f739ee25380ca57de7f9417c5bea029","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.2.tgz","integrity":"sha512-IdeSoftCEzeVrkTy4XFsYBLQk7fWiKPUKUvSdb68/alpoKHP9X9MhMcYdkCIdAXclUhBIcyL03wFLr76wZG45A==","signatures":[{"sig":"MEQCIDP85krK8ouDB0BfRIBd7bUy/X6d/UUvOprZR4mdpllkAiAqelN2Qmm7Rnakg1jwwH8ZztwqZ+vV8uYxZghZqYUhTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=4"},"gitHead":"ca27c2d835645de78155fc49abb16d15d1c90509","scripts":{"test":"jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.0.3","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.3","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.1.2.tgz_1499436425229_0.1633587647229433","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"webpack-manifest-plugin","version":"1.2.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.2.1","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"e02f0846834ce98dca516946ee3ee679745e7db1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz","integrity":"sha512-9oLMhGlez5JSRv0dWCoxGHHdrYWrDJa8gIHeMFVuY8Fp4noQebXyFlE3fFE/BCYC4C1rG3RyEBPz0aWq1dtYDw==","signatures":[{"sig":"MEYCIQCs2nD3aG+1YGwi+DbvMsetU6pJBQnRquZht/ngNVpLSAIhAPWir/Clf4Jrvw3VH79STNP7r5mqj73m/AWb4ChS0/Cz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=0.10"},"gitHead":"d7792d74eee84a4130f87e50a25b5bad0304a7b9","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.3.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.2","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"peerDependencies":{"webpack":"1 || 2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.2.1.tgz_1500592153530_0.4067050442099571","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"webpack-manifest-plugin","version":"1.3.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.3.0","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"08526d5e5b8f3e204c9922dc1af7f3f47d9d5448","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.0.tgz","integrity":"sha512-67K1jHhmQyz7y2hJCbGcJRW5Gt1YWt0Srdfrb7TKWHT7EbpkuDqo4ztPI88moiEYil95zg00+FQtqhNtwS0/qA==","signatures":[{"sig":"MEUCIDg9M7OmlepY56uYu/4UZ37OsJO7JvGhzDtkY3NY9lkbAiEAjMhxaSPxaYkdJkyPSOEkkTr07RanLa5dJeEsFZpIvQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=0.10"},"gitHead":"4c7c1665badcaa0a21ce4004fc6e0b0c09cca1f3","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.3.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.2","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0","mutexify":"^1.1.0"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"peerDependencies":{"webpack":"1 || 2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.3.0.tgz_1502312314882_0.31191951246000826","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"webpack-manifest-plugin","version":"1.3.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.3.1","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"dc071dd00cc602a014f107436f53a189c0e55a2c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.1.tgz","integrity":"sha512-OW7in/4VksQVnQcDJClv7YnOs/ruOqzPriT46z+qe6i1qINfZkmCNoxNG3r5J19VBSmO0KF1vn3Ute0yTKaeHQ==","signatures":[{"sig":"MEUCIBc95C0zuYGdgE9N4D1jVBFsSnpsUszE/ldLj1ilfIPvAiEAhg2JlsDK9L159vKThfn9UaIaTt2HAzHbOUuPOvZbUJw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=0.10"},"gitHead":"1d691af97b955cc8c1c8cd5b684e54a81c7d0a3d","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.3.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.3","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"peerDependencies":{"webpack":"1 || 2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.3.1.tgz_1502711878044_0.25891235563904047","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"webpack-manifest-plugin","version":"1.3.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.3.2","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"5ea8ee5756359ddc1d98814324fe43496349a7d4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz","integrity":"sha512-MX60Bv2G83Zks9pi3oLOmRgnPAnwrlMn+lftMrWBm199VQjk46/xgzBi9lPfpZldw2+EI2S+OevuLIaDuxCWRw==","signatures":[{"sig":"MEUCIAWfn4sh6w5dulMEsBF/1RBNyk76e684PvmfxzhEMXLWAiEAzy91WgZ17uKyQfPb2lN/4WDyJto0D14GwQ+L4SONmbE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=0.10"},"gitHead":"ea193faf3a9e8c13ab96fe48316bdc2d2a4281d3","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.4.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.4.0","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"peerDependencies":{"webpack":"1 || 2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.3.2.tgz_1505392791648_0.4696916504763067","host":"s3://npm-registry-packages"}},"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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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},"2.0.0-rc.1":{"name":"webpack-manifest-plugin","version":"2.0.0-rc.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.0-rc.1","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"82b03afd05a308a36a6066f1c37ac9ff1c9d5e8a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0-rc.1.tgz","integrity":"sha512-K3Xe2zVhQq8iRryA1q+Wr9ULsb+g6V2SrL0hnJtT9Q8aLKgIjbzqopGYMbIVn8aCd8U2giJ9+I29jz6xDO1FKg==","signatures":[{"sig":"MEUCIAMoJCav9I7OMqvlxJN/AZguRNStJKyZg2g3FIJFNFcTAiEAseOVbUSUZE3GrbRk1azOz1ECheVtDAg8wOiUwjnErLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=4"},"gitHead":"ed72f6897c8e5b43ebd1751ee31aac0bc725ec19","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.4.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.4.0","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0","mutexify":"1.0.1"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.0"},"peerDependencies":{"webpack":"2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-2.0.0-rc.1.tgz_1505995199603_0.17563559766858816","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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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":"https://devel.data-in-motion.biz/nexus/repository/npm-group/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"}},"1.0.0":{"name":"webpack-manifest-plugin","version":"1.0.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.0.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"4e5f9772a61af45924df088f55dc3b216181e430","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.0.0.tgz","integrity":"sha512-IUfVLnXjWHcfvbYDN9o/x/tU7c0xi0kt0WsqZWYtJKt5vluyHjMngi24sQxef0wG1Kl5fhrmTknH2AkU5v7iDg==","signatures":[{"sig":"MEUCIAd3kp0CrcEV7jEYhVdevpgi1TcydDf5u+NqPpw+VmR2AiEA66TL8aJWx8H7U0/WLjEYFurZNZaw+89fEM1mDE1F0js=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4e5f9772a61af45924df088f55dc3b216181e430","gitHead":"d92ff5d56461253d5de29414236eb2b953cd9b27","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"3.3.12","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"5.5.0","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.0.0.tgz_1454864150846_0.4383944752626121","host":"packages-6-west.internal.npmjs.com"}},"1.0.1":{"name":"webpack-manifest-plugin","version":"1.0.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.0.1","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"77947c728686af665c3114608389a0cd65ed6a08","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.0.1.tgz","integrity":"sha512-jfI9HGDewuvhP8dfkXQQEXTyoMDRdaXLcyv+gJn6Z5BLS3AIiM4fO1vVMNvgANsf9C20urglqsfqL1CwiuYlog==","signatures":[{"sig":"MEQCID4Z5msIM0BBbk/3m7bYkZX+0OdKw5nJqA/FJea6v0DmAiAApkt5SKmFZIYDiwiJJpH6zcVZh/ik2yWx0AjJ1xAVHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"77947c728686af665c3114608389a0cd65ed6a08","gitHead":"7fe385ee5942f83755c007232e4322401e11ff97","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"3.6.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"5.6.0","dependencies":{"lodash":"^3.5.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.0.1.tgz_1461637995921_0.5357394826132804","host":"packages-16-east.internal.npmjs.com"}},"1.1.0":{"name":"webpack-manifest-plugin","version":"1.1.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.1.0","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"6b6c718aade8a2537995784b46bd2e9836057caa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.0.tgz","integrity":"sha512-54uDakY6RD97sL3jPhWuBw8VrSujVmvcIcnlY/0EfhRUTWTSH4XCbjMbDvDjKfvvicawtuVunbqZp/ogCvEf9A==","signatures":[{"sig":"MEYCIQCLGCYt9uONx7QER/6Ib7oXwA/Yo2I4H/RnI7TK+96MKgIhAJ8g3eKKndkLS3LvHEkSSn2uG0HMDxzVNByWpNOYvLQp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6b6c718aade8a2537995784b46bd2e9836057caa","gitHead":"f33a0ad48e29b41f545bcdaa03bf6c2a331cd6e0","scripts":{"test":"jasmine"},"_npmUser":{"name":"danethurber","email":"dane.thurber@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"3.10.3","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"6.3.1","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.1.0.tgz_1476891411337_0.4521902452688664","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"webpack-manifest-plugin","version":"1.1.1","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.1.1","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"dist":{"shasum":"fd54135fc1287ca8fef05f5e6a44fe9377559dfb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.1.1.tgz","integrity":"sha512-KU0Cbz7p/V4r56cPIffL+79r0bZYkbtKgz1gPbSRm/fiQnKiCnAHW2a/ZQIjSQTkPtLOPeFRpQ/jmAJ2yg2Bsg==","signatures":[{"sig":"MEUCIQDz3K7+rqOvQWKOs7llQv8ADUNgoQvhfSqjMkcZ09hbAgIgTYQ646eobM+V9MzabcQptS4Ed5FHS9+1mYBHCbjnul4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"gitHead":"b2033d0812bf17d300603a4d6ed3bf23f31697b5","scripts":{"test":"jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.1.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.2","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.1.1.tgz_1499368996631_0.6949390885420144","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"webpack-manifest-plugin","version":"1.2.0","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@1.2.0","maintainers":[{"name":"mastilver","email":"th.sileghem@gmail.com"},{"name":"danethurber","email":"dane.thurber@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"2a078481e6fb0e811f13e1c018c44a2d62798085","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.0.tgz","integrity":"sha512-Mzw1IvgDEOCNoW8EAn9Q1pgQV8vi+k4axnPPcN7s4fI8G+ADXp4Kl95oMC21uBfPblNL/v+pWzsINW4PKnmeSQ==","signatures":[{"sig":"MEUCIQCy7+EQpgWk8hB2I7xRYq7NE5Q8uJlSENJdKyW6STMbpwIgc039Py1xULqRsLPwupYteZsoJ1s5hlKXUc8HwzQK6qQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=0.10"},"gitHead":"458fb42a7895f434b901e644a2bf9f9de3595d56","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.3.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.1.3","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^1.7.3","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^0.5.0"},"peerDependencies":{"webpack":"1 || 2 || 3"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin-1.2.0.tgz_1500575659297_0.4506592967081815","host":"s3://npm-registry-packages"}},"2.0.0-rc.2":{"name":"webpack-manifest-plugin","version":"2.0.0-rc.2","author":{"name":"Dane Thurber","email":"dane.thurber@gmail.com"},"license":"MIT","_id":"webpack-manifest-plugin@2.0.0-rc.2","maintainers":[{"name":"danethurber","email":"dane.thurber@gmail.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"homepage":"https://github.com/danethurber/webpack-manifest-plugin","bugs":{"url":"https://github.com/danethurber/webpack-manifest-plugin/issues"},"nyc":{"exclude":["spec"],"reporter":["lcov","text"]},"dist":{"shasum":"7e12abb805795fe256b085a214a15d9568f0e692","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/webpack-manifest-plugin/-/webpack-manifest-plugin-2.0.0-rc.2.tgz","fileCount":5,"integrity":"sha512-Qeq1YE+3ibb+sQbHyWnlxCtO1s3AsUtaPe2Gd4lJfVgWbgw9IwxUx6WvPPCzp7iWZed8bclPYrC7aS9VOzPAxw==","signatures":[{"sig":"MEUCIFK4xGj8oNa65HPYHe70N6LJU/hoxFjMTp/Ufgan92eRAiEA9c/kqk2BYyzEV1GEPdkiCKm/N9sT0YteONS/aRsZRyE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12619},"main":"index.js","files":["index.js","lib"],"engines":{"node":">=4"},"gitHead":"052970ef91b9b319e0ba06772f2debf998e5a241","scripts":{"test":"nyc jasmine"},"_npmUser":{"name":"mastilver","email":"th.sileghem@gmail.com"},"repository":{"url":"git+https://github.com/danethurber/webpack-manifest-plugin.git","type":"git"},"_npmVersion":"5.6.0","description":"webpack plugin for generating asset manifests","directories":{},"_nodeVersion":"8.7.0","dependencies":{"lodash":">=3.5 <5","fs-extra":"^0.30.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^10.3.2","rimraf":"^2.6.1","codecov":"^2.2.0","jasmine":"^2.2.1","webpack":"^3.5.2","memory-fs":"^0.2.0","css-loader":"^0.9.1","file-loader":"^0.9.0","style-loader":"^0.8.3","extract-text-webpack-plugin":"^3.0.2"},"peerDependencies":{"webpack":"2 || 3 || 4"},"_npmOperationalInternal":{"tmp":"tmp/webpack-manifest-plugin_2.0.0-rc.2_1519858994295_0.916625826517252","host":"s3://npm-registry-packages"}}},"name":"webpack-manifest-plugin","time":{"1.1.0-0":"2016-10-19T15:26:15.276Z","0.4.0":"2015-08-06T21:12:09.881Z","0.5.0":"2015-10-31T14:18:07.275Z","4.0.2":"2021-07-29T11:44:08.619Z","4.1.1":"2022-01-11T15:41:16.709Z","4.0.0":"2021-07-28T19:06:52.159Z","4.0.1":"2021-07-28T21:36:36.166Z","4.1.0":"2022-01-11T15:20:13.044Z","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.0.1":"2015-05-06T13:39:47.537Z","3.0.0":"2020-12-02T16:06:25.754Z","3.0.0-rc.0":"2019-10-24T13:43:46.036Z","modified":"2025-12-19T17:02:07.282Z","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","2.0.0":"2018-04-08T16:26:42.147Z","2.0.1":"2018-04-19T12:23:39.215Z","2.1.0":"2019-09-23T16:09:15.238Z","created":"2015-05-06T13:39:47.537Z","2.0.4":"2018-09-12T09:09:20.827Z","2.0.2":"2018-04-29T20:30:42.320Z","2.1.1":"2019-09-24T13:54:20.681Z","2.2.0":"2019-10-02T16:57:56.368Z","2.0.3":"2018-05-22T18:10:59.518Z","2.1.2":"2019-09-25T23:08:36.661Z","1.1.2":"2017-07-07T14:07:06.239Z","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","6.0.0":"2025-10-30T14:25:53.445Z","6.0.1":"2025-11-02T14:59:08.722Z","2.0.0-rc.1":"2017-09-21T12:00:00.621Z","5.0.0":"2022-03-08T15:41:17.511Z","5.0.1":"2025-03-11T23:17:58.492Z","1.0.0":"2016-02-07T16:55:53.554Z","1.0.1":"2016-04-26T02:33:18.022Z","1.1.0":"2016-10-19T15:36:52.850Z","1.1.1":"2017-07-06T19:23:17.713Z","1.2.0":"2017-07-20T18:34:20.255Z","2.0.0-rc.2":"2018-02-28T23:03:15.733Z"},"readmeFilename":"README.md","homepage":"https://github.com/shellscape/webpack-manifest-plugin"}