{"_id":"webpack-pwa-manifest","_rev":"61-d81f053685fed3546e02096bb3505248","name":"webpack-pwa-manifest","time":{"modified":"2022-06-29T00:04:18.946Z","created":"2017-02-10T07:08:42.128Z","1.0.0":"2017-02-10T07:08:42.128Z","1.0.1":"2017-02-10T07:20:29.146Z","1.0.2":"2017-02-10T07:49:35.569Z","2.0.0":"2017-05-06T04:29:10.582Z","2.0.1":"2017-05-06T05:21:55.584Z","2.0.2":"2017-05-06T05:38:50.621Z","2.1.0":"2017-05-06T22:15:17.519Z","2.1.1":"2017-05-06T22:34:00.332Z","2.1.2":"2017-05-06T22:35:49.982Z","2.1.3":"2017-05-08T14:19:08.575Z","2.1.4":"2017-05-11T01:55:19.356Z","2.1.5":"2017-05-30T01:54:09.671Z","2.1.6":"2017-05-30T21:16:10.356Z","2.1.7":"2017-06-01T00:24:21.016Z","3.0.0":"2017-06-13T21:06:20.271Z","3.0.1":"2017-06-24T23:11:44.675Z","3.1.0":"2017-07-03T06:04:29.719Z","3.1.1":"2017-07-12T06:21:30.985Z","3.1.2":"2017-07-13T22:22:54.918Z","3.1.3":"2017-07-19T07:41:34.427Z","3.1.4":"2017-07-19T09:25:51.499Z","3.1.5":"2017-07-20T16:52:30.064Z","3.1.6":"2017-07-28T16:44:33.438Z","3.1.7":"2017-08-10T00:29:12.549Z","3.2.0":"2017-08-18T08:09:21.764Z","3.3.0":"2017-09-12T23:47:33.552Z","3.3.1":"2017-09-18T13:47:09.831Z","3.3.2":"2017-09-18T13:51:22.071Z","3.3.3":"2017-12-15T18:04:05.365Z","3.3.4":"2017-12-15T18:49:19.964Z","3.4.0":"2017-12-22T10:05:40.573Z","3.4.1":"2017-12-22T19:09:23.213Z","3.5.0":"2018-02-13T14:27:26.313Z","3.6.0":"2018-02-28T00:44:35.455Z","3.6.1":"2018-03-01T18:57:43.005Z","3.6.2":"2018-03-13T05:44:03.210Z","3.6.3":"2018-07-27T23:10:36.531Z","3.7.0":"2018-08-12T17:43:17.457Z","3.7.1":"2018-08-12T18:08:06.390Z","3.8.0":"2018-12-01T19:51:50.117Z","4.0.0":"2018-12-07T04:44:59.298Z","4.1.0":"2019-10-14T13:27:27.441Z","4.1.1":"2019-10-16T04:51:56.711Z","4.2.0":"2020-02-10T13:34:17.384Z","4.3.0":"2020-11-17T22:13:40.506Z"},"maintainers":[{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"dist-tags":{"latest":"4.3.0"},"description":"Progressive Web Application (PWA) Manifest Generator","readme":"\n# webpack-pwa-manifest\n\n> Looking for people willing to help! [More info](https://github.com/arthurbergmz/webpack-pwa-manifest/issues/119)\n\n`webpack-pwa-manifest` is a webpack plugin that generates a 'manifest.json' for your Progressive Web Application, with auto icon resizing and fingerprinting support.\n\nIf you are using `inject` on your configuration, ensure that [`HtmlWebpackPlugin`](https://github.com/jantimon/html-webpack-plugin) appears *before* `WebpackPwaManifest` in the `plugins` array!\n\n# features\n\n ✔ Auto icon resizing\n\n ✔ Icon fingerprinting\n\n ✔ Manifest fingerprinting\n\n ✔ Auto manifest injection on HTML\n\n ✔ Hot Reload support\n\n ✔ ES6+ ready\n\n# install\n```javascript\nnpm install --save-dev webpack-pwa-manifest\n```\n\n# usage\nIn your `webpack.config.js`:\n```javascript\n// ES6+\nimport WebpackPwaManifest from 'webpack-pwa-manifest'\n\n// ES5\nvar WebpackPwaManifest = require('webpack-pwa-manifest')\n\n...\n\nplugins: [\n  new WebpackPwaManifest({\n    name: 'My Progressive Web App',\n    short_name: 'MyPWA',\n    description: 'My awesome Progressive Web App!',\n    background_color: '#ffffff',\n    crossorigin: 'use-credentials', //can be null, use-credentials or anonymous\n    icons: [\n      {\n        src: path.resolve('src/assets/icon.png'),\n        sizes: [96, 128, 192, 256, 384, 512] // multiple sizes\n      },\n      {\n        src: path.resolve('src/assets/large-icon.png'),\n        size: '1024x1024' // you can also use the specifications pattern\n      },\n      {\n        src: path.resolve('src/assets/maskable-icon.png'),\n        size: '1024x1024',\n        purpose: 'maskable'\n      }\n    ]\n  })\n]\n```\n\n# output\n\n`manifest.<fingerprint>.json`\n```json\n{\n  \"name\": \"My Progressive Web App\",\n  \"orientation\": \"portrait\",\n  \"display\": \"standalone\",\n  \"start_url\": \".\",\n  \"short_name\": \"MyPWA\",\n  \"description\": \"My awesome Progressive Web App!\",\n  \"background_color\": \"#ffffff\",\n  \"icons\": [\n    {\n      \"src\": \"icon_1024x1024.<fingerprint>.png\",\n      \"sizes\": \"1024x1024\",\n      \"type\": \"image/png\",\n      \"purpose\": \"maskable\"\n    },\n    {\n      \"src\": \"icon_1024x1024.<fingerprint>.png\",\n      \"sizes\": \"1024x1024\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_512x512.<fingerprint>.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_384x384.<fingerprint>.png\",\n      \"sizes\": \"384x384\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_256x256.<fingerprint>.png\",\n      \"sizes\": \"256x256\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_192x192.<fingerprint>.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_128x128.<fingerprint>.png\",\n      \"sizes\": \"128x128\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"icon_96x96.<fingerprint>.png\",\n      \"sizes\": \"96x96\",\n      \"type\": \"image/png\"\n    }\n  ]\n}\n```\n\n# API\n\n### WebpackPwaManifest([options])\n\n**options**\n\nType: `object`\n\nYou can follow the [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest) [specification](https://w3c.github.io/manifest/).\n\nThe difference here is that, when defining icons, you can specify one icon with multiple sizes, using an array of integers, just as the example above.\n\nYou can also change the output's filename with the `filename` property.\n\nPresets of `options`:\n\n```javascript\n{\n  filename: \"manifest.json\",\n  name: \"App\",\n  orientation: \"portrait\",\n  display: \"standalone\",\n  start_url: \".\",\n  crossorigin: null,\n  inject: true,\n  fingerprints: true,\n  ios: false,\n  publicPath: null,\n  includeDirectory: true\n}\n```\n\nBy default, HTML injection and fingerprint generation are on.\nWith `inject: false` and `fingerprints: false`, respectively, you can turn them off.\n\nIf `inject: true` and `'theme-color'` property is not defined, it wil try to use `theme_color` as default. Otherwise, no `theme-color` meta tag will be injected.\n\nWith `includeDirectory: true`, we will use `filename`'s directory to export the manifest file.\n\nWith `orientation: 'omit'`, the orientation key will be omitted from the generated manifest file.\n\nWhen `inject: true` and `ios: true`, specific Apple meta tags will be injected to the HTML code when possible, as requested at [issue #13](https://github.com/arthurbergmz/webpack-pwa-manifest/issues/13). You can see Apple's [Configuring Web Application](https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html) for more information. Instead of using a boolean value, you can also use an object to specify certain link or meta tag, for instance:\n\n```javascript\n  ...\n  ios: {\n    'apple-mobile-web-app-title': 'AppTitle',\n    'apple-mobile-web-app-status-bar-style': 'black'\n  }\n```\n\nIf `publicPath` option is not given, this plugin fallbacks to [Webpack's public path](https://webpack.js.org/configuration/output/#output-publicpath) definition.\n\nWhen defining an icon object, you can also specify its output directory using a property called `destination`. Using `ios: true` in an icon object makes it eligible to the `apple-touch-icon` meta tag injection. Using `ios: 'startup'` in an icon object makes it eligible to the `apple-touch-startup-image` meta tag injection.\n\n```javascript\n  ...\n  icons: [\n    {\n      src: path.resolve('src/assets/icons/ios-icon.png'),\n      sizes: [120, 152, 167, 180, 1024],\n      destination: path.join('icons', 'ios'),\n      ios: true\n    },\n    {\n      src: path.resolve('src/assets/icons/ios-icon.png'),\n      size: 1024,\n      destination: path.join('icons', 'ios'),\n      ios: 'startup'\n    },\n    {\n      src: path.resolve('src/assets/icons/android-icon.png'),\n      sizes: [36, 48, 72, 96, 144, 192, 512],\n      destination: path.join('icons', 'android')\n    }\n  ]\n}\n```\n\nIf you specify a valid `crossorigin` property it will be added to the `<link rel=\"manifest\">` in the HTML document. \nThis property determines if the request for the manifest includes CORS headers and is required if the manifest is located on a different domain or requires authentication.\n","versions":{"2.0.0":{"name":"webpack-pwa-manifest","version":"2.0.0","description":"PWA Manifest Generator","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"40eddb143ecec27091dd16185fdaa90cfd1f4b83","_id":"webpack-pwa-manifest@2.0.0","_shasum":"8a09457f19b4f96452a3ba123d4c6d26d3e37c61","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"8a09457f19b4f96452a3ba123d4c6d26d3e37c61","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.0.0.tgz","integrity":"sha512-U1hvhoyBIwHJyEo0Uv8YC3VfUTi0NhozDJaNDG0OttwiYJgEd8oxhab+IgUSvPI8l4YMMoisQpmNm67A0dsz8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGjvCZtV6YsMxIALwPTxikQZLiMGmdJ9oJ9oFikWvNvPAiBxL4v/rJ2ujx+U7ZZMU74+plOzh7R4XXXW2kSilgUw/g=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.0.0.tgz_1494044948333_0.0914358776062727"},"directories":{}},"2.0.1":{"name":"webpack-pwa-manifest","version":"2.0.1","description":"PWA Manifest Generator","main":"index.js","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"7483fd32414b9cba379238acc5e3b6a314e1163c","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.0.1","scripts":{},"_shasum":"8a7198bdf649d87754e8b8be8136c9dcda1eb47f","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"8a7198bdf649d87754e8b8be8136c9dcda1eb47f","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.0.1.tgz","integrity":"sha512-uKof15YRm+1gK8y/W9b72uSD6W7kbTJhi3u+uUOVTOPsq4e4RMovOynem0sexHrezYR5rLolU9eyPAjj42Pndw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBX0uqhz9vRYunqJRZnrcC+C5cIEbBIdzX0i25NY5S+OAiEA+xbrN7FSKRFJG4i2zLNEGUIIGScZAMuiv4vLbUTZhYs="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.0.1.tgz_1494048112270_0.785624812124297"},"directories":{}},"2.0.2":{"name":"webpack-pwa-manifest","version":"2.0.2","description":"PWA Manifest Generator","main":"index.js","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"3c0ddc66730876b2f28919c66d920c55cf8b47a2","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.0.2","scripts":{},"_shasum":"3390a500cb67def99134ebca17b0f35e5d18445d","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"3390a500cb67def99134ebca17b0f35e5d18445d","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.0.2.tgz","integrity":"sha512-OCgN3G6G1OqWCgdh2eqkDwD0gtUZ7PNaw5HXR2StxfPPF8SjZZ9vNCIRG41JZWNeQLQux93pimG6DrFYS97vKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENayXmSD6qpBAxjV97B5QL8DHkGvkz1P/iPb9STbMvBAiEAyrYMv12kNtg+cvo100IIfjQfbsGrGBB5/aP8ADcMUzE="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.0.2.tgz_1494049128642_0.21990367420949042"},"directories":{}},"2.1.0":{"name":"webpack-pwa-manifest","version":"2.1.0","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"d4c66d71f6c7dd657bc7eb65cd57a9362b4e2c04","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.0","scripts":{},"_shasum":"ce92e62216bc04f391a97036a8ea7b61dc5e086d","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"ce92e62216bc04f391a97036a8ea7b61dc5e086d","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.0.tgz","integrity":"sha512-jk3Y5aN80SM26jxO5GVHkkrPM9CnloMUbfyD0svABai8h1XOYlNiLAf6wYxuO/FUZGrkuxpjfA16Rfg+NOy/gQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmaUutvUr8NLrEApapaQC2j11wLgTyWL5MK5TceDLOkwIgc8Vp48uMPYAyzRIu0FGiWSD5Cjmk6aWGgqu1kB/tRDg="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.1.0.tgz_1494108917280_0.732557026669383"},"directories":{}},"2.1.1":{"name":"webpack-pwa-manifest","version":"2.1.1","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"f69be84893d2e786eebc788980e7ae3003abfee8","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.1","scripts":{},"_shasum":"078615871fbafd98ce93a962a31323c5a7036775","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"078615871fbafd98ce93a962a31323c5a7036775","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.1.tgz","integrity":"sha512-Jw8e2NLeaAkZqIkSTbu9xqssLhsB4pwX7aUCQUktOuy5b4mUK+7l6t17WsGwR3TSSwfh1ZpEKe06Tr26g5ngqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB/2RK6q1u0iiA5l0NrHIRnQr+t2EzYxh5OAJW/CS7bVAiEA2K3L2l2O3wMm01VI+4zS4CuMhPUYt20YTRTPaKV3c/w="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.1.1.tgz_1494110040029_0.44412909424863756"},"directories":{}},"2.1.2":{"name":"webpack-pwa-manifest","version":"2.1.2","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"62256a48251249f2ed292d05bfd0a4b2290b727f","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.2","scripts":{},"_shasum":"eb783f17ca8090924400855a80d071f0856c3bf1","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"eb783f17ca8090924400855a80d071f0856c3bf1","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.2.tgz","integrity":"sha512-k06nCNPFETSwH0KqXjLIBpntmbvUtZqf3wcaRm7NhohMEIo10MGNNGfFDHEirbJ79pR90t5pjCW0+AC3YABeCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVm9/owYMChXSfxWMtOApF6Q8rAkdUwUVw3vsrnhRQfwIgL5C13BCorKUnck8x3XBab6Yor3k2iasy3cDBWChzags="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.1.2.tgz_1494110149730_0.8376015077810735"},"directories":{}},"2.1.3":{"name":"webpack-pwa-manifest","version":"2.1.3","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"abf45664c9e6061f35f58b3335c0ea66d3714217","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.3","scripts":{},"_shasum":"c8af7cf1748f661def97ed342e55b199e2839c04","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"c8af7cf1748f661def97ed342e55b199e2839c04","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.3.tgz","integrity":"sha512-QYFBY/44dbGEfsFYMwjhtHa3weMHBYb3zK3vpTRmIKEO2orlVFezz+xf38qtCvwKUh5WfT7rMwPsVIZZtMbEJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKr6GdtKtxWWjeDjfn/jM+Ko5DiE6m5DEhjcZvgklKEwIhAJG3T2ZRjCOLwtl7MMwCuMgspOshid4+B28OHDO2vAHc"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.1.3.tgz_1494253146449_0.7639360458124429"},"directories":{}},"2.1.4":{"name":"webpack-pwa-manifest","version":"2.1.4","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"d1a7ce7f26c76ebf2018af40b21a47d4832ac53a","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.4","scripts":{},"_shasum":"e33e33ab2793a706c4dc89053e44de36e500b877","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"e33e33ab2793a706c4dc89053e44de36e500b877","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.4.tgz","integrity":"sha512-JwXCRZOCOs2f6nEnmgUc1KGCeZertR+jfU8idGMy6QxMRjmyVB3gs2sUzQucDojOc3Fy/WooiSDYo5ANMKc+Ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvS4tp+R3mqtV/02BunmAIHwBKRtIcliv1bsgA9QAvJwIgZX4KPGih66yRIJH9uCGAFN2AZs26FqAdmXV6itKa31I="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-pwa-manifest-2.1.4.tgz_1494467719065_0.03394345077686012"},"directories":{}},"2.1.5":{"name":"webpack-pwa-manifest","version":"2.1.5","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"d15ec3d588aac1814d684e14005393e8e2fe5c2a","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.5","scripts":{},"_shasum":"076ef881eeead387863c31c4a1a7e753531009c4","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"076ef881eeead387863c31c4a1a7e753531009c4","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.5.tgz","integrity":"sha512-myUnxMLzVdSKr+CGXc77qjrS7FKnzo9Rp6YYwZKE9aMrC23ZDNyr5U0GGZDEx6MnBBjuvcTCL/kcwd7yserzMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFj3v9TvwpBTQ3/vMTy97K5JXlNT3q0Xg6zTunEoUkfLAiEA74Nrwl+g+vNBpOrc2lTen/L0rPdZ/PQxjZOlyAw0iJE="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-2.1.5.tgz_1496109249585_0.2139987894333899"},"directories":{}},"2.1.6":{"name":"webpack-pwa-manifest","version":"2.1.6","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"5e12b421bff7cc553b36d086613992acae812f4e","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.6","scripts":{},"_shasum":"68363182cc1602a046f7d777955f2a70e57e7be6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"68363182cc1602a046f7d777955f2a70e57e7be6","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.6.tgz","integrity":"sha512-/jMXbf0rpXvZgqgEEoCrArp0ReBCuM6yWecPqZekYwrH0PoR76E8c8gs+3Y77qp5nRBwHBq6AGUvC95jDdHS+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLrufX2SWBMRYl1OTCSVkJg4jHoQxqTvczSTA28wARTgIhAIfUh6/Vw/1zcB88hXQYkRHb3FAZfySfHn8+w1qYuDu5"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-2.1.6.tgz_1496178969466_0.09844048391096294"},"directories":{}},"2.1.7":{"name":"webpack-pwa-manifest","version":"2.1.7","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.27","mime":"^1.3.4"},"gitHead":"ab74b53cd440c2d41264d2a9a9068eb43e205c0a","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@2.1.7","scripts":{},"_shasum":"75b5a515a4e017c91923d10521d80a1203d7a5cd","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"shasum":"75b5a515a4e017c91923d10521d80a1203d7a5cd","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-2.1.7.tgz","integrity":"sha512-ZoTOa7sb4yXl3LxD34lfdhpaibg8JQLiCKqUPCyUzo0CPfcYjdRYPbwfYbBP5gy9qx1gqQ8ziBU408Dw65/7iA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQDGsiBBxwX4kuIFed9GzVHE62JkPdFe5VIN9TrA57Y7UQIfaI7pPibokt03Ay2QdEE3cTpoHk1omzfvIcn1lrALOg=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-2.1.7.tgz_1496276660871_0.8042907118797302"},"directories":{}},"3.0.0":{"name":"webpack-pwa-manifest","version":"3.0.0","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"6373e2f30ecb1d2a11e4936406345d4032941622","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.0.0","_npmVersion":"5.0.1","_nodeVersion":"7.5.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-O8QBFLhKjlnC7IwvcdeNXc18nXmaxQYXsUBS9kxg5H6fA50Lj6CttuW9bplg0ZcId918w168EgwUDov2qGuArQ==","shasum":"f6e5628bc22a8263422b4076c011113aa8837d98","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFAmT5rlDakbM1iiK/EKezQ/DSM8ssY0+wGgOUvkpkaEAiARbxVpzgGh9WDGS3RcbsGFzV4HuMMo/kSTMKeXXkhkbg=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.0.0.tgz_1497387980136_0.24351524631492794"},"directories":{}},"3.0.1":{"name":"webpack-pwa-manifest","version":"3.0.1","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"934793b1e654de606ae15104bb2eeb44160b3a7f","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.0.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-OnH0q9AS67EVTKxhpaEZY2NDzsrAmn6Kj+PagcO9G2sxKXse7qCTOmo8Uad4qMGr+KL13lgYK3f0L65LMydQag==","shasum":"e7560168a48b043bcea793dd94c55f0521fbf295","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSDb21Um4IEp2mgG6S9ka3bzX1y6KkpcyXijA8OG3biwIgcy2rvSd7thEPAmmqh/zO3iGwaGyuX1U3BgWzkx0I5+o="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.0.1.tgz_1498345904474_0.4017523294314742"},"directories":{}},"3.1.0":{"name":"webpack-pwa-manifest","version":"3.1.0","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"aaace4867b008d9531c5e0c0898f897c5326d3b0","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-GIE642NL6G4G1Z2rEoWyhyCzA7b+rxtu3w5VVka82y+H9RetPZbt5bJGMqpQ7aTfbN2LYZPUNxiwpDFYKKhzuA==","shasum":"96a35c5b864757e6089c7b300eefa8f916b6fe0d","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC3i+h6ftn/aFLFkWFXSmgpUfFLXyfURueCRpDAm2grZwIhAPIyRp8sSkkExv341lug378ufdS1zssPoB02471YeF9R"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.0.tgz_1499061869579_0.12682675383985043"},"directories":{}},"3.1.1":{"name":"webpack-pwa-manifest","version":"3.1.1","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"965ef9185e57b066720d73eacec69d1e0237f469","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-UFdPuI9p070W5zH9YpMMTSkjo26kMxm/zPGmoji99tWvrJEmcLYn+u5Zld6rVWpf6Q5HbXDd5FlPs/lmFJ3pXA==","shasum":"8a7785ab58ce9781ebeb423f6953c7eeee380033","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBtKqeFa8s7N3ICDwCdc27lqubTNHL4RaYTPtVHsDWuRAiEA4lQXdS/NTC8bZyUeUyxOl0F6PoWzLHNZ23NOdIMWPzk="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.1.tgz_1499840490138_0.5575022124685347"},"directories":{}},"3.1.2":{"name":"webpack-pwa-manifest","version":"3.1.2","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"ea87d0dd67651ecb93348206e44f6042d7fd7a09","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.2","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-6rg+P/xcq3eM3iQW0u++EUwBg+9Ld3ZKVey2M40Ew6qGVz4aYFU3GmuVwHbojpZMbGlqkGn2SdrV1F4sb+pIGA==","shasum":"90178937dd388af08c76850018ed0fe5890cf252","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG/g4X92tRjoxuF39cvNdp0ZeO1QrlfMTDQuwyr48QCpAiEA7QpY2iZDLKZlgffSvBnTwTDGZoGWzPdSo/w/+xlBn18="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.2.tgz_1499984574706_0.4100242806598544"},"directories":{}},"3.1.3":{"name":"webpack-pwa-manifest","version":"3.1.3","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"3335e17cf845fe1a7fe434149bde9e4085c21cc1","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.3","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-ytCP5Ew5tXh+12NTvtWXkCryF7Q/wpInel7ehRmIEus2FBI/ySNUkxbNGG9PjDVdNj6FUMCT0LFsvTeO+3Y9zg==","shasum":"39918771b942d29e59ac5412e5cb28e42f596310","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAkjLypDFd9zi+qf5IXyzc5S+/o5OQsIUpNTTpbwDMirAiBK2OQnJ7jwFBT7sRBZm0rHVR+So3JY7ocZb6zPrlqTEw=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.3.tgz_1500450094313_0.854609138565138"},"deprecated":"No changes","directories":{}},"3.1.4":{"name":"webpack-pwa-manifest","version":"3.1.4","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"55410b63ac05ad91f2a6cd6aca801aaf7dd019c4","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.4","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-7eBCyCQ5DfPRPYazPwTqdvL9lysXMcJaN08a4LNwfw5H/IV4hzwA3hyUJZL1HV8G0FrqUN+RI3/WyH2TMe8vLw==","shasum":"a66bc6a31539c3c8d6c496a05b1d1f30ad8b461b","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAweOZxh4l6ytJAiNU/9XOT3nF+/jlGXLm1yrSWKhgo5AiBYg6dQ7lcUvsYamvc4jUusEXJBVugq59/3tmuOS3m/Gw=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.4.tgz_1500456351387_0.47096178657375276"},"directories":{}},"3.1.5":{"name":"webpack-pwa-manifest","version":"3.1.5","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"d7f30b4b95f4f1f9b0b820de246c4fff9b97b32a","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.5","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-uO6CyO8kQb8+HUnxNmLtp2RY83edTsZ/s6oe0fPlDbIAqOn20PQWxrALbGqpvjyB83Y6b0MsQn8s4Ie2lnaH2w==","shasum":"5002cb16ebd9714f7f33149dd9ca4232cdcfa93c","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfTtlvZaiMF8e53nO6eNX1owiyV6bpG1fnTs9sZK/x+AIgOLc+1DUgx3u9DqFc5NrC0zUP1EoCNttxlpKZGdso5Js="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.5.tgz_1500569549924_0.15957511705346406"},"directories":{}},"3.1.6":{"name":"webpack-pwa-manifest","version":"3.1.6","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"f4b29978ea23bf79b75513cd6d510f3e682e3c0e","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.6","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-UsKe+vOCLZGxXwjgIdQAmTmN4C+R389yYttBOwP+43XWVEnp2FFCcCqvkdhXM3Q9Um4BtEKo+j3ktc2RWE7ixw==","shasum":"6cb8bd5c7fdf0149f0bf3bf4e5425f52850ad378","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCx232OY7YiWzGGAgX4yPVMhPv6S9c5LMkZf4cOoSyz/wIhAPWz762bQSquwTgruNAIKfuhwUBRSWLZWmWE99Z74RNm"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.6.tgz_1501260273265_0.7417097126599401"},"directories":{}},"3.1.7":{"name":"webpack-pwa-manifest","version":"3.1.7","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"38b5c817f6b6500c7baddf822811c66b600028b2","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.1.7","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-vH3mtfHNG4rvx8b/aCHLEUbUkkCn6i6sVUENFKmQSlLhAbuZZr/mSMTsDWjvG9DgDvWYn5+vcZkHOt7S0sgWwg==","shasum":"4c764b1075201b21853ecacf7363d71627614124","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.1.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAeHxigcRlv37hGu+opTzP3CgnWa5g3aLTlfAmzXRYibAiEA/XpQAfm92P/ydkutDyifDaSpKdGg9+8O6dZVoDw7Zho="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.1.7.tgz_1502324952467_0.7788424955215305"},"directories":{}},"3.2.0":{"name":"webpack-pwa-manifest","version":"3.2.0","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"383c65999fcfeb5e66321b294670d92c25ce5687","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.2.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-y6p6QSscPz45KQ5YNpOQNWubQDB2SzqZO/vmr0pAZygMmsVcXOcDjCeUNiti5YdA0eP7wgeI5R5LRw9lL8bayQ==","shasum":"52284966f5710b7af2be993b1bc43b357d2b5c5f","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDbDsO+vj8kTAG+L48VlSSZzG+gl3UJY5SV91u6RmRUeQIhANwMhnnAhhVdIW/ErAfWAxloeNsBAPGkzKrv+yo7fZRr"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.2.0.tgz_1503043761628_0.0009293558541685343"},"directories":{}},"3.3.0":{"name":"webpack-pwa-manifest","version":"3.3.0","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"3a1439eae40f16a64c8c915707eaab3d6613663e","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.3.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-u41Nvith3oz1ufYHIyeL1obJ9GOoMAev6NWnCyfqIKlewFG6cHB5LoIEUw4JHd8/83VLd8XtNosL4eWXQ2MDaw==","shasum":"e3d053fc78d36f80eb9f04dba3b97baca5a868f4","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9fHTKOuptsOxVa7e7kEmqV/RSXVKktNm+eolmZtE3dQIhAOSPzcNKsbHUN2XmtI00Xuz8rJPZduQb+b4f1OSBESPe"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.3.0.tgz_1505260053451_0.8353389669209719"},"directories":{}},"3.3.2":{"name":"webpack-pwa-manifest","version":"3.3.2","description":"PWA Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com","url":"www.arthurbergamaschi.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.3.6"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-preset-env":"^1.5.1","eslint":"^3.19.0"},"gitHead":"d0395a979ee360d0e9bb9213de0e76acf67c6638","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.3.2","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-cOVQpARtiXZ9h67AfJgHxKCjxA3dSa7tfDZ6SszA+3zBq059pKSpGYukJWj8J6pNvcpjmhXr+eVyr40rkChHGg==","shasum":"1c52a480a08c4aa089f8a8d64f4534a637c63532","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.3.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXtqWtem2OAPyMxGcZKHuVELvSiDxudlTsVsajTM8w/wIhAPXhBWbqZVDAGM0FAvHEKN+rXtXV4UY1sXflEU8ZGKau"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.3.2.tgz_1505742681976_0.9385661634150892"},"directories":{}},"3.3.4":{"name":"webpack-pwa-manifest","version":"3.3.4","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","html-webpack-plugin":"^2.30.1","list-directory-contents":"0.0.3","webpack":"^3.10.0"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package.json","README.md"],"gitHead":"cefb764ab5d043bdabd2a64811477b604fe2ee2f","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.3.4","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-WV23XvvkUWsfS5b55eukDv1WXv7iPdDb45ZxjsYXB2dk9kjBF3WVRLVNMuaMgH1Xn/k9/2xliW9KsS7hR+d+eA==","shasum":"8df4a0d51e83f9bda0f03f76e94a13eb8db8afc8","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.3.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiWFo3SyOKWwRrS60fvHSHxpMKTuwNs+LXUZPJWxSdUgIgX5hKlUX7t6Q8KcDP982zhmWyfChw9tZDBP4su8KVr5g="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.3.4.tgz_1513363759876_0.9971339765470475"},"directories":{}},"3.4.0":{"name":"webpack-pwa-manifest","version":"3.4.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","html-webpack-plugin":"^2.30.1","list-directory-contents":"0.0.3","webpack":"^3.10.0"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"47c01f738df82e883b0b55318bbc03df6134337b","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.4.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-trrp2hbAqxRQqrIWPJB3BzoVnMmrGVK9Hfi1SLN/R24hYHRf1LKtb2uUJWszExuVPoZRUMzLlITcPsP4AduRfg==","shasum":"b9d16c6807cf6b36f364d93a71f9610094f90674","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKanUfAMke+7a4J8lgAL2iIauzEc8y+85aO54dgrCBawIgee1xBflhlG/K09rtozYYUEAdcKCdG2tNr+uh6j2dFcE="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.4.0.tgz_1513937140403_0.7884506194386631"},"directories":{}},"3.4.1":{"name":"webpack-pwa-manifest","version":"3.4.1","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","html-webpack-plugin":"^2.30.1","list-directory-contents":"0.0.3","webpack":"^3.10.0"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"b69a8b8cbb64aba0c8ec331b4819257fcf940ff1","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.4.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-6xXQCiKxvNwOHmuciREzFfmki1CzAP02egZbVOL/TJMY2JVVyvenqxUEuPJ+PDvC5AJrxn0QvbvXBkpKnDBxRA==","shasum":"b8edae5556e5d3a3c6f8d63617ca7fbe8cb78c17","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.4.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDODV+0Gdo7ogYB+qFvzixWH0ppvOrkUuPr6ysJSQRbwwIgC1uOtbWi9dnVSXKcqLsWNvu6L2KSiqSyZJeUeRoqCHk="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest-3.4.1.tgz_1513969763093_0.5730382846668363"},"directories":{}},"3.5.0":{"name":"webpack-pwa-manifest","version":"3.5.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","html-webpack-plugin":"^2.30.1","list-directory-contents":"0.0.3","webpack":"^3.10.0"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"bfa1e6e0f328a885161c77a2d4d703e9d37dff34","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.5.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-yff7t4VBy5DgmIxtK2uLFCMVPQFlwCmDqM1Deb1na3/ds5IYSExnHrA2oKf9Tlpq67F+v5P/OkDqcQlYRSGRog==","shasum":"a7055b10abd32b9c91b412c1a294d68d7ffd950f","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.5.0.tgz","fileCount":18,"unpackedSize":237479,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtgmOn9rGR3wOFDZn0ofmEbXwLUZ8q6lbKQ74Xr+ACIwIgVhIcsJl988dD8Qli0xiksOUnfm9Fx7DaHlpbDbL52Ks="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.5.0_1518532046209_0.3636587061471812"},"_hasShrinkwrap":false},"3.6.0":{"name":"webpack-pwa-manifest","version":"3.6.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"file:../html-webpack-plugin","list-directory-contents":"0.0.3","webpack":"^4.0.1","webpack-cli":"^2.0.9"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"7bbde8152aae3f7d4ff25a7db3c8ed4193d2bc95","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.6.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-jgai6XFFTX3viYW9cZwLULCxiCMpMGgWmpfNDQcqPNke9r8NySoKY7wZfa0JtToItIXuGtY2YqRZFWEgwrkNUQ==","shasum":"182f38712da6032818106650367fdd8720bdb28a","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.6.0.tgz","fileCount":20,"unpackedSize":369501,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBX9AZOwKRZqOUSEBx1MlU9XjpTswcbqvCb7Mz/hqfLpAiAaZZNft/FV16NaZqmOC+f4xyPpKLlaR8u5eSeNpLrMGA=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.6.0_1519778675345_0.5888081724788223"},"_hasShrinkwrap":false},"3.6.1":{"name":"webpack-pwa-manifest","version":"3.6.1","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.0.3","babel-preset-env":"^1.6.1","eslint":"^4.13.1","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"file:../html-webpack-plugin","list-directory-contents":"0.0.3","webpack":"^4.0.1","webpack-cli":"^2.0.9"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"4b78a3e27d9c86a137cfd068d299b29954d9c04f","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.6.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-VIvX3jsNe+QzHBN968azeq85ZdEmJkQ0H9yw1ZtBe94D0s9+n+Pe4fCuBlllJzs0PZv+q/QraRpxf8bpikPaKw==","shasum":"a4d378351a76e98fa1b3d54a6a115038fefce8b1","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.6.1.tgz","fileCount":20,"unpackedSize":369597,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDs5/icSNYJl1k0ZR50rz15Ja7QO1N4yobvJCxhFIUOnQIhAII+AqWrGtlN0mKmaSeAmjliKCbeB2aQY7jFucHVFa8c"}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.6.1_1519930662946_0.7172993705463122"},"_hasShrinkwrap":false},"3.6.2":{"name":"webpack-pwa-manifest","version":"3.6.2","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","test":"npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"gitHead":"2c3431c5f820443c2d8d4b733735bd35c71bb148","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.6.2","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"dist":{"integrity":"sha512-lEjAY9CGv5aj3IyoNhO7wVBP9YN7ZKLFC48yu9iO92PQIW4NI/2iS1GOpQl9/DaUWS31jmF/n3wLd20XIyjaIg==","shasum":"361a2dff083a87cdc373bd27defdcfe317ecff1f","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.6.2.tgz","fileCount":20,"unpackedSize":383899,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAHVOxyUh3C7RsinGPdEIggkBnbglCIkuJVms6rCNUyXAiBKIj+lKB/DS6ZlJBgWWdaXaYL4O/PdO8qrHRaQ9NeZvQ=="}]},"maintainers":[{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.6.2_1520919843085_0.4237272895162678"},"_hasShrinkwrap":false},"3.6.3":{"name":"webpack-pwa-manifest","version":"3.6.3","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rm -rf tests/*/output && rm -rf dist","test":"npm run clean && npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"engines":{"node":">=6.0.0"},"gitHead":"52998f10e9a80f105676df7e4217e7dd8daa7b4a","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.6.3","_shasum":"519da004b0060f874ec7acdc838caed3f90061d5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},"dist":{"shasum":"519da004b0060f874ec7acdc838caed3f90061d5","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.6.3.tgz","fileCount":20,"unpackedSize":383928,"integrity":"sha512-Hdc8whnLJ7JXvoodHYBx+MS1q5dA1WY9yedYlKhWQrjNQRJBALBddBP0zOPzUZxfPr7h0J8LHBA0TsikHowRuQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHMyxPKfQF9KgcXbXSckCTgyJO8rkMj3iAbsTkBN8G2EAiEAhpMVOr5DgIkTh2NpeXlBw1/6Jw3def90qJU/bXX4Oks="}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.6.3_1532733036452_0.15473707319255214"},"_hasShrinkwrap":false},"3.7.0":{"name":"webpack-pwa-manifest","version":"3.7.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rm -rf tests/*/output && rm -rf dist","test":"npm run clean && npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"engines":{"node":">=6.0.0"},"gitHead":"a5eb0cab92827650d7095326e855cb7477588849","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.7.0","_npmVersion":"6.2.0","_nodeVersion":"10.8.0","_npmUser":{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},"dist":{"integrity":"sha512-uPQfkurgmxvQlW9L+sJTHeXjOqHPWcATwf9aAuPGT5gQvtFY1s9CqciQNvNNUuMpOwx2XmiJOtGDVOwxw0ZuVA==","shasum":"8a996b86d8b2137924699fda679f5fc29dca5936","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.7.0.tgz","fileCount":20,"unpackedSize":410783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcHG1CRA9TVsSAnZWagAAUZoP/jI9CiSTFQq1DuJmEHCy\nPVhkqc8nvEA9LU5eQNNm8TC5Ahsl8W0cD1djbXC10BTSx6dSxyb6VBnR0Gr2\npc1K5Vjb+pNdr2dPa8NujJb4+bBw1WOC1Toby2PYzMgkKhPE2DgD8sN/++PM\nBk2ojHWJT3o94x99TuDu70EN98U5mgFnwKRHqW+z/LHhxsiWnGlbnh+LfLGP\npVpMCyZGSDnBZIHs7HTnBtHw/TPqLbm47NR3aP80pb92g7P21Bfn5nHIjuLM\nbZgXDJG5RRLIzLWjIIRm869D9wunluMLRSBB7iDrdgsTeBonFTPUFT9X1kXc\nVHB1E6OZT/MyOoIRAWn/C0hN8H3VY7IszFpC/enBJztV2eWqKY0arzXw4OJ4\n1eixtUie8k+Z4Xn8YlZGZoi7/CL+oPs34Z6OAU5bezajhPoTFPylMfU66RNO\nZdnJ+GMOe+FLwrJJvdASsdQafnV9wIXTZsGHfM8QSuuZ24PtTsDzg7vmyZeo\nJjZhqxyDqhq16JxZZoKu8oXFH2xWoUgj7C4FMVqOMz/wpMyTSOKTgxv8Vipl\nB9auuBYcnqRiIO4KI3czRk1TzWjturzYXMDVUHdlrdnW1brnu0GCY4vFljZs\ngxakmBBHa7Am5h+bB9fuaeH5DkD/4etMgoL2L9vg8zBDhhggWI/4rMh0UFE7\nercK\r\n=rmUz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDktcnaLoBnxCyEdSH3VFGBsZdhWtrZAQAA4m89J0X2XAIgH+ttZf99ZM4/l80d4L4dn+fqydAoHmu72Xov6n6M2yI="}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.7.0_1534095797338_0.5629907337038209"},"_hasShrinkwrap":false},"3.7.1":{"name":"webpack-pwa-manifest","version":"3.7.1","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rm -rf tests/*/output && rm -rf dist","test":"npm run clean && npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"files":["dist","CHANGELOG.md","index.d.ts","index.js","LICENSE","package-lock.json","package.json","README.md"],"engines":{"node":">=6.0.0"},"gitHead":"414de8a9ace5e5ed5a68355165dfc8591c3bcc2c","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.7.1","_npmVersion":"6.2.0","_nodeVersion":"10.8.0","_npmUser":{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},"dist":{"integrity":"sha512-G37fVCa1ndij3jyz6WaOaxHLHdp2URyOHwp2GLmxt39sXL8ZdOFM1qvHagEJBkNh+3hu25eIgy6TD5J/8sgQcQ==","shasum":"ef3ca4571b1f799a470225be537c0ca6a1ac9505","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.7.1.tgz","fileCount":20,"unpackedSize":411037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcHeGCRA9TVsSAnZWagAAgFkP/0ZV16jMw9VRBLOHmuC/\ntm2BDw+wpeOf9cZYSPEl1VY0iTqCa6WtSXkeE0Ap0Z2K0EXVp5NWDSCACbD0\nCFVtCXo4puO6T1hA1RcJ/9yYEwIjo7oXWHUm39U9139/ucu0+Id/gODj+iBc\ntYW5rStmJxFgzDgel4z4ww/vpg/pKV9L/aUKmYdsPq1Oy09ep5fTfOqqYGXQ\nD2hfZKqngJPpysvJGXaVTil9+zL1A8p73CLP31liJCmLsFMnQ+nNrEQTBuMm\n7pmwDIl7CP2/A1pevzuBAnbBXzPbr/k5A5pTRrxCirXWEIvzELa0C2CkcGjf\nUrg5M9nEMxLZxSZcuD6sTPLYVUa81++2hqEgaPL0b5TjGuFKWSj93ktNO8C0\nWIsS+q2o7RqZ6WW4osUj8CmuKUVD0yN+SA5xpKU3geUvBX6obYWq+2AgDpuh\n1PnuAzwI4AiXtyEGBRV3ppQQiwX2uDVe1FJdubSLNQsCq0ZNAi0Da1/eC4SV\n8b9miC9y1ZyNvkk8gtBmDXX3J3aStISqsvahUI+xxNewZgjGncLKD8y6aj8N\nMhUNP/1xaCZCLe8mzOqQEngy+GxNUY3HsdGCU3V0P32S7DNf73UH0G/SzX4c\nkfNKv5otNbLrjZrpK/jrUxm1DrdkrKhCZEgdyaTyMQS04X0XPgfKUT7euESR\ngawL\r\n=nOn+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDbyh/iHIW+kUPw2OAdqqVKd9N2tLaJQyEyJOGlTyG2FQIhAI0mkaIPXtY7ygUIxZU4jcVNk/QLFfQ+0LjFXCsB4PTv"}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.7.1_1534097286303_0.7987901239434831"},"_hasShrinkwrap":false},"3.8.0":{"name":"webpack-pwa-manifest","version":"3.8.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","test":"npm run clean && npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","rimraf":"^2.6.2","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"engines":{"node":">=6.0.0"},"gitHead":"3449df3416df07f1d170c0d08b2e91f365c84d4c","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@3.8.0","_shasum":"7f1d409f2fe872e78ace6b729ba03c8cb5d923ef","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.0","_npmUser":{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},"dist":{"shasum":"7f1d409f2fe872e78ace6b729ba03c8cb5d923ef","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-3.8.0.tgz","integrity":"sha512-W+svkP+u2WJsMw+R+bLSD4O/LkPumGCnFlD0BBMPubqD9v7nnmnVeO8cZYGPIiuRQ9x+WFWdmEfiA6XecvkkWA==","fileCount":20,"unpackedSize":411250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAuZWCRA9TVsSAnZWagAADvsP/i5RwRIMJ+OOxtYzJII7\nKruJqTpQcXxhJzcX7tYusFqNbdo0vePmihb0ICCeR50TmGyENWWHscuL7rFh\nlaCAVD8W+ZoqW7ogAwh6ehZq4Jchtc8FvrqO+tiTPYCQk2BEP0HSb/YtSHqJ\nqITYNVKpMLQPpxVDeKpXSC7a0zmw54BPoSw+rEE9bwnq2tsYM109xbLhgmmD\nfdHO/iP8AhquYpkJCk0iV4mEyl9r2r3E/lETKqEXXAJMmLr93EPTqiHjY54t\nw0TtFGsH8JGFuVOopPG1hcMRRFK344QUr8J9hVlbkyl5ElYCQbsGK59Ly1fb\nnSX7yMku+Je0OZqqqdP3v9dTdpfqEleav4TfxcLzfPDAi9Fhk4DZONDQxVj+\nyAo5ZJByOzJNu/dgv8AGbVQcJsv5m4mVE1ON+33WN3pdE7u5eM/1HrJgA7DA\nj4mfyMCDtbhKYMW+Hro9XZKpDv5vbVoTg10ZPoYQjOfxjkQwdWmlrO0Yk8q4\nnBng/sK6wOXAZD6K7zwd+PXW/+yUWr3OhLFbOvvs/xtCR44LXDIdG6JUp1L6\nDhaPOxJkaak1A4VcKh6p24K42SQAXjPzhCaD9LXGTHwbpcZwE/fQX6tNHEyq\nVv+MLcVFkNkAJkXbNHBgadK9UbOGdzrMG2xm2MJjvr6Gi9M8oNHNmhpiMZuh\newMR\r\n=WtAe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNOUkq9xir4Ag4misGyXKFsJQQyeG96ugwjbhV4tA4/AIgWw6nisRgmvGyZXodgGWphdnYxjHzdzyzOsQqhFiPJxE="}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_3.8.0_1543693909941_0.42487431460988057"},"_hasShrinkwrap":false},"4.0.0":{"name":"webpack-pwa-manifest","version":"4.0.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","test":"npm run clean && npm run build && node tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"0.0.4","jimp":"^0.2.28","mime":"^1.6.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.18.2","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":"^3.0.6","list-directory-contents":"0.0.3","rimraf":"^2.6.2","webpack":"^4.1.1","webpack-cli":"^2.0.11"},"engines":{"node":">=6.0.0"},"gitHead":"47fddef65f1ce507d4b9be248254f14881503e47","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@4.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},"dist":{"integrity":"sha512-655TpvoOLGHI2hgx7AmmdgHLc+xDtAi6J5fz7bTnuhxWtEVH/NI2qGlDY40HErlblOV74VtVz5S/C0u7ZpPlvQ==","shasum":"a7c12debe497f61f5948ddb079bb8a955152abd9","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-4.0.0.tgz","fileCount":20,"unpackedSize":411301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCfrLCRA9TVsSAnZWagAAVgoP/2S8Zhm2V3HhgTvYC8lD\n+lqMe8yM6p5VucDn5nvc8yI6/XJ/Yu81kdAK0Par/cSth/+AAaCXjyuwWUtc\nhjAVGi8OGIdCfMw7kOZop0PnExt5UhPbTf4xEWbybVjtdk4DbQZLGHdyT8g3\nxuazlN0UOuI/m+yMcYOO7025v7r6BYsrR4XaMeRumeZucGdAXIsSutFyuShH\nFvqi+X0Tgp/S2y34/j5bWQDTCcdmr+Oa1lnJ9NMByuhSVmrS9JE3kq7xmh7U\nYsB29JeXCN91giUDdPdtVaM/Buas1JQLBTggru3RNOt/OASUUmBj6hxxeqlY\nqHhsQdNcUbjQ6/yKgcrn8VzapjmIJRduvgRJU5yvUgtw6EedI6reK8MmRKBY\nbk+YRzSYTm35D9lzPsSq471YyFLTag6kgOiNQY3KKHWnTvbOlJZt13H9cqOW\nKZAx0rD8nEeSP/GbzUrVtHonvQPphf0oW953tw4PQMxqol+0oFWHNUgryD5A\nKq+tQLqKiKC6XXNDfsWDYWS2syTPf7UHFuziDGPK6iWjeFAlXOeLcZ59K5KN\nOKnwR8FvTM+IqrUnpIdQCZP4kddmcL28xeVGP5TUP+lnD95YPkzf7RXsXqzJ\ndve6MBZ+OvQguZMaY2gd2wokIYuNGdsw5QccM7w8IyLV3ItC5cBxhx+/8wkn\nQT5a\r\n=0Pyi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDCtTdwdq1ADyupZ8Rfp1GaAf07ld1YIdQ0XUcfQclZ9AiEAknLxu6Ny11TclQDuLgyNdM8fWAz+Xd+BYhgsFP4czLQ="}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_4.0.0_1544157898991_0.6087798801182878"},"_hasShrinkwrap":false},"4.1.0":{"name":"webpack-pwa-manifest","version":"4.1.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","test":"npm run clean && npm run build && node tests/index.js","test:debug":"npm run clean && npm run build && node --inspect-brk ./tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"^1.0.0","jimp":"^0.6.0","mime":"^2.4.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^10.0.1","babel-preset-env":"^1.6.1","eslint":"^5.10.0","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":">=3.0.6","list-directory-contents":"0.0.3","rimraf":"^2.6.2","webpack":"^4.1.1","webpack-cli":"^3.1.2"},"engines":{"node":">=6.0.0"},"gitHead":"706b3c3952d73713b0ffc596be2284b6998af2bf","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@4.1.0","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-OCZkAA8TJyfkaIOPoioHHtdZIRTv28hdnZk5or0AgsmRg/LuTpOXpMIcGb0UErxxhJXmqR0mb2J0tnvV6VXPiQ==","shasum":"16339324bbdd83f583dc5c49b756462439107899","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-4.1.0.tgz","fileCount":7,"unpackedSize":301420,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpHe/CRA9TVsSAnZWagAARNYP/RqM/YrFEVIXvNrzUexc\nRSuzyXyG8C6QnF/OLgj3wI6P2VNc6duGdvKi5+YCMdAPtBUwyE5qIOa54jfi\nrNB/gFZ+Kjti3NutfBkLNGresfH0+xrZjAZvyMgOolSDqFqLE3nDiuupLm0K\n/O0zYZbMgT5Xb2wCS7UpgsfjKo1LVljlnm6l2NjOnP0W9rjcoF4Kk3qqlyZr\n8EEU+CWdJwQuicxvRWj/yk27j7VApVoMdXD6KVI1oQdb3w9PD4+ULQIKtVHp\n5Geua4rfqA15wtSn+izocKBjh0Ozl2VfVtbmdfkB95TikD65Zf6OspQvQVoG\nmmFzQBcfV2TOz5CJcJqnaKmQjI7Vtzz6zG9D5mzpMhaOjdP+Kme+9ET8uEnx\nLN4WajOL1DJPC3vK/J/gVPe1+Dgdr7g9278oVnjaQ1bxSm5+0pZqhXz3F2OP\ndukN53VAWqNrOgMpOvp1uQCow8CTYp7g2xDDNdc7Fvvh2WmpdFE3w5nzDDHs\n7N3BQ78jknOx+k1b9fTKoGLl5kXVBWg2e5mzaYXvm/eydeMQBIC4gy8ryu+p\nqnQaFBg0VcRp6Sq23+MK21r0IgWJ1xH7iRd3tk64afo+HKuMJ7uFFYBTJaPB\nViPwGVMJukmWw31R2zixA7I9aV1Kmfzv6xlVVZWnS5jyLtd5dZiQzTczNm1M\nFpUe\r\n=Je3N\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSeshs1QQx3/Ja0iQS3Wj5G6s/en2nJqxHh3llfz4dKQIhAKB7ATmofXRAEG/JcCFfPttckPKsUe6OnpX0Dj/zdilL"}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_4.1.0_1571059647287_0.7771305971584752"},"_hasShrinkwrap":false,"deprecated":"No"},"4.1.1":{"name":"webpack-pwa-manifest","version":"4.1.1","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","test":"npm run clean && npm run build && node tests/index.js","test:debug":"npm run clean && npm run build && node --inspect-brk ./tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"^1.0.0","jimp":"^0.6.0","mime":"^2.4.0"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-eslint":"^10.0.1","babel-preset-env":"^1.6.1","eslint":"^5.10.0","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":">=3.0.6","list-directory-contents":"0.0.3","rimraf":"^2.6.2","webpack":"^4.1.1","webpack-cli":"^3.1.2"},"engines":{"node":">=6.0.0"},"gitHead":"7d4c0b99092b9fefe1a7ecb19ff74e530ca0b3f4","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@4.1.1","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-jnQsbU0O56OUATDPBKePe5HHoKfSN5zSKAqiSbD9JfIOXlfsHdja4+19RNy2uj//WX1byFZz2ZAdRtrelKPE/Q==","shasum":"f9fb9880e82b564026253b30dcbded2858a8b8ea","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-4.1.1.tgz","fileCount":20,"unpackedSize":332958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpqHtCRA9TVsSAnZWagAArFcP/RARAk07N+rs2A/8Byka\nagpAthjGCvmS2QJAYd6TLRq+3RFkrvEF31kcru1yak1Aq0Dw4Tq3bxeC3XwR\n11QY8QF7sjBFvOB4ttWj3nhq2VM9W/h6xkYksu3F2FwyXzkcGHQLehz5ghL5\nBhScwPMqXcvmG4hTL0vK1r0xe0asXzl7WsalUIYus/t6nCQQJ5q52b8bk/Ru\n4ak5CFytSc3A43cV3X/Hjh9Zp4cvjeDiVsoIuQAkhEU2eX3nuf/6xjvrRCU8\nHL39AAa/zoUpHWSDivaI9YINc9YoKo2S/p5ontwr3QbB5qkV/YM9UyemdQ7j\npKlvlO08sS8DaVBIfQMXcGZlgnPEHnfzgD7F77m5v80Nn4xU7II/BrGq247u\nZufFdeypMAhTUNYaTgQA2+9/6P1A/EMJXolMv/MHxMQlhrPlRZRddcuhLnHh\nhgT4bjGgQP3/CslxlUjvj422OKH/x8/tLkqEegZs/CPC+IH8mPc3wcSdA+5n\nhRmKaFsjY+0rqndeXzgr7+XdAcTAH86HNiwF7TPX0zuykyrgxODxjrJ9cGtY\ndk11ROK+e65ZfYMpky9K22ZTpBy6+Fb/d/07lP6bJFKSdfC89lZXsaIvre4d\niruIrhMADHQHFM0x3N+bGTn+rcLcXD2X/CkMpp5tbuCALaViuSVvpdv9OQ+B\nXuqY\r\n=idB0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDep19Xvvd1lkOUCMXMxC9uLRUgQuEBwxqV1sBuaq98LQIgSf5oLzTaEd/cdOjnpu+pNYH4qXJpkdbv/SYR4mTYaiE="}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_4.1.1_1571201516574_0.36118527334840644"},"_hasShrinkwrap":false},"4.2.0":{"name":"webpack-pwa-manifest","version":"4.2.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"npx babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","test":"npm run clean && npm run build && node tests/index.js","test:debug":"npm run clean && npm run build && node --inspect-brk ./tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"^1.0.0","jimp":"^0.6.0","mime":"^2.4.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","eslint":"^6.8.0","extract-text-webpack-plugin":"^3.0.2","html-webpack-plugin":">=3.2.0","list-directory-contents":"0.0.3","rimraf":"^3.0.2","webpack":"^4.41.5","webpack-cli":"^3.3.10"},"engines":{"node":">=6.0.0"},"gitHead":"d8c2ba68b7dd98ada3ffa5b94fdee14246d42660","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@4.2.0","_nodeVersion":"12.13.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-rc5XFIuH9Ue3fcXvWeYmccAF95j6eRi7syte3vi0SyUHQMjo2z53vEwKWjF//QM/THKJYICScDB9l0Jklsc/yA==","shasum":"5538a567f668fcb21726cb6a0a56e9b131a9b2c3","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-4.2.0.tgz","fileCount":20,"unpackedSize":334774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQVvZCRA9TVsSAnZWagAA/WQP/3MwitM9ET8VAFvFoJxq\nwyi+hGRxgYh2K0YBUQnKDs5FSTqtETOf644qvpC2arPYu2tWJqdpcjo3kvMD\nAoSOSbZl7kWi5d+yX2u0t3g4yvFjda3VDhIWZr2PYf5mZo7EU+CaMlc4v3Mk\nUJSjPHd9n4TbjzxUGmVfabYhWYbrpvYCEfrnUmU+4y2uov0NK0azmd3SKf76\n6fo8dAWPJjkFPyzVBa1uPoKhJ/VJ0ultUHGwANwzB5vSEKhNzWM+QufYCoaK\n8K4VoF4SWJsPjmUNKsmN1FazJFE7zHztcasxrsYJMCu3Io1bvLKCGLzk8cd1\nyDFUPgmgG7odjmYweLMFYcv05/yMNoXHU9y154NhklP9uapy8QUh4v48puDI\nX8rk8aIO7Xxb0kNIMPGU4B3h84EAT42VlVU+nRxYdXNXseM92KJ/7D/dHftL\njm3hGoRe/FQRB2dztO5rqTQwsqaPoViE8AFUMmtmbA/mxiBvRN8YB+ZayeM2\nd8W0waoP0iVALU67tR/x2jiaM7Hxh3yD10LDPC3mnIRGWB8se5Sgs7rkTHBi\nXNVZ82VMSZktn28gw4BH3mMybZyTNWvI09INH8YtYF+E+kDCQa1xCPk4eH3z\ngK6oDjM8uOBq74P7f5kidGFtSlk2uchsxyD5/WjQ6L+QRR42t90QXWzDLLdh\nApm+\r\n=WnAB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG+Cp/NeZl7W5DQi1eTG1Pq15KLYMwoB5Sdi/NW8cP8QIhALxRlLXlXpXlm3A2tqWEM1Rw0wc1LNtAePWJhgoApMe5"}]},"maintainers":[{"email":"arthurbergmz@gmail.com","name":"arthurbergmz"},{"email":"douglas.b.wade@gmail.com","name":"douglas.wade"}],"_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_4.2.0_1581341657250_0.06010641964504959"},"_hasShrinkwrap":false},"4.3.0":{"name":"webpack-pwa-manifest","version":"4.3.0","description":"Progressive Web Application (PWA) Manifest Generator","main":"index.js","types":"index.d.ts","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"scripts":{"build":"npx babel src --out-dir dist","clean":"rimraf -rf tests/*/output && rimraf -rf dist","clean:build":"npm run clean && npm run build","test":"npm run clean:build && node tests/index.js","test:debug":"npm run clean:build && node --inspect-brk ./tests/index.js"},"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","dependencies":{"css-color-names":"1.0.1","jimp":"0.16.1","mime":"2.4.6"},"devDependencies":{"@babel/cli":"7.12.1","@babel/core":"7.12.3","@babel/preset-env":"7.12.1","babel-eslint":"10.1.0","eslint":"7.13.0","html-webpack-plugin":"4.5.0","list-directory-contents":"0.0.3","rimraf":"3.0.2","webpack":"5.5.0","webpack-cli":"4.2.0"},"engines":{"node":">=6.0.0"},"gitHead":"aaf3c4199ee289bc549a12159128c4dfc16e3e70","bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","_id":"webpack-pwa-manifest@4.3.0","_nodeVersion":"14.0.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-3hK8Qg58SyLCUIz4PBYnfUPM6iJ5K88h8Uhc3MxmlJcVtDF/11aBBdUTdQkqc9bo6Cb8Q1v2xdsB2XO6pzTbiA==","shasum":"a9382f3e280ba4f74b6e855c529bcb550461ab5e","tarball":"https://registry.npmjs.org/webpack-pwa-manifest/-/webpack-pwa-manifest-4.3.0.tgz","fileCount":20,"unpackedSize":284876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJftEsUCRA9TVsSAnZWagAA9F0P/1g7LXOP3p01oqdl3+/n\nbOVSPW/gRj9z+BgjUVxxy7chJ5TLkgM2mY5g7ATfzj5gYbQ45Vc3G+lz0NCW\nohlnETbecUdjsHr+PQZTompdC3xSUDYgd4bon2eJWBECm7pLJFT0BNCCgbOB\nhW7ak1nAYkkBcsX87KP8RRFp5lxjBxrkQLJIZMSyxtflLukODAPyKwlJK6wR\nhJUMb4DXLW2695BS3w5e/WHadwC2UqnNF3tk+PKkuwB8UpEuIGPv+E15KN9h\n5fYShzdu382SCKxWPYPvxt5KM3RP/73Gf4gb+q8sQBAi+11RJX4pLa/B9WM+\ne6W2VsRcKszc6tpmm5CAAVSRV5qxjfknYEEjzA8Vb7ozazeKVsuFfuHPfCcH\nkMl+RAhVyS8VHsk4i9y5y16TqwyoPs4Ttg0mqzYxt/mXigFRGbZD71rJzplH\n6GCP0yUNOjB206Kwju1j6W1KKqXCgghKVcfRvXkFDhR9Dp8bPPxIHIadAwHY\nPXxTuzxX15sqO/qE8vzXaSOCZrLVD4buH2MH1fbtDxuAf5NLM+CydgbKsQdN\ndlNy+ReR4mEAg2vzRvavX1weeYZcdIvZ0ryxwpHM7JqDYD/zx4pdRwTVQdFs\nR7VtJZEE3mRZK0jnEwei8zJBhE8wus1A/5qUlhBMdVFa5OkKuVkioPcjiTXv\nkt95\r\n=Okmt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6OIiZ4eL+BfmTB14X/MWoomd6HCvye5hA7HoJkR5e4QIhAJ/1osS5zkXjCJQgkWlv/pDUTZU9wJcnjKziDzNH0sBH"}]},"_npmUser":{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"},"directories":{},"maintainers":[{"name":"douglas.wade","email":"douglas.b.wade@gmail.com"},{"name":"arthurbergmz","email":"arthurbergmz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-pwa-manifest_4.3.0_1605651220354_0.8571916347974553"},"_hasShrinkwrap":false}},"keywords":["pwa","manifest","gen","generator","webpack","webapp","manifest.json","progressive","web","app","application"],"author":{"name":"Arthur A. Bergamaschi","email":"arthurbergmz@gmail.com"},"license":"MIT","readmeFilename":"README.md","homepage":"https://github.com/arthurbergmz/webpack-pwa-manifest#readme","repository":{"type":"git","url":"git+https://github.com/arthurbergmz/webpack-pwa-manifest.git"},"bugs":{"url":"https://github.com/arthurbergmz/webpack-pwa-manifest/issues"},"users":{"mtdalpizzol":true,"ognjen.jevremovic":true,"amielucha":true}}