{"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"keywords":["electron","chrome","browserlist"],"dist-tags":{"latest":"1.4.284"},"author":{"name":"Kilian Valkhof"},"description":"Provides a list of electron-to-chromium version mappings","readme":"### Made by [@kilianvalkhof](https://twitter.com/kilianvalkhof)\n\n#### Other projects:\n\n- 💻 [Polypane](https://polypane.app) - Develop responsive websites and apps twice as fast on multiple screens at once\n- 🖌️ [Superposition](https://superposition.design) - Kickstart your design system by extracting design tokens from your website\n- 🗒️ [FromScratch](https://fromscratch.rocks) - A smart but simple autosaving scratchpad\n\n---\n\n# Electron-to-Chromium [![npm](https://img.shields.io/npm/v/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![travis](https://img.shields.io/travis/Kilian/electron-to-chromium/master.svg)](https://travis-ci.org/Kilian/electron-to-chromium) [![npm-downloads](https://img.shields.io/npm/dm/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![codecov](https://codecov.io/gh/Kilian/electron-to-chromium/branch/master/graph/badge.svg)](https://codecov.io/gh/Kilian/electron-to-chromium)[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_shield)\n\nThis repository provides a mapping of Electron versions to the Chromium version that it uses.\n\nThis package is used in [Browserslist](https://github.com/ai/browserslist), so you can use e.g. `electron >= 1.4` in [Autoprefixer](https://github.com/postcss/autoprefixer), [Stylelint](https://github.com/stylelint/stylelint), [babel-preset-env](https://github.com/babel/babel-preset-env) and [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat).\n\n**Supported by:**\n\n  <a href=\"https://m.do.co/c/bb22ea58e765\">\n    <img src=\"https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/SVG/DO_Logo_horizontal_blue.svg\" width=\"201px\">\n  </a>\n\n\n## Install\nInstall using `npm install electron-to-chromium`.\n\n## Usage\nTo include Electron-to-Chromium, require it:\n\n```js\nvar e2c = require('electron-to-chromium');\n```\n\n### Properties\nThe Electron-to-Chromium object has 4 properties to use:\n\n#### `versions`\nAn object of key-value pairs with a _major_ Electron version as the key, and the corresponding major Chromium version as the value.\n\n```js\nvar versions = e2c.versions;\nconsole.log(versions['1.4']);\n// returns \"53\"\n```\n\n#### `fullVersions`\nAn object of key-value pairs with a Electron version as the key, and the corresponding full Chromium version as the value.\n\n```js\nvar versions = e2c.fullVersions;\nconsole.log(versions['1.4.11']);\n// returns \"53.0.2785.143\"\n```\n\n#### `chromiumVersions`\nAn object of key-value pairs with a _major_ Chromium version as the key, and the corresponding major Electron version as the value.\n\n```js\nvar versions = e2c.chromiumVersions;\nconsole.log(versions['54']);\n// returns \"1.4\"\n```\n\n#### `fullChromiumVersions`\nAn object of key-value pairs with a Chromium version as the key, and an array of the corresponding major Electron versions as the value.\n\n```js\nvar versions = e2c.fullChromiumVersions;\nconsole.log(versions['54.0.2840.101']);\n// returns [\"1.5.1\", \"1.5.0\"]\n```\n### Functions\n\n#### `electronToChromium(query)`\nArguments:\n* Query: string or number, required. A major or full Electron version.\n\nA function that returns the corresponding Chromium version for a given Electron function. Returns a string.\n\nIf you provide it with a major Electron version, it will return a major Chromium version:\n\n```js\nvar chromeVersion = e2c.electronToChromium('1.4');\n// chromeVersion is \"53\"\n```\n\nIf you provide it with a full Electron version, it will return the full Chromium version.\n\n```js\nvar chromeVersion = e2c.electronToChromium('1.4.11');\n// chromeVersion is \"53.0.2785.143\"\n```\n\nIf a query does not match a Chromium version, it will return `undefined`.\n\n```js\nvar chromeVersion = e2c.electronToChromium('9000');\n// chromeVersion is undefined\n```\n\n#### `chromiumToElectron(query)`\nArguments:\n* Query: string or number, required. A major or full Chromium version.\n\nReturns a string with the corresponding Electron version for a given Chromium query.\n\nIf you provide it with a major Chromium version, it will return a major Electron version:\n\n```js\nvar electronVersion = e2c.chromiumToElectron('54');\n// electronVersion is \"1.4\"\n```\n\nIf you provide it with a full Chrome version, it will return an array of full Electron versions.\n\n```js\nvar electronVersions = e2c.chromiumToElectron('56.0.2924.87');\n// electronVersions is [\"1.6.3\", \"1.6.2\", \"1.6.1\", \"1.6.0\"]\n```\n\nIf a query does not match an Electron version, it will return `undefined`.\n\n```js\nvar electronVersion = e2c.chromiumToElectron('10');\n// electronVersion is undefined\n```\n\n#### `electronToBrowserList(query)` **DEPRECATED**\nArguments:\n* Query: string or number, required. A major Electron version.\n\n_**Deprecated**: Browserlist already includes electron-to-chromium._\n\nA function that returns a [Browserslist](https://github.com/ai/browserslist) query that matches the given major Electron version. Returns a string.\n\nIf you provide it with a major Electron version, it will return a Browserlist query string that matches the Chromium capabilities:\n\n```js\nvar query = e2c.electronToBrowserList('1.4');\n// query is \"Chrome >= 53\"\n```\n\nIf a query does not match a Chromium version, it will return `undefined`.\n\n```js\nvar query = e2c.electronToBrowserList('9000');\n// query is undefined\n```\n\n### Importing just versions, fullVersions, chromiumVersions and fullChromiumVersions\nAll lists can be imported on their own, if file size is a concern.\n\n#### `versions`\n\n```js\nvar versions = require('electron-to-chromium/versions');\n```\n\n#### `fullVersions`\n\n```js\nvar fullVersions = require('electron-to-chromium/full-versions');\n```\n\n#### `chromiumVersions`\n\n```js\nvar chromiumVersions = require('electron-to-chromium/chromium-versions');\n```\n\n#### `fullChromiumVersions`\n\n```js\nvar fullChromiumVersions = require('electron-to-chromium/full-chromium-versions');\n```\n\n## Updating\nThis package will be updated with each new Electron release.\n\nTo update the list, run `npm run build.js`. Requires internet access as it downloads from the canonical list of Electron versions.\n\nTo verify correct behaviour, run `npm test`.\n\n\n## License\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_large)\n","repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"license":"ISC","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"versions":{"1.4.65":{"name":"electron-to-chromium","version":"1.4.65","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.943.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"67d7d573e925527947ecd6376342bb4993a3a484","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.65","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-0/d8Skk8sW3FxXP0Dd6MnBlrwx7Qo9cqQec3BlIAlvKnrmS3pHsIbaroEi+nd0kZkGpQ6apMEre7xndzjlEnLw==","shasum":"c0820db06e268e0a2fd4dbce38fb5376d38ca449","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.65.tgz","fileCount":13,"unpackedSize":158194,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/ejECRA9TVsSAnZWagAAGfcP/3dKoITDd+MGDgCnWPGr\nKJVpB7+nOsV+1knkvIgaJEExAtEy4LtSZdIToUiROOKVXGJX4dGfoyN6ITGF\nifkiEkyFAd5MgwgFAxwi7lF3cSD8te6i5Ge0rBDVhpofNswWogEPvaiMWo7m\nzufdXLhGODeDbfp5nsiTsFoEJMEj9aDQ4iY79rgR2lzAIOlL2imHt4PVyEUJ\n8tQl7ec7Hx/uWcxbj/19k/YUxTjt5hu7LXcWIhkM8o1zbueaPYG3FrKWJSb8\nBYQLV0v7CH+QfKx2QKZxFl2cfbxs9+P7d1TtSK8J2Cv0vjFfhigFcXFfSTNp\nSeh174cSDqVO95cQFEFLj6y2Cf4NH45o/RAhOb6BQN4AReGbvkhnbfd4IwRb\nSRTUReNFL6o/v53+JjAb9jkX+kcGYbOftLsFzNIvC3e5TdI+KiBEa/5dktr4\nU2SkbhVTHfavLhHyGcukhN7Aw/F3WrrwpvLhIIZSAQBtUZhM3hMpTPCjTia/\nHLfzLm6MgnKsvRONWjmvti8XeVXlAnx3tjthNnrnqCmoB0iGZCdMJNFgwUX6\nIMJdSAbdbjgVKBEEujJa7OGdOr8N89cRZyoAvPgpVZ1yqR01DUhKi80CBmsZ\nukYXqTXNfc/haHHE5z4/zv9uN1HQoCB/hagmyh+aQM5v9eI0i0S10d4RPvgt\n0YJJ\r\n=YZM4\r\n-----END PGP SIGNATURE-----\r\n","size":24719},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.65_1644030147968_0.9195560066461874"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-05T03:02:37.630Z"},"1.4.64":{"name":"electron-to-chromium","version":"1.4.64","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.942.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b132d4483161d007b88ad74343837c0b978efe49","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.64","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-8mec/99xgLUZCIZZq3wt61Tpxg55jnOSpxGYapE/1Ma9MpFEYYaz4QNYm0CM1rrnCo7i3FRHhbaWjeCLsveGjQ==","shasum":"8b1b5372f77ca208f2c498c6490da0e51176bd81","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.64.tgz","fileCount":13,"unpackedSize":158056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/CbGCRA9TVsSAnZWagAAWrsP/1PwptGIGlOiz0AVGBbk\nVsF6X1i80UL9YMTfQHnEZK0pwNBk1Z1E5qou73iTsv+mfi28e7F6/0wf5ln7\n3kc/qpXtpe5TROiDkTzdBT7gpC7DD0m8aMUR6U2TgXfIi0p5IaHtzoPhlWSR\nysLeisjLuousNQHfQeLrrVGynSqlMk9dq1LimV758w3/SIJY8kAdn7K0hqlt\n8eEK/S7xfVTqcHo7pLSKIPFepnZzz/OvYLiUtuqN745+8IAytf5BhHKiJbze\nezpFxSwBnMT4UNXhk9Q69kIIqPQWyZYjDMCbbOQrv1Znbn0Y4RE68TaVyh3P\nVK+pgM2SlCErbg2jCo6H0ptBU03wRclNfFY0iN4GTcE+X1IezwkFVdhmXafd\nbRLKYrlo4w6CxppBSNNwTR4MBdbVPnWVuHSGa5FWNG1hZI0ZZp8/5T2Ewt/8\nbUmGvtgGERz9hWCLVMlTyE09jLedEld+zindJjnQlXDMPgoYSzXQq72g5mmA\ntzX+2LTdI8mf39GFCTcjjrhS+AUsXyz7X8IrT4kTnsPJW31tWffhcbwxxL04\nn8tvDCaKYfdprbZlKQjq4jbGt2P9J8YopJtNuoo37u35PLwMIBk1lJ8hbOsq\nmVETCTMqTVlg496610XyOq76ezpcALkBNpASG+BMTw2lI3aaUTxfna5eRbYr\nu4mV\r\n=G0wO\r\n-----END PGP SIGNATURE-----\r\n","size":24704},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.64_1643914949873_0.1621388453385002"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-03T19:02:40.899Z"},"1.4.63":{"name":"electron-to-chromium","version":"1.4.63","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.941.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"06cf2b19e9216051ce02c4698d0d4cab5c1f34dc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.63","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-e0PX/LRJPFRU4kzJKLvTobxyFdnANCvcoDCe8XcyTqP58nTWIwdsHvXLIl1RkB39X5yaosLaroMASWB0oIsgCA==","shasum":"866db72d1221fda89419dc22669d03833e11625d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.63.tgz","fileCount":13,"unpackedSize":157918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+0XCCRA9TVsSAnZWagAAENIP/R+2IR4aH57xLpWKkpeX\nTilYrQ/bDXPlfbecGsJBGpPXfG2MC+QpSSjWRRJ+ixeygClICvqGtr4DDNUl\nLMoZH+9O+A6sGU+EmhzCzjTJtheirFnoddujejc7+Fr6Xlte4/QER5IQCg0T\n+DZEpexvGuB3GWpN2IaYUwM1a+1MPnpV/XvIPpTJ9mn95CTMk1jjkzlZJoAT\nQsV4F7rTorhzeQwE80QivoOyDfnFJaOyTtOgEhF5uIM4wioov5+UBnAxvI/+\nhoqhkBM+AhrqCTOVBuztptOd8QQsqL/mfuMZRjU4xC35loYQy6IOFHl39cpt\nUyQS20QJEpPFWPjHajlWCf9cP3hN/L+OQ1GtC/ah+Uulvc3lSHtlNWCYtjBT\nowAjFIbGGFjRBiNWCKFbZrE2x/z5xJVrTalAbRcjCE+mdw1W8jWWyG4QBTAG\n0BaAc4YGdrcRAANkSRUbrHF0JlXHO2oQYIRk77OljjQ5RUEpeSwGxMsokugK\nH8yReDFsosNFS/pjtb2EIUUUQcbeQ6vGe06VQj49BR99UsfO6Eto2KQ8dHQB\n/N7U14VS4HbdK09CtKPEnZ+dBZX27t70hEh7TNtLB5ZcpUbXTK5FLMwFOk3m\nRGsa1nswdDCUuPvP/iVk6oe38xTkhThg2NKxLzS8dAidBD8HgmMKyAReFGko\n0RjE\r\n=NqfY\r\n-----END PGP SIGNATURE-----\r\n","size":24693},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.63_1643857346388_0.8910496350938604"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-03T03:02:37.076Z"},"1.4.62":{"name":"electron-to-chromium","version":"1.4.62","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.940.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0a7a56a9e9262d98f0b9b9b25af9765682cb232c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.62","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-fWc/zAThqZzl7fbuLzar+x6bqZBWHrsBXQOqv//yrgdTLY/G3JGTPOWhPKIhbhynJJhqE9QNzKzlpCINUmUMoA==","shasum":"f97b643d206813b9154f1700b3c5b5b828ddc9ac","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.62.tgz","fileCount":13,"unpackedSize":157762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+tVFCRA9TVsSAnZWagAA1VUP/RVt6oMOeMRtXT1Ru3q0\nC8B3oeM2/TuMo1/k3oOJLdA6N9baZZIT8kmAh0TvvcExE9trZV4O0J/UltTO\nnAMX4hmxhZsa26Ubgi4jNQg2c8FEtl/4bHHOIJvvNjIrfOt1NtAdx0HYhSZq\nEjvw6J7Hn5LHSobkgeOLgIqY6P2yiAa6/aJKk5vvk5czIj3a2jknULRJErCJ\nLx+1iBqOikcDfGIEgSCzARTZpZ8+eiThGDWutBvnYAdsqNJgI7VD628tIMaN\nBFExP8H2on2vJvymrt19DpFXarv7gSJJsIP0zpsnDxQFghnnmVhcU3doLDRN\nr23Zf/JX/mJeDNLt08I/wUyB8rDC+VLza7/QgIIFbyCe6sBQM7eJNcUFQUim\nbm9VC+W9pjI89XVqM+BXEhuW3X3KLvNKFE6YAzqzGZH8OzK5T7mZwYltZ5e6\n1beCmMzebXB/p98oRm6vruVAYnAMZ5KqT9ge/C7V+Iiscqz4jP0g9VvT2NcT\nb+2KWu4KieAn6D6bYkefy2yMwhqzWEXqbdzJwmLM4lU0/pOGJr+od4cDXI0q\n2+H0hkO2QytYfwZ9wCnmXK6fQRVkifBlpH5nnwi0gabvmxcC78o5foRKIDhG\nwK8r63Gld46sCJLa7m1dLsq3K/ehEiIa2K0W+I/QvozdSNdoAbMdrz+aCcFb\nweeg\r\n=0Mo9\r\n-----END PGP SIGNATURE-----\r\n","size":24660},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.62_1643828548925_0.011337676446198541"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-02T19:02:41.059Z"},"1.4.61":{"name":"electron-to-chromium","version":"1.4.61","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.939.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5f927f7e098ddd54b7f76dc41ca018dbcc66358d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.61","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-kpzCOOFlx63C9qKRyIDEsKIUgzoe98ump7T4gU+/OLzj8gYkkWf2SIyBjhTSE0keAjMAp3i7C262YtkQOMYrGw==","shasum":"97689f81b4ac5c996363d9ee7babd3406c44d6c3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.61.tgz","fileCount":13,"unpackedSize":157624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+fRECRA9TVsSAnZWagAAyIcP/000t7ULaVyYN25gl5/y\n6/51j6uZMRbzW9kovWaOch4lBEDJn5V0ZAOhoXNujwYb4wEGyA8Yfy37mHVD\nu+oX5oHiivgMFskeP4vk0KsIbAn5UpwwO1LNV8z3bNt1Sei8sHg9lwGNySQy\n9sy35w3FRElkYOwJ+plehiLF0++D26COJH53M1/Cjs54rcScVpmkMuuzEYD/\npx9sfjLoxJ7w3dD07c4KsVMsxvYvp7PUlVLASmUYWG8OqiI1DB/RtfhimtaL\nHKIZ/mOElo9P+RUAH3XvnVBzRoRIMPACZpfihbgIg3S8kO8yvFpn6Zs8iHDa\n1/JIRsGP8MGFoZIlgXc4Ehr+0JQodQXXitQe1AqJhZ2VlhO+nswyW4d1MQ4O\ncpoHWYlorWK5fBxXF8JumU50Ovp4iUUWcfzMvpkJuRXw/YreuUFKr2XdsXJA\n5cwD4/LNq4HVu/7gr4tCbtldM1Br6zqr9sYT2nD8XnZAsNHiHgoH2u/1siFo\n2Rtqv2Gzil5SXqkLgsJ3xaFCO1BL2SjVNq/NTGd59Frc0Xa5bYh2c++KETnn\nJEjrmyYxwKQ4zOCWjkhhzXS+DjQ1ll+zXnmHErm/RDTIu+DsJsInXCIBhPBa\nxfP1Rs85FQyKWJ0eXe1d3c0TpDICZIokYtYZIlie3P1VUcWoqqxQlVXwk/8V\nhWum\r\n=7nHI\r\n-----END PGP SIGNATURE-----\r\n","size":24644},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.61_1643770948041_0.18090727580596644"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-02T03:02:39.318Z"},"1.4.60":{"name":"electron-to-chromium","version":"1.4.60","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.938.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"76b48850aab9d29b2f3540725a524b13102438c7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.60","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-h53hbEiKC6hijelDgxgkgAUC3PKyR7TmIfvjHnBjUGPMg/3sBuTyG6eDormw+lY24uUJvHkUPzB8dpK8b2u3Sw==","shasum":"2b824d862f068a9794b2b75d66ad40ff44745f18","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.60.tgz","fileCount":13,"unpackedSize":157550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+YPDCRA9TVsSAnZWagAAOpUP/11EVUp0Ihg5n/uKKZyt\nPHFKJyFc9k+nbIe6o+I4EuR38xGeMQk2edxJ8U5Ywd+VMP9+BoHuj2F2E/HW\nANQEtUpHTnYPm5GbUoRw5Od1T4RQSUArpwpkeI5QlKNdlVCGnF5/5Gm3iNOH\n5oXXyxozeWWj5ZMeVA7/4ZVfOgSp/znTEVUSW6Bp7boftIsTRW47r4gwcDqa\nsvmpUfN29PDG5zQ4GAODyYBl2y1WDUbs3EmcI/6ypWEVSH5bybKz8q1cl+3O\n5dggsCqHShpz7OzfczOpfRv1DpRZ/K01LgDvqyeQ+R93L7RcRAmt4M4bKbSo\nQHke/+0VHAoALWDHf1UrRXcxXrJ1S2WwP/8T1f+aWnMSK8XzhHSbvgYEwYHN\niC3A5ebZBM3jIDlqbwPN7ep9NaxB+Ke5dY8/Neaa1wY6hDT5x2/RSC4XtbNq\nrmWyTfA0K95bNqolnTquP0mARLoNObCBADbCvb19dY6caiOQ67gGItliRiSO\njIKEP4WOKfQwedvvw1mAP8b0YqVqiGbnpqo918fMjdU9G1Kg0bYTzvshwRnf\nHoH1XzHoTnOJ0CmxNZHhv1nasDjUZnG2NXim3Ep4QTinFoVjK3wVQHv4JrJQ\nD+hdiwuHTOIarFCFfZ5gGZHJrNA0u+NY1kELpLa7cM93NcgvkTBhFD08+e7e\nuv8O\r\n=sq8Y\r\n-----END PGP SIGNATURE-----\r\n","size":24634},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.60_1643742146917_0.9933648875301277"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T19:02:43.006Z"},"1.4.59":{"name":"electron-to-chromium","version":"1.4.59","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.937.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"34c11892e09171e132080a05b892a4788676d6db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.59","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-AOJ3cAE0TWxz4fQ9zkND5hWrQg16nsZKVz9INOot1oV//u4wWu5xrj9CQMmPTYskkZRunSRc9sAnr4EkexXokg==","shasum":"657f2588c048fb95975779f8fea101fad854de89","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.59.tgz","fileCount":13,"unpackedSize":157412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+NsECRA9TVsSAnZWagAAtYQP/ixq0tJs4s744YEPpV9v\nnMdYY9g3daRsE1QPiOp4sadnyQbAFVlsOpxYJ6GNUD4kFaRsZTKBdeUJKHJU\ndqxtKxtvSlSsaw/sno51oYRawsNqx0pQV1ZCJMJ5KdsnjLgYhQrClk987/Qy\nKTl01uteDTYhccbSuexX+r4Ugf9WYcVzTKphTae4FL5j7EqGq9N8vr57m+rD\nLaVkeyj0XY1hxmmaDFHOD/SjmRdXZrBbeunz3VUsurR/sPcoKTpXc2o2B504\nQgjT7lY1PYUret59LXhurePcnANE0F93AiXCFeR+EKnmTk5wRQ0GdVmerFFS\n38+o2oCfhEB9/skYMLdaV+SFYrFZGKIYiW6eG2XbCjbIlBoVK/lDkzg6Dq3N\naXLhd19C/mZ5wJaPJpb5k0JRrcRopbruHzYoFqq3gRF3dXMSFmjtqjBQo30S\ny383PgTW8cWOyiSpgwD9qYgajYxFn4O/YQy1VsogYVc7j6z1zCVqmLirFDLg\nScJZuT62VgmaHLnxOjhV/AylqTNrDGUIX7VsiKz5ldD4LlaXKLuUxSMn3mn3\nIBPcSLb+wlC62HZB0iD3N4VZGPKepOKIpJlNh7b5qe504SvakmIUsrBn4QFD\ng3InefLz46d1Zl4HFuo4Dggsi22IJeSvED8VY0CNyt31W4JKwDYYfxpIcSmm\nLNna\r\n=uPYE\r\n-----END PGP SIGNATURE-----\r\n","size":24618},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.59_1643698948317_0.6688703051998797"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T07:02:40.004Z"},"1.4.58":{"name":"electron-to-chromium","version":"1.4.58","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.936.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b5a47c1afcf042e46e82fd7933c45b9ec3207f33","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.58","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7LXwnKyqcEaMFVXOer+2JPfFs1D+ej7yRRrfZoIH1YlLQZ81OvBNwSCBBLtExVkoMQQgOWwO0FbZVge6U/8rhQ==","shasum":"cd980b08338210b591c25492857a518fe286b1d4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.58.tgz","fileCount":13,"unpackedSize":157301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+DJiCRA9TVsSAnZWagAANdkP/1NCKQjvltOZBKmQiffH\n/eqP7Cx2SUqdKY4FvvK4WA/4nGHgZfFEMlrvVkm9LWbCOHDZ9Yf74szom16l\n2ukKFF2QxmvPjvo6VgM480A4HfG/tItZZ2tCuBPJzQjOBcYOXKOrK1CD57EK\nUtOrqFpZU/d5JpS34uBfJF24OEZAuZjWQvGc/2UhnkteKooXqs8T1VeGRgKx\ncKisZv691xpeo4IYw4UNYY/XwAmRGJ/sqrlNrzuYx0o8eAPFgH6aqE49XVVi\n3mooZ39g+OPBZXApIun/oOfZNFZWhsEKfgshiYW3IPFmnJAwYtaTDWoA1sfQ\n7UWI6oiubgQwc28DsSJhqdBqLGmcwQtYbGNiV2rhppznhri2ZZuYi2yo/xQq\nzbqjc0JDv9I0+49cBipEg11sYdRwWb/amJEzS8wasMK6wGYcDED0BebBvvGa\nNOQt+nmm/lHJcw2dByxVyEUjfRuhfyIdDYaFYoXSK5oxxmO7yWJwcwla6b/6\nyKPvbN+qxLxNhgDpqpSMYYRFZGmu/NFbbVbiwqoWuRvYtEd9o4NMuJDMDg4s\nPM4jzVopwp2TOg8hv0b+hhohpK9u/1iWxpWeprSZ6MbTT5XqTxjqg/9MpV3A\nD5Rcx63ahmFr910663f+D8ZNPdHy52wAW7XtxPZLJm4BYFYEi6qw5RzLlRkO\nmVe0\r\n=kxeY\r\n-----END PGP SIGNATURE-----\r\n","size":24597},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.58_1643655778300_0.9462197902921663"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-31T19:03:19.240Z"},"1.4.57":{"name":"electron-to-chromium","version":"1.4.57","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.935.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8076318174f4373c231b70dcb69638b805967440","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.57","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-FNC+P5K1n6pF+M0zIK+gFCoXcJhhzDViL3DRIGy2Fv5PohuSES1JHR7T+GlwxSxlzx4yYbsuzCZvHxcBSRCIOw==","shasum":"2b2766df76ac8dbc0a1d41249bc5684a31849892","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.57.tgz","fileCount":13,"unpackedSize":157063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9D3FCRA9TVsSAnZWagAAymgP/juaMQj59NAlWY4FCEXH\nzNPIFXIjuoQkkF2+rYt2qZXTpq4od/FTaVrxeTV56BOYqHH5SCduTMxF4nC1\ndMR86LHZ2o/L1Gn3Uen/7QFETYZo5Oxw38LVLmvCt7HgERzLWhbNuNZP9qxE\n2BHbxGocZR2p+JekFijbinahpE2aFik8RgW+6jUklQjCQfRK0BN6R1eO/JwB\ncOSPbCTkcjkcmPVbEZGujEDSvXQfLXyn0Jz1bgh3buawhiRpiSvHNN++ghf6\n/lCrR93B+o79Jy9MenA0CFg/+Lz9ONXbz6qOKPNGv2+z8faJo+IA6EwiZlzK\njjqZ+ht7eK9AqVgbrFAEd2uSmW1IG4e4r9jMC9Zo5ihBCMyDra4TDs3tM2dh\n3ueTMSZqkYyBLJUEF6XikvtfvwiA54EmnA0n1NW8Ks898GoTwo4AD2GwghAI\nkDKLyARG3AS886X3Y/2YxVDmHQGJe23vUekdX5hBzAMVAgFcIw1+Velr/agV\nkIVk5r18736LOoY0mnYJtARpS/+m8+S68SsfbjVFCarYih2icCePJTNlXipY\n7YORXde2kMsRrn+X2JtBxSXYV9joO+y9vIxwiIBcA/i0+Ozd+GzdF2q/9iCW\ngNiqRC2CTLbczsaADC6hl1JjxFGe3t/1a6aVjP4mPAGZHdBks/pZ7AKuD5IF\nDKd/\r\n=IZOJ\r\n-----END PGP SIGNATURE-----\r\n","size":24575},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.57_1643396549453_0.6743347580643781"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-28T19:02:42.993Z"},"1.4.56":{"name":"electron-to-chromium","version":"1.4.56","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.934.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7cb47117cc7741b5a44862257011fc74fde8724a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.56","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-0k/S0FQqRRpJbX7YUjwCcLZ8D42RqGKtaiq90adXBOYgTIWwLA/g3toO8k9yEpqU8iC4QyaWYYWSTBIna8WV4g==","shasum":"f660fd2c6739b341d8922fe3a441a5a2804911a1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.56.tgz","fileCount":13,"unpackedSize":156925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh81zECRA9TVsSAnZWagAAsPoP/R+twZM0xmN8qusyWsYN\nYB7H8UwDwAkQAvkanmpSiBMjlBCPAGedRvOwEJ3UylYvpndEC/NNCIHiGuEA\nGAYzo8+oPLnLpDh8cL4BnuV0Qv6QjHi77QwVHFLe+mEC5fH882vrXGoR7mlX\nTp0iwLN5IFsL9kRqUeTqs4Tb1vEvGBIPuh1fH7yN5+LKboe4ZEygXIG59GQZ\nm2upG6AZNxElhWZOCl/KcqwZZXivbZn2pzhWwVCB38rbMbyJHtxqFfx494e8\nrtXlh6Er66WucycqHeRY1IKk4MopAT80r46bO3hT63srP5ozWfxtS0LICjWH\nlQlbrGcS8MFbRIM7tnGIHgZPhCBaTZrnWbPG3WksGgnzjvDSGS3kVhZWH+o8\nPTfYdSUGHyIqCDxr8p5xhXdd/v+bY9bdfANmU1HhjQuSq8l801Z9cLl/uHQN\ny0FOxvls4pOAh+2M03Je3z1kA4fmkVtF91idwYPoCkv7OsYo5QsIVsBxn6oZ\nzi46pMNTKN9CnpeFo5ei7UEf28RY1agNv6OyLyotk3UMzWc7qOdrIwLX/wkA\nNfeb0Zgaw0ivrc6rd80fFo22O769R6+ct0AZ78OEV7s+CqcoouyqIj9Ydnw6\nh1o2CQvsTQLxLGUkBjHz3VI5U9zcvPgzl/nCQH1P2M6KO6G6abTnGvvFolSB\nKwkT\r\n=H4Fv\r\n-----END PGP SIGNATURE-----\r\n","size":24564},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.56_1643338948363_0.2872661720460914"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-28T03:02:41.184Z"},"1.4.55":{"name":"electron-to-chromium","version":"1.4.55","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.933.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"cf1c1a4d88e5bdd0380006a7051a2ae03c83ff2d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.55","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-AoCDEVElLY8mwe4TuDDkr1jxvSh/Ih5PFlEXCpmwFkq9JOXn4K58CScgBl+R1ghFW9cPJ7VeWo30nAHSRCe6rw==","shasum":"a7fa3b49b2c4cb0ae68505cf304a9666fdd8fd9f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.55.tgz","fileCount":13,"unpackedSize":156707,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8uxECRA9TVsSAnZWagAAqRYP/ArBJmhhezd/J0LRSiMz\nZjz4gQ+aaidq1TZhurkSRuJu2NhWoK4LVyEjiGu2hW22q0zTsNmGr/9bYASP\nxI6CUQgPusrNBh7SRQASh+JU6JbLUb3uDsuosQQqfXueaARrcNSVoOx/n9iV\nbNmo9WmEkGkiY38cMgEmTVtDNkxVCb1qtlOEYzqwtGviFJ7TDEmTbyYStZc9\n79vcMzImZZg3EPP+eykPyYw13ieTj9V3OIoKftpoU2WUbzT4QJZ/UH6gHOt0\nYgN4aUuA0/wQKN1l70X2fIhK0oAddzdPcw2p/TrYTVgpYdIut14onysxA8PD\nY7Mznc//bsye/hV4os76Ji7VCy8nk5KQyHs6HKHcxqYk76FtqRykB6GRrkXn\ngVPD5AV6i4qFbYfZR1PYygATCfwb2LB9hrC0FRCUV0OfrgUxJDlBLT9cDjbU\neuVo2J+YzZNHXwmXpRQls6BALUA2GPB6V7hugI0dAW1llI95FTBCzXaoTPwt\nfc5ctIDOMjYBUdA9evNuUcPNctzApfTBcP54e81SaMf2+E4CaPAEPT0emUcN\n6Ejs6a5RzD936U2XPrnpcGDpcvHsb2M5Z3RUtRlZpOa69JBCeCGaG4m9DpEK\nkAMlmthmfN7R4iJsPis91AfvzUU23Zdab9Pxa0sn8GtBPIQEaqjaDTflkNYJ\n+PpA\r\n=ESD3\r\n-----END PGP SIGNATURE-----\r\n","size":24520},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.55_1643310148808_0.607153995004786"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-27T19:02:40.145Z"},"1.4.54":{"name":"electron-to-chromium","version":"1.4.54","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.932.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5f1019f9a036094d866eb57d7f71ad2a5c9c385d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.54","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-jRAoneRdSxnpRHO0ANpnEUtQHXxlgfVjrLOnQSisw1ryjXJXvS0pJaR/v2B7S++/tRjgEDp4Sjn5nmgb6uTySw==","shasum":"69005d39ed11542e1bcb65ec1a98e44d39527ba8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.54.tgz","fileCount":13,"unpackedSize":156469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8gtFCRA9TVsSAnZWagAAbiYP/iPZbg2kJcGFdORWxhBw\nqdZmoFl1f+xgSBE7z7IY4+lqYW1TpahQVXlo1Y0nVEJaOgfhCp4lArDJ7Egt\nZsKH2IuYVpiiUgLvaXi7etoted8Bx6RmuA1GLPNwLS6ex2YEeLCV4BlRQk70\nULwSsw9BW53l5MImDcq98qtAgxuUBxlsl2BWmjDgf6VtqzavttnliPqUKzdN\nKOZOii6kElAgz64lWqpc+Gi4Ad1W/8XoUcTZa0oyXb09LKvfvemZpCIW+Dbt\n5H1kk3OfvT6V/rf6GqbeeO1GWAJSngAvCCnm9Z0evr0vjsjNUNvejbSk133T\n7GQU1PW8jEiDwrVsDFEP1Z5hN0IFfLp6RUm4KAJUcgp/6poXCgA9L8YpEM/G\nexUKSwFb9S54AbtHXyOnUJ+ezM3jDftS0fbwxuAH+w4e51KKlKKV4nxRKDbS\naxvlKK7ROOVe2/xvlDaJm8zAYQlqxFGnzA5+sp2OZEuh+1TraLaRTPbKkdOb\n9xkvTOV/JQTw57mYfIdCzE3ukg0noiEZq8C3tkTXetLRXV+4jSjLD16NnLVG\nhoj6uJ2MXEDLd3+Va4Z2s5w4DS0jS4SduHLCRWj3naPMushjYFt7labTwbZ9\nUWzdVY2Oh8r/P6ufTCo+tXwps8A2sIsFBWmQZi0JLGXiHyZSw66ZJYORJgJZ\nbYZt\r\n=Uobx\r\n-----END PGP SIGNATURE-----\r\n","size":24487},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.54_1643252549070_0.931715851541602"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-27T03:02:58.320Z"},"1.3.137":{"name":"electron-to-chromium","version":"1.3.137","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.112.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7fe9a26a1b46a2aeb59e4380f76af38626b1dcae","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.137","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ba7c88024984c038a5c5c434529aabcea7b42944","size":5702,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.137.tgz","integrity":"sha512-kGi32g42a8vS/WnYE7ELJyejRT7hbr3UeOOu0WeuYuQ29gCpg9Lrf6RdcTQVXSt/v0bjCfnlb/EWOOsiKpTmkw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.137_1558627359315_0.017999387309101778"},"_hasShrinkwrap":false,"publish_time":1558627359502,"_cnpm_publish_time":1558627359502,"_cnpmcore_publish_time":"2021-12-15T21:12:49.706Z"},"1.3.136":{"name":"electron-to-chromium","version":"1.3.136","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.110.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e821022970fb76bbfee06a7dbdf2b6fef6903dd2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.136","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"758a156109077536780cfa8207b1aeaa99843e33","size":5699,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.136.tgz","integrity":"sha512-xHkYkbEi4kI+2w5v6yBGCQTRXL7N0PWscygTFZu/1bArnPSo2WR9xjdw4m06RR4J5PncrWJcuOVv+MAG2mK5JQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.136_1558483350645_0.5641254131102988"},"_hasShrinkwrap":false,"publish_time":1558483350799,"_cnpm_publish_time":1558483350799,"_cnpmcore_publish_time":"2021-12-15T21:12:49.981Z"},"1.3.135":{"name":"electron-to-chromium","version":"1.3.135","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.109.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3961bafa5b7336b30ab2c6e867a245785572e319","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.135","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f5799b95f2bcd8de17cde47d63392d83a4477041","size":5671,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.135.tgz","integrity":"sha512-xXLNstRdVsisPF3pL3H9TVZo2XkMILfqtD6RiWIUmDK2sFX1Bjwqmd8LBp0Kuo2FgKO63JXPoEVGm8WyYdwP0Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.135_1558065752848_0.02375729700899054"},"_hasShrinkwrap":false,"publish_time":1558065752998,"_cnpm_publish_time":1558065752998,"_cnpmcore_publish_time":"2021-12-15T21:12:50.211Z"},"1.3.134":{"name":"electron-to-chromium","version":"1.3.134","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.107.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dbc562dbeb0102d30280ec1e431578daadb37d7d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.134","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"550222bddac43c6bd6c445c3543a0fe8a615021d","size":5664,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.134.tgz","integrity":"sha512-C3uK2SrtWg/gSWaluLHWSHjyebVZCe4ZC0NVgTAoTq8tCR9FareRK5T7R7AS/nPZShtlEcjVMX1kQ8wi4nU68w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.134_1557878555279_0.18992795212870672"},"_hasShrinkwrap":false,"publish_time":1557878555386,"_cnpm_publish_time":1557878555386,"_cnpmcore_publish_time":"2021-12-15T21:12:50.434Z"},"1.3.133":{"name":"electron-to-chromium","version":"1.3.133","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.105.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1562886b9d6962e1992c395d493385692368bad1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.133","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c47639c19b91feee3e22fad69f5556142007008c","size":5648,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.133.tgz","integrity":"sha512-lyoC8aoqbbDqsprb6aPdt9n3DpOZZzdz/T4IZKsR0/dkZIxnJVUjjcpOSwA66jPRIOyDAamCTAUqweU05kKNSg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.133_1557302554084_0.9826655701794962"},"_hasShrinkwrap":false,"publish_time":1557302554299,"_cnpm_publish_time":1557302554299,"_cnpmcore_publish_time":"2021-12-15T21:12:50.683Z"},"1.3.132":{"name":"electron-to-chromium","version":"1.3.132","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.103.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"513fc7ff902f707091b3d1959624a8766c787b47","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.132","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"56e15c6d6fe7766f16f3669b992dd32d97ce72d9","size":5637,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.132.tgz","integrity":"sha512-lDt2+2BAJ8w5NrbC2kTMrLMqW4ttC1re2Z1sayHOy9mW6Pzk1fLCbnnx5L4BzNegFPxbBPwnp0/vQ+J2ybJaAg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.132_1557288153791_0.6399873240044227"},"_hasShrinkwrap":false,"publish_time":1557288153899,"_cnpm_publish_time":1557288153899,"_cnpmcore_publish_time":"2021-12-15T21:12:50.869Z"},"1.3.131":{"name":"electron-to-chromium","version":"1.3.131","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.102.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e56be837637c1dddc41fe4482062ec9e259d3c80","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.131","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"205a0b7a276b3f56bc056f19178909243054252a","size":5638,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.131.tgz","integrity":"sha512-NSO4jLeyGLWrT4mzzfYX8vt1MYCoMI5LxSYAjt0H9+LF/14JyiKJSyyjA6AJTxflZlEM5v3QU33F0ohbPMCAPg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.131_1556956953646_0.670454300690521"},"_hasShrinkwrap":false,"publish_time":1556956953763,"_cnpm_publish_time":1556956953763,"_cnpmcore_publish_time":"2021-12-15T21:12:51.080Z"},"1.3.130":{"name":"electron-to-chromium","version":"1.3.130","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.101.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"508ec374d402403fee8973cb870d96cd3d336406","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.130","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"27f84e823bd80a5090e2baeca4fefbaf476cf7af","size":5626,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.130.tgz","integrity":"sha512-UY2DI+gsnqGtQJqO8wXN0DnpJY+29FwJafACj0h18ZShn5besKnrRq6+lXWUbKzdxw92QQcnTqRLgNByOKXcUg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.130_1556856151891_0.4946606187249172"},"_hasShrinkwrap":false,"publish_time":1556856152016,"_cnpm_publish_time":1556856152016,"_cnpmcore_publish_time":"2021-12-15T21:12:51.277Z"},"1.3.127":{"name":"electron-to-chromium","version":"1.3.127","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.98.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"25c324bcb4df4837832fea4ce3bf3f2e3c831036","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.127","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9b34d3d63ee0f3747967205b953b25fe7feb0e10","size":5578,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.127.tgz","integrity":"sha512-1o25iFRf/dbgauTWalEzmD1EmRN3a2CzP/K7UVpYLEBduk96LF0FyUdCcf4Ry2mAWJ1VxyblFjC93q6qlLwA2A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.127_1556164961140_0.4872496302971161"},"_hasShrinkwrap":false,"publish_time":1556164961283,"_cnpm_publish_time":1556164961283,"_cnpmcore_publish_time":"2021-12-15T21:12:52.073Z"},"1.3.115":{"name":"electron-to-chromium","version":"1.3.115","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.80.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"279d0ca0dd2f4f2b6d8bb874a38e2884a5507666","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.115","_npmVersion":"6.4.1","_nodeVersion":"10.15.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"fdaa56c19b9f7386dbf29abc1cc632ff5468ff3b","size":5459,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.115.tgz","integrity":"sha512-mN2qeapQWdi2B9uddxTZ4nl80y46hbyKY5Wt9Yjih+QZFQLdaujEDK4qJky35WhyxMzHF3ZY41Lgjd2BPDuBhg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.115_1552348950860_0.7630135943891796"},"_hasShrinkwrap":false,"publish_time":1552348951087,"_cnpm_publish_time":1552348951087,"_cnpmcore_publish_time":"2021-12-15T21:12:54.545Z"},"1.3.114":{"name":"electron-to-chromium","version":"1.3.114","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.79.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4d436377a78cc158d0de7f65cb283472356fac84","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.114","_npmVersion":"6.4.1","_nodeVersion":"10.15.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1862887589db93f832057c81878c56c404960aa6","size":5444,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.114.tgz","integrity":"sha512-EQEFDVId4dqTrV9wvDmu/Po8Re9nN1sJm9KZECKRf3HC39DUYAEHQ8s7s9HsnhO9iFwl/Gpke9dvm6VwQTss5w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.114_1552295625678_0.084479601259148"},"_hasShrinkwrap":false,"publish_time":1552295625779,"_cnpm_publish_time":1552295625779,"_cnpmcore_publish_time":"2021-12-15T21:12:54.742Z"},"1.3.109":{"name":"electron-to-chromium","version":"1.3.109","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a4dcf5d717700a1351a656c75fc7565b88b84264","_id":"electron-to-chromium@1.3.109","_shasum":"ee04a55a5157a5580a5ea88e526b02c84a3a7bc8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ee04a55a5157a5580a5ea88e526b02c84a3a7bc8","size":5299,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.109.tgz","integrity":"sha512-1qhgVZD9KIULMyeBkbjU/dWmm30zpPUfdWZfVO3nPhbtqMHJqHr4Ua5wBcWtAymVFrUCuAJxjMF1OhG+bR21Ow=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.109_1548795752221_0.4232368624332461"},"_hasShrinkwrap":false,"publish_time":1548795752375,"_cnpm_publish_time":1548795752375,"_cnpmcore_publish_time":"2021-12-15T21:12:55.869Z"},"1.3.104":{"name":"electron-to-chromium","version":"1.3.104","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6d520f3d0bdb889768beb9eef26c7aac2edc990c","_id":"electron-to-chromium@1.3.104","_shasum":"d8444ed1ca1c5159c6537d58bf2d054e32fee70d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d8444ed1ca1c5159c6537d58bf2d054e32fee70d","size":5237,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.104.tgz","integrity":"sha512-ReDDCq4UFLVroskdyt4JEwKq+3SatPeUjFlhakdkUoaQMRXOh+XIS4aolnb4D31P9Po9C3CXyZk3fAnNT5XK3Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.104_1548176555862_0.4987274957296246"},"_hasShrinkwrap":false,"publish_time":1548176556053,"_cnpm_publish_time":1548176556053,"_cnpmcore_publish_time":"2021-12-15T21:12:57.283Z"},"1.3.101":{"name":"electron-to-chromium","version":"1.3.101","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6c10c62740a1557fd0c01c843c346ba8117079e5","_id":"electron-to-chromium@1.3.101","_shasum":"6dfdba9fd71db9adef904c1bb36e0b31c39f899d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6dfdba9fd71db9adef904c1bb36e0b31c39f899d","size":5220,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.101.tgz","integrity":"sha512-WiqTxlFFzJP1CbG3XFWfEhs2390qKvx92PQGGqAhin2pIR1mqZjR5zv+aQmloU/kutDN9UMq3yx8uCAIRS0Eow=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.101_1547240544404_0.49448267352667696"},"_hasShrinkwrap":false,"publish_time":1547240545776,"_cnpm_publish_time":1547240545776,"_cnpmcore_publish_time":"2021-12-15T21:12:58.286Z"},"1.3.98":{"name":"electron-to-chromium","version":"1.3.98","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"9c30b40e6f851a2da78bfa24ee20cf76b3c8b009","_id":"electron-to-chromium@1.3.98","_shasum":"f200bdac84b1110d7d9904f34f4fc6d5573a8a9c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f200bdac84b1110d7d9904f34f4fc6d5573a8a9c","size":5179,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.98.tgz","integrity":"sha512-WIZdNuvE3dFr6kkPgv4d/cfswNZD6XbeLBM8baOIQTsnbf4xWrVEaLvp7oNnbnMWWXDqq7Tbv+H5JfciLTJm4Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.98_1546650143109_0.13233183680017757"},"_hasShrinkwrap":false,"publish_time":1546650143323,"_cnpm_publish_time":1546650143323,"_cnpmcore_publish_time":"2021-12-15T21:12:58.909Z"},"1.3.83":{"name":"electron-to-chromium","version":"1.3.83","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"41272f67099a7bd97167c26b80c943b3e3e403ca","_id":"electron-to-chromium@1.3.83","_shasum":"74584eb0972bb6777811c5d68d988c722f5e6666","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"74584eb0972bb6777811c5d68d988c722f5e6666","size":5055,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.83.tgz","integrity":"sha512-DqJoDarxq50dcHsOOlMLNoy+qQitlMNbYb6wwbE0oUw2veHdRkpNrhmngiUYKMErdJ8SJ48rpJsZTQgy5SoEAA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.83_1541044943039_0.3580842162378597"},"_hasShrinkwrap":false,"publish_time":1541044943219,"_cnpm_publish_time":1541044943219,"_cnpmcore_publish_time":"2021-12-15T21:13:02.681Z"},"1.3.82":{"name":"electron-to-chromium","version":"1.3.82","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"ce5f7bf4d2c0cffa148de38499a1b602003cb6d7","_id":"electron-to-chromium@1.3.82","_shasum":"7d13ae4437d2a783de3f4efba96b186c540b67b1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7d13ae4437d2a783de3f4efba96b186c540b67b1","size":5047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.82.tgz","integrity":"sha512-NI4nB2IWGcU4JVT1AE8kBb/dFor4zjLHMLsOROPahppeHrR0FG5uslxMmkp/thO1MvPjM2xhlKoY29/I60s0ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.82_1540425744095_0.4536526363123916"},"_hasShrinkwrap":false,"publish_time":1540425744235,"_cnpm_publish_time":1540425744235,"_cnpmcore_publish_time":"2021-12-15T21:13:02.995Z"},"1.4.19":{"name":"electron-to-chromium","version":"1.4.19","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.889.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8fc1657f28b1422b15ddc05c9e47b0f112258a7e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.19","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-TeAjwsC/vhvxEtX/xN1JQUMkl+UrwKXlB4rwLyuLYVuBuRtqJJrU4Jy5pCVihMQg4m1ceZ3MEJ0yYuxHj8vC+w==","shasum":"b02bfdc6a5f1c683849a462cd54258288c087433","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.19.tgz","fileCount":13,"unpackedSize":151237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhujvFCRA9TVsSAnZWagAAXd0P+wawY3L5gL2IHXkb40cl\nQ2wnmiwUCSecDMnfkzK6LgjAp+3YZifkhlnq1+VO5XcreII9tbmZ9+GvG9+M\n42IK7k2aTTG2rWKbZgyaWoiZVIGzJcn/nLB9L//1oozjWYVxY21zJ5UlcUOu\nzeN73+akhp6mX9ruLq9KJHvIzFt8UI7jiPOYl4D837zzQZbPvOgNxIE45ijz\nPEONzll5glAtm046D5KnTvh9MYuoaHOMmrVGYUPnVZ9w9Ng7Ikx1cFFW+iZT\nP3m5Y4SUFpwfsrQP5C1aL53b3HyDcbWBdvpCAVa3IkrzGr8sG718p8WUty1z\nlzsTpNDQl5rbAIQG6LEoHkHAaM3zhWNQYKpBSHw8zep+rhwQE1z6U0sr4XyC\nbYS8ocoSdmNbxxeDke2efq+m99Mu1bWwzMOUCmEiqJubCPBDNob0jjy+ictu\njnicEnhKiptkD+sPnQuqkrZZz3qoMPM3fvz/2i8avSNtOZ7GkztGF397mHNr\n8ZltiTJP62WJa4fAhMw6AFAzzl5SO6N8gFE9/Jro7pDza2aTEvRGk6BgNVwF\nowGVE7MMEBs27z2bSpjYQF31Z/bO4UybrL75DOsa038GkTRw2bRdRNLlhleZ\n8bGU+Cm7giU7cIk1Yxcx9njYv4dGydnL2uKq2araDhFP2Wyst0IauGcvULBA\n3ump\r\n=f6CE\r\n-----END PGP SIGNATURE-----\r\n","size":23809,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.19_1639594948864_0.22575203593470894"},"_hasShrinkwrap":false,"publish_time":1639594949047,"_cnpm_publish_time":1639594949047,"_cnpmcore_publish_time":"2021-12-15T21:08:50.772Z"},"1.4.18":{"name":"electron-to-chromium","version":"1.4.18","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.888.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fb6df6449c002b961c28d22693d242eeed94126d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.18","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-i7nKjGGBE1+YUIbfLObA1EZPmN7J1ITEllbhusDk+KIk6V6gUxN9PFe36v+Sd+8Cg0k3cgUv9lQhQZalr8rggw==","shasum":"2fb282213937986a20a653315963070e8321b3f3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.18.tgz","fileCount":13,"unpackedSize":151099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuOpGCRA9TVsSAnZWagAA/qYP/RHTtfEVh0UjqczopQ+W\nWJu8eHlUdckHnWqo9UuzKxLC27rOZNJquswvuZT4Aemvr8/rNCvCWUdVLyQd\nO5lnXU9XbTs4MYzMeSONZ9IgjfNYV3Dzw+hWZ0vOKmPldwE2ld8cbFWb6wxC\nBeYWXs1PV9CQy/mfo47md49DJ9cdzpHXNt52jWbwi9DHRC3/Z8Q45JPatfDK\nA7pEhJZcqB2WqOOiyGI6yJDyliu/SaOZUEhz1lLvynPeLCLF853ERXPTVbX/\n+iqKIQzCKwsOyvPqkytnXbqoDSFx2JqQA2RC/tSm2iSKHGj2vfxVgaT+o4t0\ncSeeZNavbwZ3P27cLjHPJ0PATROvwhHxtC4Z8T6avBl4Se6aAPfiWzFw0u6h\nwwU2b5Ya3tTQP4T3tzhi7X50CDuWUuTQgxQTtT5ChW7Fa/b21zLln+aPrWpq\nYPGVZRC5FCd8Ow3UzCPkqbw2zp8TDI1ai5N1tASGpcbSm/QY0sxS+RWCLRde\nnKskOvQCA5+eE9uQ3jC1s0D7GVNmCJTiZ/v4Rj3QNuN5lIIoR6ZNdxpQHLPe\nnsM0e0GnBrDlJ9g0aLqAlDLp/h8Sl/sXoMTM7036mhHWH1L97tm/c7nR7K97\nCQ8eCuLL83JsFlBArBl5HHluMDfvUIaAVOYXxMfO2aRpVEBlR0W8lyB+ecxN\nRlw8\r\n=X4h+\r\n-----END PGP SIGNATURE-----\r\n","size":23790,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.18_1639508550585_0.8472846392984585"},"_hasShrinkwrap":false,"publish_time":1639508550774,"_cnpm_publish_time":1639508550774,"_cnpmcore_publish_time":"2021-12-15T21:08:51.148Z"},"1.4.17":{"name":"electron-to-chromium","version":"1.4.17","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.886.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6c6cb8cee8a76bbd07080445ce0ec9ee39f6d64d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.17","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-zhk1MravPtq/KBhmGB7TLBILmXTgRG9TFSI3qS3DbgyfHzIl72iiTE37r/BHIbPCJJlWIo5rySyxiH4vWhu2ZA==","shasum":"16ec40f61005582d5d41fac08400a254dccfb85f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.17.tgz","fileCount":13,"unpackedSize":150961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJht5jCCRA9TVsSAnZWagAANw8P/2OH3gUN2rHTgyD2bmMo\nKNNV3CCRzGNgVrGGyJnWxS0lBJQ4SjHAnva9iJSfYcUH6JqWYfbnQAzrBeOO\nBai8eg4SNp3IjojP5ClRJzi1r20OW2K7ipzxB5VHDYw14HQrNCACww94zKha\nRdulYlqTHpCn4kepYwHpn3RzdtVxUaePbEz4FkaaNtszeC6nej+5Bi130azi\nb4KfMDRIHabZX6zFe/VEo0d2LI4gQkW/ycklBChhA7B/IQTF+8O3Lu5OiNH8\nrMMQaWddjExgzjhKJYscx0Xv/J5UHjFgyJc0SSBOHBcFcHTxYc9AR2V7/Wqo\nCIBBXYF893ULlO6Hae8G9ng3Hmvb+Al1Ieiq0q8Nfxb3VU8g+UIzfJV8maKw\n+di64Ez+gho2L9nKsg71DgC8By4DPFI+iMK1nmi4EF8y1edNm9dqEMdpf69v\nWB5+hUAeBTOCi7bVXZ0uAL4Eu2dP0+CTO4GEpGYfGI36mKR2kps57xGW97+E\nDGlnAb6UZD09R6+5uDkgzaO1R5jaZveycgmrYW5RbbhulPm4ds5KEc6H6/2F\nLObYxTvaTl5dve2pcfxeTHlKhTLugI3vc0U4ZMimSoYbIZp5DI5hHr4hJnRe\nKokNn6lXxKLUYJ4g2R9ZIsJeR1N8hUN1tqdW1S735p/SZePz7t7YI0N86IDE\nkOuh\r\n=bINh\r\n-----END PGP SIGNATURE-----\r\n","size":23781,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.17_1639422146662_0.8273569949755548"},"_hasShrinkwrap":false,"publish_time":1639422146845,"_cnpm_publish_time":1639422146845,"_cnpmcore_publish_time":"2021-12-15T21:08:51.424Z"},"1.4.16":{"name":"electron-to-chromium","version":"1.4.16","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.885.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"031a3a1317144f341432f621f47594f43d6a96b2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.16","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-BQb7FgYwnu6haWLU63/CdVW+9xhmHls3RCQUFiV4lvw3wimEHTVcUk2hkuZo76QhR8nnDdfZE7evJIZqijwPdA==","shasum":"38ddecc616385e6f101359d1b978c802664157d2","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.16.tgz","fileCount":13,"unpackedSize":150823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs6RHCRA9TVsSAnZWagAAEogP/0cUa5DntxpsLIOJBByd\nKQz8bR9iIOeqMGvMm+HHdwKtnekQ226dLGxEiTxiajhAOQ+X9Kq7iJdCjnKC\n4cQgn42Efj5rY75DytwPVbMnxOfSZ5DbLKG8TovBs8RC4fBflnAlmj2uuJaD\nFRTEjZXnQajwkngxCMhYhhU3sxsRSfn2C4EHE/7W6aJJIJDEzcYEWoVmDPH0\niNJSwigHpi1TrgTVpB0Jhciui3En6agpf2BzNEZRgUYsFWog8nuyDL2u7kk5\nuRYP7A7EbXCltqrsRg2PuKkYTV+EO2heybqDWQenXhffmmxyvLqvnoVgx8Cx\n1lmFw2giA6/5yieVuTFP8GEJtXk7h8QAxVKe1kQIfMJVVIAjcRD4sqQdbPqA\nz3wEHZQrRoPOB1VyqMc7Ua+zAWoxdXLE5ooKkJqKzw2GFbAih1ojrWmBT4gP\ndzXVWyOo5E23KO2KcZw8mAPVQZc5yEQ0cTDYwDZx3wrmPCgcLz+njsvIKK85\nkL2EIPshJrCAz8wypgAlXJ1WnsTIjdvT/Q1MLpAdSN8aREBLfUBGV4Dr0PCe\no8GQ2f3CEX2tjHoM6NFhr/9o4FvqBHMjsQ37mGeIkwogVrP8bj9e9mZtIwRF\nVrQVJdENEBfmenIBsT8NtKN3sCfOyj07rFQr1ubkyoIyxDlaU5HNpODQy4CE\nPp5j\r\n=+n+i\r\n-----END PGP SIGNATURE-----\r\n","size":23752,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.16_1639162950943_0.15896816304944905"},"_hasShrinkwrap":false,"publish_time":1639162951370,"_cnpm_publish_time":1639162951370,"_cnpmcore_publish_time":"2021-12-15T21:08:52.051Z"},"1.4.15":{"name":"electron-to-chromium","version":"1.4.15","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.884.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2d79a86db024574b47d694dd1a1b5c2087526cec","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.15","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-WDw2IUL3k4QpbzInV3JZK+Zd1NjWJPDZ28oUSchWb/kf6AVj7/niaAlgcJlvojFa1d7pJSyQ/KSZsEtq5W7aGQ==","shasum":"4bd144d9d13f8b375c65e1a593e7f4a90bd01b90","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.15.tgz","fileCount":13,"unpackedSize":150685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhslLICRA9TVsSAnZWagAAL1wP/jaL1tN8Ir//2cJiiOoP\n7r8NjRnXwDX7gQkRPspT5ybijH4KGamqjymgM1T9vlXE51kQqQWVn2rRdgdU\nkMTwWItQ8crWlJBYq6Q5YWlSjV52jtOibGdKL4rAiPPSJvQRwjPEarj4MJyi\n5JhLNBi2a9orZ6g/k+POwIXHGymQRyhzXCRJ3Cpj4qsJmtJQfoRm9DB3iSCP\ng8Obu1vk90xtJKyAnmHFR2B2DniwwDdfOheN3O6o5xc6IlnUzd2N1FGguKxf\n/XIWghypWGRl2I9YaJZppU2W7zX/LUdigx475NixnPEIFklFiA/lSg8oQyhe\nmXHk/iWD9HAyTLvlcUm6SZlVAsaxBaSBlmDJpqrDFPq7QqPYtvjds2c1+Ps3\n1/yiR6fIGUbFiJKCvkS4o5UZgfewnbu2cEXkkL1cuvFHIhWBv8aSNvUGtO6G\n/rBaxSf4ZZs87JmxLXMf38NgDGgmXVbPovsmVN9gyzQ7NmkuV0NJ65A9+ZO8\nXuPMuOWfTT1i6yUawJ8BbOdrw/d3DUyxWP30Dghckvo78RuNWkHxY6XSf0gf\nkAhZ3YQlazkfzPgd9ZoYTET1RFo+Y9cJIW3cKHdf67keEgFC0plpQFH8uhti\nNWrBG8EK8loZePNC9HWRZidPw6ichgdy60wQftyI/4HMETmKeid7eGZD5wPT\np/V/\r\n=JWmp\r\n-----END PGP SIGNATURE-----\r\n","size":23743,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.15_1639076552623_0.09979837872820996"},"_hasShrinkwrap":false,"publish_time":1639076552850,"_cnpm_publish_time":1639076552850,"_cnpmcore_publish_time":"2021-12-15T21:08:52.309Z"},"1.4.14":{"name":"electron-to-chromium","version":"1.4.14","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.883.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"27d1bef9fd4b757b0d14f86332bac66dbd013d50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.14","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-RsGkAN9JEAYMObS72kzUsPPcPGMqX1rBqGuXi9aa4TBKLzICoLf+DAAtd0fVFzrniJqYzpby47gthCUoObfs0Q==","shasum":"b0aa41fbfbf2eff8c2c6f7a871c03075250f8956","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.14.tgz","fileCount":13,"unpackedSize":150547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsQFGCRA9TVsSAnZWagAA2iwQAJUed7JYB+xLNRJAcy1t\nU03hwkppTEVQwW5WBbH0yUhAtGetB3CSt4TuqZFTR35PlxtYYgUUUVhiRpHP\neEKvRhJrwU9wCWGNJ8qh0Hixvtgj2wmhyMd8eGVuG5Ts62lZeXL7TL9lt8zS\ndcKLYyLNC8HyKUWajsE/ny8W2LRv8eQaihvaUgY9sXxiLLPjPiAT99O6FY28\nd/6OzHWdjTKnNZCUsXbAD2/BhgjSt3FIGzeDIBnkVaVw0iKcFsqxSEsrdB3B\n+VbX2tfLJAZmOmNA3he2eLm2XtQiFtoKPReuUraiFQH7aZq5JJTrDRw9v2rV\nqIP0urjhobvAUQ+JVx0rG07aKUHOmlN+OVsftRFBmRUR8HzRC29fSHg3wUxD\nWnBpqdZQMWynd9A7t3zaFzkZ2dyF86yvcwljhQXXPBvalryRHie/pikXiaXC\ngP7R4ksb+ij005wh2n12EYgTl2fFAO4CSWFP7lpX/g92jyARW/2WdAx9mnzi\neItAK3kyvCDzlc2LVNFBuAjhzWxSNKqkoPM0FXMTcI6bL4KjPqlD8/XoebBE\n+Ilsko506NIfsiRg0gVZm9Qyyei2+s3QpYPNJ2TaVlbDGHzuLWhPQqF0Rln6\nJKiph98CRM6/sbJO2jtinmnOqk8DPXSLksrrUgqynCY7oTnaOYX2qS1h2XR7\nSuiy\r\n=EfHA\r\n-----END PGP SIGNATURE-----\r\n","size":23737,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.14_1638990150650_0.7005974083519473"},"_hasShrinkwrap":false,"publish_time":1638990150811,"_cnpm_publish_time":1638990150811,"_cnpmcore_publish_time":"2021-12-15T21:08:52.499Z"},"1.4.13":{"name":"electron-to-chromium","version":"1.4.13","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.882.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"67e823aba819478451e1df514722b1ee9ed92d96","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.13","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-ih5tIhzEuf78pBY70FXLo+Pw73R5MPPPcXb4CGBMJaCQt/qo/IGIesKXmswpemVCKSE2Bulr5FslUv7gAWJoOw==","shasum":"6b8a21a71c6f30b4a4def54d3afe94e0ddbc58b3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.13.tgz","fileCount":13,"unpackedSize":150409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsFiICRA9TVsSAnZWagAAJUMP+wcsqsfluOHFLPEOTfO8\ni1nlaqSYyNa//mVh8B48a9xg2CYfLYtvRKd9GYwpYHBxC3KXulnoM2O5bcJD\n5rai/HlQnUNg2I8s4pnuGqTJ4TebIOdXVzDacQ6a41fWs5DOx+Yq2O8dJvaK\nttC1lRHzW6ZAtZWbDCE08tCZ3bLVjTjPXjiQ1rKRtfJdxrBxOJuRibznphl9\nkMKtS7uHLA3i5Tjt/Z+2KAc7jFMHF8yEKMKxl5di+xaI90PWzc9/dP+NLPff\nl+SZdcxen2omkGFed8ma1qM8jxmORi9HAElrsUJKgpMZ5HmrYR0lYz4rhHJX\na92qXj7pHFSruNsaK1srU09sG1z0WNxZpM8IFJFIoHd0C5APfTd4Zy0JbsOx\ne43uLcKHaCLZk9H2MvrTbbLW+/lQM9rG0HMuTBNVOHJDUas47kAouDtf6elw\nSvBmr0xh0vP6N0O4eATFZJIIcDTByNmJyV4lG67hbxIsdPypIFHxixE0KyLG\n0dNKuZwbNmuY0u3cfz4e8Cf7/TJTzJgUVm1fJUmrernBPOMf8lG5xf8xavwK\nkTvWsPuYRS9HXIPsnob9AYdecjHyukdRYkMDUxK3y77oE5bc1Kq7DYmLOl/V\ngsjV6oxDls02eoQyHYmlifYIwAf+wAvSVTTuA0C7dWNHElqIxldhYkgZAZwY\np8oi\r\n=/79Q\r\n-----END PGP SIGNATURE-----\r\n","size":23720,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.13_1638946952533_0.5645229053955756"},"_hasShrinkwrap":false,"publish_time":1638946952699,"_cnpm_publish_time":1638946952699,"_cnpmcore_publish_time":"2021-12-15T21:08:52.766Z"},"1.4.12":{"name":"electron-to-chromium","version":"1.4.12","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.881.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c8b006e4fb7d57b904602c10ec21bce36a5d24e1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.12","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==","shasum":"5f73d1278c6205fc41d7a0ebd75563046b77c5d8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.12.tgz","fileCount":13,"unpackedSize":150271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrl5GCRA9TVsSAnZWagAAqG0P+wWwIL3c/jMSCJ8Mdsup\nDo90TWekSy+WNnz/VMzjaiiXZiu5TWyulrSz57IPB2mMXo9kOhYcjD/D6Rym\nil6ivvck2yM+ZAEfJHKuccYf117FcnFldaeuDOqfOYPpnPWWf/5Ncs9PJ0ce\nbWXciC7z3bcrQjLK4wmp8+ZETxE4jZ8gFYucmjTs9sVGNYBvvGkCVZ9AJKEt\nLZul+/pHtWvKhDc6hAf/pgorVFJJsr2MQJjjkNNzDcR2av1ItFeLTH5Hv8iO\nL7tEJx8TxXHWQjvzB5/RpJPwanXzDt8Sclsu7uUOKpwfjITaUGdrJDhHVM7i\nzixpUW926KRaW+JKaiytkc+4ke8c+ZvZSGmbxZpRrnOUdmiMS3cjLbHE5ZCo\nR89QKGaJfucNYmdBVDW6B0hXnBlqEdKCT18o2z+24ZdQBCLefBMVHDpmJ9Lj\nMbnceIG09ZhnqQ5dLiiTq6+b5HVkw9MU3bJ4a4Km5rG2XzcXaA/FYbIp1H0I\nm3QrC6o1ln5PcZbl1IX7eBN7uhJjdSsNFfD9gTdHfJT+ndFCw8azDmNuYUfS\nbqHFHpszv/DYpCGd8sXfWlP/h6ukaak0w0HVWIG7olqpbWm+8Z7AyveKbdXE\n+Mz9fhOgd7G5oQomj8iTIBy6WE027HWp85JuZXjEbjTPBg90XiZVQ/4Ylj5Q\nonZO\r\n=JFUo\r\n-----END PGP SIGNATURE-----\r\n","size":23712,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.12_1638817350565_0.9062377778389861"},"_hasShrinkwrap":false,"publish_time":1638817350766,"_cnpm_publish_time":1638817350766,"_cnpmcore_publish_time":"2021-12-15T21:08:52.967Z"},"1.4.11":{"name":"electron-to-chromium","version":"1.4.11","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.880.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1de36de23a94e10432e2c09ff66ac408b0a6de42","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.11","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-2OhsaYgsWGhWjx2et8kaUcdktPbBGjKM2X0BReUCKcSCPttEY+hz2zie820JLbttU8jwL92+JJysWwkut3wZgA==","shasum":"303c9deebbe90c68bf5c2c81a88a3bf4522c8810","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.11.tgz","fileCount":13,"unpackedSize":150133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqmnECRA9TVsSAnZWagAAdfQP/i9qPkdplPtpLrbiwCP8\nHixodwbjhzKIP904OoTvWoV8p5JnP5xy8TWEJ8mp1XG2Knp1IWVpUMuQ9TfO\nNJYibRQN+MlylabQU+t6PbH+9kqvie4Dv0SHqQb2v33xKqcF2ut48aWYEXqf\nQDet/6+H152UxT6MFwyhd+LEDeO8rDZlwXlpGdF7RkeS8+bxpyNmAY9v/1K5\nYAHs4eI8a4ocYulM5iWIpg7wkuUEqQsZsKNXekD7ZxmYW+cPn+cL3vcr0Tnc\nLzXLMbyMvgkJZBiKv0uY2azx4cf0Ks1EXCHozc+KwZa3YZVW8GKrIMh2JuCW\nZSZZynQJ60ubmn9zADKZSnAdinr9/Nk7UutfMgWAKuiF1navUu2itMKDIlYC\nieZgK/j5m07tNNLFT7WfDNgT4+2FrZ/CTqce99xHHxRdH+BDHS1KxIDe37J+\nMqXRqiIwC454Dkou+ZzXNxTjez4WHUKgjJ5EgHXJeEb9yJHZdmiG5AXWd/y5\nn+gFq5vlu4Nz9WJWwxgPx3k8v4xGyHGX44e4cAx+oE1y/E8qI3PUaAEilczM\nSUZSwhMK7Mgjs1Dru9gK+T3SEKMQEUDN0s42wNLOHy7yyOxNGeK6bKdpEjDI\nRvVuX2khIMXoNGJaeuAI0xMl7BYAweePzT62iMdjR5AS7IrQHBaFhWCOd5cP\nHf9P\r\n=wX8c\r\n-----END PGP SIGNATURE-----\r\n","size":23697,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.11_1638558148683_0.857125706809897"},"_hasShrinkwrap":false,"publish_time":1638558148902,"_cnpm_publish_time":1638558148902,"_cnpmcore_publish_time":"2021-12-15T21:08:53.208Z"},"1.4.10":{"name":"electron-to-chromium","version":"1.4.10","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.879.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1641539d7cb9e46f90da77d384577a83ce807648","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.10","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-tFgA40Iq2oy4k2PnZrLJowbgpij+lD6ZLxkw8Ht1NKTYyN8dvSvC5xlo8X0WW2jqhKSzITrbr5mpB4/AZ/8OUA==","shasum":"5f44ae6f6725b1949d6e8d34352f80d4c1880734","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.10.tgz","fileCount":13,"unpackedSize":149995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqcEFCRA9TVsSAnZWagAAEF8P/3NPboGf9vHQn7DFXr2H\n3skD9PwELxpn1SceY4l7Ca0J6/1Q1neiKuucACOGAqnZt9ePyzYNcNmnMjmV\nIukeNzhgseH0UHhbLorquDVZgx4X9CzYynRu0obWd4I9c4CoBhCvMfYwJ4gZ\n0/XLyW/fIrsyzqKkTQxHrBktwxOvjs1G7uLABjLrAAL991qnoxjgQGX1cljf\nBPx558QVJxl3VYiYkHZvEThaFv6rtD8WrxZFrm4sBXoFPgt5mw/6R/7tqiXO\nz49OCfD2qM8YZme67EJ+5Rx1hZhTmjnjfW1ZgH1Hbm0YYIzMOr4nZVGj+OuB\nkwUHnsa7Ar9zMCL6R7wpsc8MtH3GEV+7r8ml1FlUEoN95PW/Eu+CCAagDO1K\n4FQlAbU2QkDuo/1AERQxEwWcBzmBP5MvEn5nDZwHpkWn8wXKN/yGgAfnLym+\nupLgFmdhKsU1IiFibE0ewf2rKruepCeZvT5L6jO7JyAuU6jtHWjZ1vkKT/kg\nWAmNMfyxhpJWAj4sgwSfUWTDEu+h+ayhMswawL9yOHnobq30PQMIpIcSnw0D\nYM5nT884JKDnlmWfnw4G/JTKg0vjBbYud8R9EKtFsaQIydMhcVfLhQT+nADg\n9C2Np+6PxQZHKte1KTBXZlvoPZLKIgdhQKYadAJRNPXiWXTogvq/JWXrfNQx\nscoz\r\n=+ycn\r\n-----END PGP SIGNATURE-----\r\n","size":23688,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.10_1638514949269_0.6046494834623024"},"_hasShrinkwrap":false,"publish_time":1638514949486,"_cnpm_publish_time":1638514949486,"_cnpmcore_publish_time":"2021-12-15T21:08:53.851Z"},"1.4.9":{"name":"electron-to-chromium","version":"1.4.9","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.878.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"30eb34ef20ded8e40321a512b755d2722a3f182c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.9","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7AyB4SiLtGJbLACXezs8BDjDbZizuoiyHTQxbcvzfi5LYWRXVSFdmPvuDjtlWQmsVSONRicZfSBj3xgft0Wvrg==","shasum":"4854fa55f94f18f5d0ad4ac49034ff6443fff5b9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.9.tgz","fileCount":13,"unpackedSize":149922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqRhGCRA9TVsSAnZWagAAVnUP/A3Ca/g1cTh1TZWrz/Bv\n9tluvdF+FYy5Z8ZS6TKuGO+H4VFWSxRWB1j8s2VRvr7eEtE0iWkQOHV9SN4T\nO3ADmcLYR/zZNcN3zYs9kvbpGA7h087Bf+SI6DrrimGVyd12ZSyEpcu2jXvx\ndpvAyntp/iasLdpQyya/0MOYx3jLb2Od28/mc814Vjq/y55va4y0UwdhQcdy\nUdFC0ImRc0taqgJJXcqvOI36sVYx6LIuSbvqrFmoXMdv39hZCGR0/Bj5vtHS\nIfaJv/nPGDRhT6dMf+5Mrz/Qob+mYCf/NwDUs+u5lz6jiR4Qb2w0J7u86NqH\n7TWcLN0OYzPb6I1jUQDHwDR+BVFDSQCKHAPZhrFO6R47XAisLLcRpj0iH8TG\nIP5O+O2rN020ioAAu7fgtPSLHZZFG3Ku3cV6FBCzh8kupGcZbYnIvSVe3uey\nh6G/dTWl9jAV0rqBbAxeHaZbxVI06Zk1Ha2285oR7+DHtr65BqKTydt+ow39\nFvRBBaqWI7urXOsDLEy9iCV7fuujN3J6ji5OXQokwcTrPGsP1VZiFlmg33Yb\nLRr0sR5t+tXZqPNiBEX1i7ChdKtnozl9gIAJAbz4AJb5b/ufCG0wslQISGr1\nHsqD1ecYPuLelxxmZkUf08TKkG5z1qRB2dcWwo2NhLDwSqkjs+eScr3gVh4L\nIwRy\r\n=39B2\r\n-----END PGP SIGNATURE-----\r\n","size":23672,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.9_1638471749983_0.7799613409248545"},"_hasShrinkwrap":false,"publish_time":1638471750110,"_cnpm_publish_time":1638471750110,"_cnpmcore_publish_time":"2021-12-15T21:08:54.037Z"},"1.4.8":{"name":"electron-to-chromium","version":"1.4.8","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.877.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"750260ed2034f0699ff4e5b36ac85fe7d641f4e2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.8","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-Cu5+dbg55+1E3ohlsa8HT0s4b8D0gBewXEGG8s5wBl8ynWv60VuvYW25GpsOeTVXpulhyU/U8JYZH+yxASSJBQ==","shasum":"e1b7752ac1a75e39b5dd90cc7e29ea08b351c484","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.8.tgz","fileCount":13,"unpackedSize":149784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhp8bECRA9TVsSAnZWagAAkFwP/A+zg+rbfs3xJgyyJmke\nSyXzeW+o7wxMhVhqFaflF851K8/bPWSft8Rp5UwThqI4qvK7rrd4f3IssKuU\nmArzrOK9o4BrLPnzDM24ATVvK4Mf/39K4V26zfA0s/NUhg1eMKqAwl+azt6/\nBxeOzIDQMseoo6UOVhU3u2a8iUWDAna5bZ+CY3C19uqeyTL27ZCNiJQdLHp9\nTcHivg3IEwvMrIrtDqGDMvDt8dPQODUZPeRU7TavlPtJxZFETUE4NgFbkX1f\niD+xIMwW0dbxeGHhdOrVmagQrH+4FSvBJcPOpbXhgPPhE4zTHltbZ5mPfG6S\neMhS8uZ4litWXfl19T3dXtJS7wJdsc20U373zOPOjcBqjq/9CwcBW0GQjyOF\nS0GjTBy+E+0k+ueyVjrFBruRaZ7VLI9bwTaEyiijpqZGm7mAYNF6QHWz6Rmq\nI7MkWEQX/kFkQW4Ganb40joHD+5z7IWAL3sNWa9l43j/lKA4ZjjvwAWynDAK\nrU6+nX1MHlUdLl25ejYy6DwyQyzC9F1dktdzNM6iNCI2cimxbIY32SCSDWRg\nmULVyFCBaf6KwAGEkP5e2IhtDt3HR3HY7F6eZAkcyZygkhZZf4ks/mYFFILo\nSymkMs6/OB8RFI+DHRpPTcunf/28THGPEPcq4uSrjnK874vkkV1BwUmIPLNV\nwgn7\r\n=8K8K\r\n-----END PGP SIGNATURE-----\r\n","size":23661,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.8_1638385348734_0.37754361881376886"},"_hasShrinkwrap":false,"publish_time":1638385348924,"_cnpm_publish_time":1638385348924,"_cnpmcore_publish_time":"2021-12-15T21:08:54.397Z"},"1.4.7":{"name":"electron-to-chromium","version":"1.4.7","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4fad0a3014e84c17225e5f5d3aeefaa4413a1231","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.7","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-UPy2MsQw1OdcbxR7fvwWZH/rXcv+V26+uvQVHx0fGa1kqRfydtfOw+NMGAvZJ63hyaH4aEBxbhSEtqbpliSNWA==","shasum":"58e0b4ec9096ee1422e4d9e83ceeb05b0cf076eb","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.7.tgz","fileCount":12,"unpackedSize":149350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpx4CCRA9TVsSAnZWagAAwz0QAID0EI0CrAyEtxc5pYQx\n7hWw4RQ6RW/Zmmob1IleC+7BC+Dur5FR02cIGYBBbfeW50zCBUteTjLx7dGh\nCStMstfM/LVAQS50aepEWLbyeubPajJFTuXhZ4dc172bFBf+xh2lxgNh5BG2\nm3AFNvz6txg32ZnYi6gMIy+aNgvaYxt8a5Ci69SmdJP6WihhQ9wlgEQXBEFJ\nZ5cDp2g9w06UuY6U1bo6w2fDYx0p+zbRHcWSbOYBRnuS6Lf3bZzZbPpjPTWy\nxncVOL/VGgyq1DBR9wPDSqNj5WgcwmSe+ZDsEi0O604qzPu90LaQc91Muwbl\ngewbnB/SuMcSjeHYfW6eaiuRqz6koGDLg3OcqYJwlNYuoJjFVzrWAlan7TGh\nQ04c0IQXKqJmmCLSRq2KzxTlNwf++4f5atgS+yMPF9jiDmXZRO5itEXFKync\nCl+ecLJRS/47BDRM+r+7uat2yssjFZJjmR1O96eNrj4G2aFUqkwlJE4iFHOm\n1s3HjcS5OSyhthkqx+mydp6wtdK7U5Anq6Nj8wM2r07vN3OofSMB9MiasQYa\nC8O8HI3nEeJAQoyFmgV2joaVFN1KOuRpBzqaWNFnrlfGrun6D3QCmmavPtDw\nCrzQB7YlZF6ucOh+TClBIBk4oudsvkrzH5rAipHW7INb0svGd7nRXWOdgAX3\nuXC1\r\n=fX5B\r\n-----END PGP SIGNATURE-----\r\n","size":22853,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.7_1638342145960_0.9774054622774435"},"_hasShrinkwrap":false,"publish_time":1638342146140,"_cnpm_publish_time":1638342146140,"_cnpmcore_publish_time":"2021-12-15T21:08:54.678Z"},"1.4.6":{"name":"electron-to-chromium","version":"1.4.6","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"983e8c33adbdc18941c8f9aa22102d9779d1fd97","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.6","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-YDZAXP0P8USm0YoyIXWijxFT3tJHbt3WwY7CTQiK3+Ad6Ai/b9N4GqfDR107jfGilAfxl7Gkhb+h0KPoKXAgqw==","shasum":"7bf0c03001bcdbd0fc57a45c6b23bc6432246ade","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.6.tgz","fileCount":12,"unpackedSize":149276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpuW/CRA9TVsSAnZWagAArXIP/0S6oTfQXV/n4Tpm9x2+\ndxmHlR4U5g51EA6jc6aNeXD1FYtDjuqoqSDw2xiXPWcghl8qO76Xe+GgTaV9\ns2cXQxJfr5x8jJYR+Vz5+m47rzODXp2sdK+Iutw36WrgZy1mBnkZ3lLO/Em2\ngq7sw3tM1nP6wBLLCZsHU+0rk32ugnR0LxUcljqgc+6OPELXqEgTpjsg8Zsh\nyts6pzbm8Jk23dnRc3G13AN6peK5gSzf5lrWpxapy4+HnecaImS3xsPg0Ll+\nrM5ladrpxUWeQWdgikIHqVYB1cfaSIvkaTjsBscl7e601Wc61vDKjWGKZlq9\n5nBMhd/aRcl8OOmyp3DJI18ltPJ47OfeYQelCBlnHbiZIF39aCMOYjKwMCy9\nUBaM+Zir106o2PQ7xd/AvBPb2AEicSvo5+0U3Q/b+YjsBvwWlsOh5SDoyeEg\nJNMj4YLgIGYqwWNiM7SlCd80kSSqeNTVHXL6G1IEI0DY+5m1SWXSrzwMpmZX\nhRYVam5hdqo4p290cYxShGUYp1xa4kmIVYmwkZfZ4wGEmv2+p7AXX3fAdKmz\nHfrXxTiO/eARt/eEi9ZTKTHNe4E952KKK1bLvLuglwbzFl2X8IvNVUIjs2k6\nlgqw8U0DAP8qNAfEgRXUGnbIA+tZjuDfhor0f6Lojdtj+89vCIuPzYdxnXQq\nxqmY\r\n=NHSp\r\n-----END PGP SIGNATURE-----\r\n","size":22844,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.6_1638327743005_0.23702048300688072"},"_hasShrinkwrap":false,"publish_time":1638327743223,"_cnpm_publish_time":1638327743223,"_cnpmcore_publish_time":"2021-12-15T21:08:54.938Z"},"1.4.5":{"name":"electron-to-chromium","version":"1.4.5","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c860bd061391bddbc32899a87ad07812c785e61e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.5","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-YKaB+t8ul5crdh6OeqT2qXdxJGI0fAYb6/X8pDIyye+c3a7ndOCk5gVeKX+ABwivCGNS56vOAif3TN0qJMpEHw==","shasum":"912e8fd1645edee2f0f212558f40916eb538b1f9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.5.tgz","fileCount":12,"unpackedSize":148922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpSO/CRA9TVsSAnZWagAA0O4P/jHkFHwlKjlk9EyfexeT\nRZyAdOTlZQG8R1iYq0ZqcYKUPvszFVumGMMbyAjbmEmc7X+amH5U664hxgyV\ny3QzOO0Q2NV1nsSAeuaBf5zCXwgJlq0KCFIVp8/UKuKFo6hE+eGZRiYq6FL1\nIzqYAmSB5UTNBg9Fy1ufmmQ0+MLDZbu6kgSXO6/AUh8X+9kRX594JMlupTJf\nOzKvP/hY4jsDtSpWPq2jxV0ERyq3db2Dneu5rFB7qWG+TY2VmX/7zv56WA3Y\nC2zSBTcHi0ZabcGFrrRah4vyLoG9eAOkOU9CB2oxzRuKjsXHriNBC3V0+9wP\nCiFQhH044EHKjHjkL8gtMC0M0vAiNBabbjTWpak8KEFPYr0ETUSF0MJRo83R\nLnZEids6sqhumOGGpYRpUiiYnZeDfWB5Rc0wWgE2b+6WkVobmjUgXnba66HH\nakVMozrN859X5p/ro+chjvdiVKJA7fAy1pk4TKTDvxNyyrvJMa3d9drUGRcU\nzIxBPhZQZWg2t8KCv0JA9KWk6VETmP37E/Sj2EjSQhJn1VoZliWzanpWrXz2\nwPTbfB8Q4VZ2M/pWTQUihvX+tsqa3PCu5d9UHoCKLc/sjl6a62d3QnB8euMT\nSSGPTSD6ZJ1AOsa/IvqYLtrUuBJCr6gHYWjSz4He3wkcD8HHd2BXaVa/s4f5\nY4nJ\r\n=I87s\r\n-----END PGP SIGNATURE-----\r\n","size":22781,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.5_1638212543294_0.22382010266161645"},"_hasShrinkwrap":false,"publish_time":1638212543437,"_cnpm_publish_time":1638212543437,"_cnpmcore_publish_time":"2021-12-15T21:08:55.176Z"},"1.4.4":{"name":"electron-to-chromium","version":"1.4.4","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"df677d9bc76a4b850aff9b97da6b174ddc34bd1f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.4","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-teHtgwcmVcL46jlFvAaqjyiTLWuMrUQO1JqV303JKB4ysXG6m8fXSFhbjal9st0r9mNskI22AraJZorb1VcLVg==","shasum":"57311918524c1a26878c330537f967804d43788a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.4.tgz","fileCount":12,"unpackedSize":148784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoS9BCRA9TVsSAnZWagAAjMIP/iW5Jeu0FUO+lPb4JsrO\n3YFMx1K+vuLwtNUA5x7U89lmnj/4TUDjiBJh+NDVqLqDe8pbkRo7HuFP0EEw\nC4g6EBb1MbTp+5bWnAtASJUjX6f5sk90+rlmbSQ6EmHmIFhqAFYkb1HX6ILb\n3WUYUtmWzvtJnQa8PTWwV5+p0/Sfw7BCeWlowNPTmC/utwFz1czD/AADz8yB\nXS125OCoNeBdDXhUCjiPNiaMGsO1o5G8SWCC+YmZ065KQFHVBNtMMlGC1kS5\nII7kWqE30R+Hpn+DRTqFT7FDBI8EIiZtI2JmU+h2Q1og3H8l5rDE2k0tlxvM\n2bp9fx69QT4n3gwlwKXnWqYACaSslOlJQ3zuE/5pX1RoqplmnvzRDpOy8DJp\nUHQHHqZK5qZvRf10il8IdTIBWpUu0xZ/bgOWAUnbSzxO9KuAK1tUymhp9Wvr\nDKgkY+XArKZrkjBNNUHL9vwiA6Qz2MOOn7YAq8Ez9yZT/OJ7A85dAHuCo1Gl\nNQ7M98uwoyqEzKyll8q/c3hASQPfFWxO1UjirgV7nBbW+yNEQby9I2GGHkKH\nYEpJ227DiZi0hqiFmGQNM9/D+Sll2maLPksNPJff6eyEFRvi4KsZKJZZGrMF\nPB5YeDiTzq8l7o0cCCIrQkrfNu8lhKSxnBrgsiETzinbUsORXzsDatJ8+9oN\nuUb8\r\n=zP8f\r\n-----END PGP SIGNATURE-----\r\n","size":22776,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.4_1637953345634_0.6447021990622637"},"_hasShrinkwrap":false,"publish_time":1637953345800,"_cnpm_publish_time":1637953345800,"_cnpmcore_publish_time":"2021-12-15T21:08:55.514Z"},"1.4.3":{"name":"electron-to-chromium","version":"1.4.3","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1fde027b3c137c25079a8fa3799062113af2c1a5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.3","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-hfpppjYhqIZB8jrNb0rNceQRkSnBN7QJl3W26O1jUv3F3BkQknqy1YTqVXkFnIcFtBc3Qnv5M7r5Lez2iOLgZA==","shasum":"82480df3ef607f04bb38cc3f30a628d8b895339f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.3.tgz","fileCount":12,"unpackedSize":148646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoE5CCRA9TVsSAnZWagAAoLMP/jtTKEswLZMYKdDXBLFW\nNSk7vPpRtJE/a/xOFaNAgC5Ks8cXwbPLEKQLC5A5crxXHIt6S4Do+XTyhuL1\n4jJY2UPIiO9kxewsMfJYFdq+IJSiI5bCq+MRHQv2Wy+GESIWR6mTqqeC3Z4A\nzbvTDeSQ1YhFkHQIZ2XUEplXKQ2RDY6PPx8xFkXzxITNK8cgdPOqYDcdI+SJ\nB7dDS6sv0+BCLf7DB3ymMqgBJiBR0ZETJAeAxuHFn01qESzrIS1ND63Tbryg\nJB17NrWnsI6TXmbDXqvcfKiyWh+o7Rb4Gm3mfmL/Tlv/zLYiM3+7Knv0hY4r\nqk0Bus7DmyN+1jP3EWhB5BlE0wRTPGookQjRbHrccTPDH8mvZyn3VFapo2sm\nAF+TrwPdNWdUk4Y569LK03r4740qwNHpzyHzQSAtYMkm+5awYfQUrhzREPYf\nv9ci3B8XwwgVGwRoIfnMgD/8W0mS1ZrK8t17G2qH/5E8Dlm3x2Za0FDAzdN3\nN4q3qksF8IHqHQ8NpvxA4J0pI/E0348K5BuqlR0ESlwF2u6FCdxVCTNJOIhn\nU/ddxokhUegPp6b0fDJ+scz0wb2TeUbaYhL+HC7fUV3K30rF3YJ4kVUtJ+OW\nJA9lS+I1Q8532SASg4WLvJskXhLcjWN57v0MgIm5gKC3yZ2QocLUyqql4j8W\nX9KJ\r\n=Zu/I\r\n-----END PGP SIGNATURE-----\r\n","size":22766,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.3_1637895746075_0.5403060957459396"},"_hasShrinkwrap":false,"publish_time":1637895746236,"_cnpm_publish_time":1637895746236,"_cnpmcore_publish_time":"2021-12-15T21:08:55.773Z"},"1.4.2":{"name":"electron-to-chromium","version":"1.4.2","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c1ae679281b884ab017e8b311a033f16e46ebb10","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.2","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-SxHMmlSvpT83M/MLxTXQBqfqo3bK+UOk6Uup6w1paX86l+af1xwwTMLlyK3xJwE3Kq8/QnecuFKmnmRlAUJCXw==","shasum":"b81583847c25377027cca7d5a4e94ac23bdce2f4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.2.tgz","fileCount":12,"unpackedSize":148517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhn93CCRA9TVsSAnZWagAA3uoP/1m6dCCtG1jEwefzwtQl\nJMRZ0nnATAG/6VyqFk/u9ESsZRpRmqldvYU/xTcYkA8znd0N1yl9KLOpH8j5\nLTnXSV71dMlz5ASWc24vg1Zz6ROnEiYA4ohdPagvgMMCWPtAiG10gbn3bjQF\n7NFqjl5YyQliqhU6flHjbXBNOZ2XjJa1+gC0BdOcxJssXPNYbLOjWfh0nC14\n/5kVzfCfuUYHW8MwYg56kiQUgwBYxGNeKrWugbiQO7pyQuB2vQp/gA95nU+3\nBXfb4wTicZkSg7bkgxLCoNfI+trKwPie26560x5HNHnIHhRocpTe3RuT5qfv\nmOt5pGeA8MowXMh8f1n6UP6qNpO97KpQlnj5LzO3hepUDZJu69c7/WWavpBG\nzGjgxS2e9CG9Nb0h2OovGZuWWYqResdYgegdMlPV687JUqXVKFgbzyy5NzqH\nUXpci0ZjDoLWJISympmu9qksCXX5TKYNQns56VMGIbRjSROnfsW+tUwz2lOZ\ns5hnwX3LIDyeya/dTzOShbEO3/np4Q2jbI+YeXiKozHc695spwBKhK4JCTvW\n9YnDusWPV4WbGF+7LlK69qYdDsSFfgdNyi6F2RhPVc//D+D0UNqJp2qdkvQM\nSsy2CCwP/G7HYyenzBK1oNsEab0d6KBtGVz+3GsWaSho1hIgIxxopawwPCAY\npZT9\r\n=IqFH\r\n-----END PGP SIGNATURE-----\r\n","size":22751,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.2_1637866946648_0.9221332176641783"},"_hasShrinkwrap":false,"publish_time":1637866946850,"_cnpm_publish_time":1637866946850,"_cnpmcore_publish_time":"2021-12-15T21:08:56.033Z"},"1.4.1":{"name":"electron-to-chromium","version":"1.4.1","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0e799ff2cc8fc4a4535ce8f3a1caeb10ff86589a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.1","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-9ldvb6QMHiDpUNF1iSwBTiTT0qXEN+xIO5WlCJrC5gt0z74ofOiqR698vaJqYWnri0XZiF0YmnrFmGq/EmpGAA==","shasum":"623f8fa6ee416e016d93f00efc34fbc73f9f59ed","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.1.tgz","fileCount":12,"unpackedSize":148379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnvzBCRA9TVsSAnZWagAA8LsP/iE0MJsNYiXGDN7Ep5BN\nrwC/WtR6j/HKNNUilz09gVUWdVgu3cxfK0sE0r+qpYoQ3w6g7Ny/sza9+RTl\nwMYmAuj0juNTixDjqrkRO/WGtJiNnytQmm0BTmvTQf+ythap606kHGLYAjmR\nDs5zHsYubqujaxKA3m9k+xKp/TRnSbX92MuBihceaCXEM8336fuUynKEg6Ml\ny/DFtR9H2TVF2mcAYli45xjygGMq1wts05K/UKLxJod6cw6APaZHkHxMTX7R\nGk8fGgJDzBxgjrdJBtAwLwmtqU39HSFHygg2414V2hJen22C+QrX6D9s9OEF\nk3U82b6LEW2C7kW0/Zs/firjO9i3qlYOh2NFl8dzc0589FAhv50VZETXWklm\nhanqNLCIK1ASUG06onq+uZR6of1upc0gOE4ECUvfZJ9XHohhe7hJPRdEQJcS\nOEc1KDDO+RBGDh1BMpLcE5j8KNVUFQDAffHLKunxGpH36ZMqpaEC/uLYkxP2\nsGdHhchCwjQwI1JlPtR7WHFbKIC3yK0t0L+CwN0tm0d27N2O84dvRD29zdGU\nUUKNbt+WQ77EkPnOGIK8bgAJiLVcq4/5u/yyt+NRu3UaGy8VjNLoZ9AkvoFc\nslEhRsBihBgnfj8zWYTWYkA1VyhMuPA0LezfDpIRyFI0tSGTdwYfwO2IvCUt\nnxg2\r\n=awbk\r\n-----END PGP SIGNATURE-----\r\n","size":22741,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.1_1637809345719_0.6026661973823977"},"_hasShrinkwrap":false,"publish_time":1637809345882,"_cnpm_publish_time":1637809345882,"_cnpmcore_publish_time":"2021-12-15T21:08:56.277Z"},"1.4.0":{"name":"electron-to-chromium","version":"1.4.0","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6a2813bcc297af921362c3bd64c03bbd5367bb39","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.0","_nodeVersion":"14.18.1","_npmVersion":"8.1.4","dist":{"integrity":"sha512-+oXCt6SaIu8EmFTPx8wNGSB0tHQ5biDscnlf6Uxuz17e9CjzMRtGk9B8705aMPnj0iWr3iC74WuIkngCsLElmA==","shasum":"7456192519838f881e35e4038bf4ad2c36353e63","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.0.tgz","fileCount":12,"unpackedSize":148093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnhWqCRA9TVsSAnZWagAAwdwQAIJPhZcSbNV82RKOEgYW\n5Y2noEhCRRcKh5o9hSBIjRTCIAyTK38QRiJRfT2OJT8MbiICCjZNQEXh72Dr\nqc123vf4blK3yVqQ3+JE/2GytbDV3tXI97lUQqiVwRHd1HtgA5TCu0UmH4ga\noz7NUd0JsQQZIQlH/TnZ9Xa4eEIF9RIUjJG6LGaNt2e2vQ1397HO5+3zd/W0\nQGsGQbQjgj0gFSEVUMVPcvMs6J2RlUqWqnyq7JTd7iWwndIXszx2fyi8WASw\nYACwUT+OGjClzh80DOxFExqw5E+MIckfjdClYn4KswPvSAgrvbR9zpu0ZK1V\na5q1qQgwouZUk/paeLKJXLn4TiuWHXgsQpp7jVtdmIDji7JJYg+Or68GKTR5\nSgJvAh7CQdjqaVjQpu7U52YsQVGcIh+Rm+BJ0wjfOHdKOiOVkjAkA7tZ4Hgx\n7zgIK1+/jKJqfPPPPXxz8vxReOaw3lN2OSJads8IZMbNFPdBYWILud3uDJVg\nEA2qwkMgTbwYZY8d8NlUoJI92bZmRpFqc0czJQ7Pjz6372QbpcURO6Hx30+C\nvm5yyYX3yj+cJYbqZDpvP42tCsrsr9r4T3c20NW/zMhVRoJmv7LY5bkc/+B1\n5cYHN8ggAvwOqrW6CmHnlUEWm3Nrvic4zVHsPas6aNOdx8Fc9Yj8ssBVjkNq\nme81\r\n=w4+U\r\n-----END PGP SIGNATURE-----\r\n","size":22683,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.0_1637750186402_0.30985385714068925"},"_hasShrinkwrap":false,"publish_time":1637750186566,"_cnpm_publish_time":1637750186566,"_cnpmcore_publish_time":"2021-12-15T21:08:56.564Z"},"1.3.907":{"name":"electron-to-chromium","version":"1.3.907","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.868.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1f96a2b3922b061f18e40b3374e74cd1a56f7e88","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.907","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-xoUPSkjimw51d9ryeH38XUwmR3HmCA+eky4hk0YEgsWeBWGyhb35OCvT3lWAdmvIkcGYCRNOB8LvtO00dJQpOA==","shasum":"c8e155a17cb642a1023481c601aa3ad9ee61f402","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.907.tgz","fileCount":9,"unpackedSize":83390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnTrLCRA9TVsSAnZWagAAA5IP/j3PCPPMq5n/+N3t23gM\nF4dciZfLF/E2VzjMhsqJ6FO/bPhYpvpbCjQXsgl/HR4Wxy8f3oeyXGs7fD2U\nzqwrIRhWTLMXIvj+ujyeCbQtMyxTOebvYm3dpRZkrbB6Uh8leA3fmMcBKROH\nCPwJjjooM8ll6H+NXF0NpKu5smVKSHRQpbJbB7uBPMgSp0FJi/WCHABGpcdY\nVbfTMnVSusQo8DGlQncJTQmTHLlO4/gWDZZP0jBqMXyWOnmRvF4spZda9S9c\nR/PKaZmOWHVXieWGer4AIJwL7/xB6svoD9x6J5lTn/tW8c4FRQNsrmQbdUS/\n3dMLK7ENOhJ9vbA0r5Lx03QAdNazmj9AwWMiSrtJvlfD0/aJ0Z8RveRuqwAa\nc4VkN+9ra04pB44at+WI7pfUJ7+Tk12Mk4vt0C002SOZU4tZn/7fdAWDSTZb\nmdOWRiFOBU8Q+UdEJcT4mVfGpiet74uVucQMgD8rfhCRgfd7qONSNfiubYDT\n5dcWJFR4me9x1UZjtW/4/hqLYntFeY1sOBwAT8DSj4wU9FbjSBdg0RlFzkFq\nVuNk10Nbd60JiqE2auOuAZbAjUowqZeSgzuA5JvpJd/x4RFb6gevKBqJOw4M\nDCMdlqRcX6tKPK+8w2OSlOsh2oLokTFc66RJkaR6J4QipaFX73loxNMRNgIi\nHxjU\r\n=2NeF\r\n-----END PGP SIGNATURE-----\r\n","size":13651,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.907_1637694155651_0.5135642149557276"},"_hasShrinkwrap":false,"publish_time":1637694155803,"_cnpm_publish_time":1637694155803,"_cnpmcore_publish_time":"2021-12-15T21:08:56.792Z"},"1.3.906":{"name":"electron-to-chromium","version":"1.3.906","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.867.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d8347cfa17f930f721784e9426690197f313740c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.906","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-UjoECdcOYIVzWmrbtNnYpPrDuu+RtiO5W08Vdbid9ydGQMSdnqtJUtvOqQEAVQqpoXN9kSW9YnQufvzLQMYQOw==","shasum":"144e212691e35fa8c294431e2ecb51e4b03f7577","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.906.tgz","fileCount":9,"unpackedSize":83318,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnFnHCRA9TVsSAnZWagAAGpwP/2kYvQUksSX5+QemWubR\nhrAynPCKXpoa3X2Eg7BE0iKn2m8AbgHBSUNRuO4MtLL5a8YD01m/Z6hZvI4L\nW5cK5i1Nj/xxt6QgXqhUvVOo1iADAEquswTOstSj9yq0JF3rD/yMNDVbTIcQ\nTaTJhyACzXLyuU3nR8AFcyMRDIdfNrgPxX8kP9qzT8dlCvSp2e+tPgN6paZJ\nfTGHFz5RvDb7JQXtuiRK+lLTfjsoUpTHDDeBWZPbw17fGVp9viabP/U4Kum9\nMwS1AgZ2KmsjlIYW85mTcW4E6Uv+OE8vRWYp9gXj3nmHU/vLYFHx9OvJ8tC7\naiav4kEHpcE/2zneAhXgZzZyFl+8yKf9lM8N4JweR3T1A4X9xqwjUYFwLL+G\nPjws21Pr50dZSJIzoix//MDrFHAB7VPTu5yfzbKHjq2fvZ+08feHTIfALDXf\nLUvEmcYL7QWDEFhHmrBtgx6uhxQwvIJQryYck9ZNVZk3mVUxD8RcG1jpUmOV\nK9oCLOZJGmfNv4hywwimvBiDKkXp+uOdN024sF+SJhcCufAq2e00W8KAN1Ax\nEaXgqLA3LbFB0Ub3sMz4M72LShuayFHc2AVZqrKfoZU+U104HyIn2QzaPDAb\nLR+5RLlPfQZwWXzaWaOc3StuhixK4o/qOkxipyHl0cD8Sx0upsknU2v+qks5\n1W+S\r\n=yTkT\r\n-----END PGP SIGNATURE-----\r\n","size":13645,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.906_1637636551016_0.33051254476962666"},"_hasShrinkwrap":false,"publish_time":1637636551255,"_cnpm_publish_time":1637636551255,"_cnpmcore_publish_time":"2021-12-15T21:08:57.029Z"},"1.3.905":{"name":"electron-to-chromium","version":"1.3.905","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.866.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"caf97f83e024715a6fd42adfed4619255b1631e4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.905","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-jTjkycBMCCMk86PAucHtqicZ6dKlgPw+gAXMI9xxH5ua0+60dH+PVR7efwQMqCOQxmhHSo4aF4f37Idb5XBAcA==","shasum":"3c18f17f71f73013c5252af556aab213740c477f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.905.tgz","fileCount":9,"unpackedSize":83264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhm+lNCRA9TVsSAnZWagAAIikP/1w4t39PnL9FNGO27R2y\nq4lzrV2XQDuTa7eTDZ3Xu2ULV+TShKtu1+akzm2NYn64xaYfOPBTFib7f/iv\nw1WmF8RUl71e0h1bJFbVa0KKOUyWDM1H9SJEbMk97V9BsPNT0iX3Wsd1id7Q\nBNnYpEu7XmJHjh8sF+naZblv8EOoAR9dx6+tnH6yIGwifOnZets/MK4IK9yX\nZhNoM2odmDKm3jLJQZ/hmP1e05wR0R/QliyDEDMzEpRII2IXvkIaYX/yiDcY\nJe5PqXH8yueF5Rxmcn0Nk4tZFw/o5+3XY8P8/LlTPi3dHXd8Gz5Amx3m9V9F\nKdMLKR+pSlve2FU/cPvutxeHCWHwHIK9ptlS/dZ1rUDEG9gcLd0EPM/K7tgV\nmSIY+rIkJy+Tv62ZfKIp4Qgpz6PQCBiRRUI+ZobDwBmQ+2QmcUHFoNpZKDtr\nRLD7OufbJbnC1E92BjOwnNRc5rZn46/8MILmrZFX5M4Lzd9aAzZLCfiIW11c\nG3Ig4m67zF0OTQpmnS6Ee+D5JLIqg8Tb9gS4UF/UkGGDkebJ0d3Rit6f/u+4\n5qBEgIO1DilFb8KTGS/fG21yjXPXQ9wJTX/gu6tNDct9hrdgreO/PlraHE8G\npX17WoQl19phY66VKCA6vt33h3k1zsylCNEPIEOYvSJpp+vNE7h/Qm5chYKT\n638X\r\n=1mvN\r\n-----END PGP SIGNATURE-----\r\n","size":13639,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.905_1637607757267_0.8505517717929347"},"_hasShrinkwrap":false,"publish_time":1637607757519,"_cnpm_publish_time":1637607757519,"_cnpmcore_publish_time":"2021-12-15T21:08:57.542Z"},"1.3.904":{"name":"electron-to-chromium","version":"1.3.904","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.865.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6b417f7c0b2673bd266f140e795f9d0b4ff931bf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.904","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-x5uZWXcVNYkTh4JubD7KSC1VMKz0vZwJUqVwY3ihsW0bst1BXDe494Uqbg3Y0fDGVjJqA8vEeGuvO5foyH2+qw==","shasum":"52a353994faeb0f2a9fab3606b4e0614d1af7b58","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.904.tgz","fileCount":9,"unpackedSize":83192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmJ2LCRA9TVsSAnZWagAAJIsP/RQeHAwDz/qAM/qKdui9\n7LMDKBoroBDGGlZuwXXAz2qY8EnsqNoasS5yHCCy3e5L7wFrO/kP/G2dkTR4\nLFvukjr7ebkbgzFuxGozGMqdAQacHxeiVsvQ5FImR5b39pb4GnGqN7IAqhz7\nNn8l97PP79vpK754nFZL9TfiC4rNZZ4O+7pPLmDwxhkxj6RghLhG5HCP97ld\n6/NrlJNhZYlrDtQe3DL4Zwlmlv/qY6TJatPq6+KoP9KluQpHfepGGX+sbUga\niitND68IH5BndOhhG2aWV+s3Xaz5MOO+k73UIVdusXaMsgLL/LLE2so95i95\nYBhXc4U8F4CYdNSj9o1wHiyIRahXrrcf2lb82XdEClwNzr9ailsH7DbOM5BH\nJkuFA7vOzJxTXFYVuaPlCrO+klGFNgTAYLnWzeSW2H/wkXdkRSSZ07iEjOeF\nVXN2B1L7ljS2F+dg2zZh5y0K+K5EHdcg3jJU1hJBnpZojUpQ8VEWeHqSCDBV\nUFty8jm2JoYqo1PtD+S1tu03DQausSMLtfwrXnfiC0hXSradC7ob87vM50CH\n7J1D9Ib6+MsBinPmw/0YGdQyV42KjB/sP7i7/DKJ6iPC271L/lBqU4nm2VJH\nzREYWpRdRPIJgeXQhwl/2f6B82KOKeHPJlee4duqP10DtCCae9L0I6X2VfPU\nrr+W\r\n=8gII\r\n-----END PGP SIGNATURE-----\r\n","size":13633,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.904_1637391755677_0.6163271018994034"},"_hasShrinkwrap":false,"publish_time":1637391755886,"_cnpm_publish_time":1637391755886,"_cnpmcore_publish_time":"2021-12-15T21:08:57.782Z"},"1.3.903":{"name":"electron-to-chromium","version":"1.3.903","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.864.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d078f60c939acc112ed3f6572fec1a02caa019b7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.903","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-+PnYAyniRRTkNq56cqYDLq9LyklZYk0hqoDy9GpcU11H5QjRmFZVDbxtgHUMK/YzdNTcn1XWP5gb+hFlSCr20g==","shasum":"e2d3c3809f4ef05fdbe5cc88969dfc94b1bd15b9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.903.tgz","fileCount":9,"unpackedSize":83120,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlxPICRA9TVsSAnZWagAA26wP/iQUMIME/+bOxgfVhsA6\nurU0LFnbmiukr2AKDE9D4EHMwISQT4jgOkBNbpm9zwopNcHraLDiYaIVR608\nDq4qiW9KtfTrGUt0MlUKtyIWuvh3FR+BWenxsr7jIUUwDLhbiWXLOtzJwv/b\n1lb9ccf3fJUBokSb+9N1iEt/toy/d1adQztyr7scsMY5Mc0lTOaFDBe8nGHC\naz83vK7w0b5T+82UKHZJEgRXwiq/vKeqbXwCRpqY2AUkJU0nrEgFMskptYa5\nD5aLptisKuOlBtHqRooXBwMv97bSS1DRj8kQV4bp/AKxKccDqRF7wqjf+Vkp\nP2IuhBeggLrpzPL9sVn7fN6EJuoDpUo4B38upji3bzUiQiy6JfrPZLHec0Ym\n3mNrRuMte66iwp14nQStrWAK44wIF2bo07G6jh219N7XwdAifQG3C/MvsyKe\niVGM99hj0JHc0QEs4czTzgu88rZlaT1/RMJ0QWRvxkCakJxD5htYAr58BKUx\nNIgWILCPGGZ8lOYYwG2Km0qqHprdNXzMf1Ygq+2pOOPLrIRBuZMLNeSwqqgM\n08zVnNxKHLnNjeq8jk/+VMRCmz2B9glEZLqUBPDjnpB2qCfjhOJJLpaeQVHI\nIUZC5K5fw7JeamYOTTgxuCbqRH7sjQZjNKM8bUMl0Rkvf0GaaDfqS2B5QImG\nXWTb\r\n=yEve\r\n-----END PGP SIGNATURE-----\r\n","size":13625,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.903_1637290952364_0.44671600419108004"},"_hasShrinkwrap":false,"publish_time":1637290952572,"_cnpm_publish_time":1637290952572,"_cnpmcore_publish_time":"2021-12-15T21:08:58.045Z"},"1.3.902":{"name":"electron-to-chromium","version":"1.3.902","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.863.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d5460eb81354f0f7c6d20e3f9cc58a36199ac684","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.902","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-zFv5jbtyIr+V9FuT9o439isXbkXQ27mJqZfLXpBKzXugWE8+3RotHbXJlli0/r+Rvdlkut0OOMzeOWLAjH0jCw==","shasum":"926726705c17f9531be23bda545b819b35da665d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.902.tgz","fileCount":9,"unpackedSize":83081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlqNLCRA9TVsSAnZWagAAVMsP/3vOnODkghLMIhxIctBt\nBgjMe2seeNyY2Zd5qo/knvyj3BFzFgdJFoovyZnhZwlcZWHawCn0WJ9dqsXM\nPG+8LUcS/yBY+Pn8z9aIFLxbQXLL7KFilwzsx1mFbVhYoai+oNefcVLj7A19\ng+mfNA1MAEVYA+1BYsLUp0LVpRthg42UAUfha5u73kIHh/8ccHvqw/DJNB3X\nLdLSY6zpZVVlIFvwB08HgO4e1Rr2Bz6iM9a9N/TM92BO5ueUGexIXMYWPzda\n0RqcNvd1O7Kjl6MQxMDnFan26ueRBNeOCRC2c99hjdqcSJ889trk1KiX9IhB\nc+FtfpPg9D7z1CtsvSFeMcmjRISPkgeCRr6943CYKB9G5B9n1wZ8xmwzsSMh\nPAO5wFx7eDk1PSOmmRN+Qy8xW9s0GNrSGFWj4jPWobtwNN1MiYqt6SOYjZCU\nkVwLtVdE2AM0A/AASFe+63TeCNnMjbjGHQi9ZrbXqhXDt8WkmVrV74X6jPJu\n7BAewaLwOmluyZ12XPKv1nqjEP3cw86Es3G3OKXor3PAfosd52pUtVv+BLlQ\nqWDq2rRxIvmb1lSE22JVkhSxdq578Mj/ddDdMLRtrRaOITtZdyBZ+R6P4T+e\neQEayCNp3yQW9bccMwNWq6jLf+68JwUHoP+q+YNnbYjDlxRIwmT+uJXUiJcE\n8p+s\r\n=t+Ka\r\n-----END PGP SIGNATURE-----\r\n","size":13624,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.902_1637262155458_0.0577178299135328"},"_hasShrinkwrap":false,"publish_time":1637262155632,"_cnpm_publish_time":1637262155632,"_cnpmcore_publish_time":"2021-12-15T21:08:58.370Z"},"1.3.901":{"name":"electron-to-chromium","version":"1.3.901","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.862.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3274ed0ea725d04afb5ddf03cc8a167bbd4fa68a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.901","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-ToJdV2vzwT2jeAsw8zIggTFllJ4Kxvwghk39AhJEHHlIxor10wsFI3wo69p8nFc0s/ATWBqugPv/k3nW4Y9Mww==","shasum":"ce2c3157d61bce9f42f1e83225c17358ae9f4918","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.901.tgz","fileCount":9,"unpackedSize":82955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlVHICRA9TVsSAnZWagAAKyAP/ArjovxpN2k7dkd+k8Dm\nVs+J+/XQknilSVyQtiBIQFX4XW5FHRUI7VzvvBXajM4nUkF7qplUZpj+JbEe\nB85E/TjpLyyS33RS2S4clQNFR8rdoOMvrfzkbjy1gFQ5ISROvANSZ8EsIL/T\nbiMh+8W43TAH0DNwBT0llC6QLZ5blLRyvf3j4dXLdsK3xkjtcq3f6VnDPTBc\nHxOmzvGFj5mXDd99jdKivSojlBsaIroTeYhLEMQUSjOS3i88y/iAdH9CQBkx\nV7hlOy3LTN9xA6ONHV3KY+Ym3iDIu94jNrMPERlkDogVvYJKArM3GODqfGAn\nipIgmCWcdGOwucJNmDL5mjZxr+Khi3RdPxiXe81LbAsCokHJXxh5LzIi8ZSL\nKWeg2V1ShvtxoFch+DI/fRjnhF89ySq0baz+bGUOi4uOzffMs97slyO+OGj1\nR0/d9PMFQi3IyQojjwRPM3O5sUJWtJHpLpOCe9dK5Sx1MiLJOLmndaAFaZNs\ngWdqdMJCjoI1GmXPwfl+elMMsi/BzKhQKgo3g+w3gDZX+nsXXInE3vmsIl/1\nkF+vs2tiehA0AtIvXwDuyYxmI0qQCJx9rr1VMCjl8UEEJ2O4xzNoFcwAbrrV\njljyNZD9H0q/vuI8FV7cuGEVnPmfw9Y5aL+S8mgzXnHqKlyZZZhOrtk32XZ4\n9VGf\r\n=P5C/\r\n-----END PGP SIGNATURE-----\r\n","size":13607,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.901_1637175752292_0.8306112238120729"},"_hasShrinkwrap":false,"publish_time":1637175752475,"_cnpm_publish_time":1637175752475,"_cnpmcore_publish_time":"2021-12-15T21:08:58.657Z"},"1.3.900":{"name":"electron-to-chromium","version":"1.3.900","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.861.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"fdd5effbc8e4cab5d1b0a1b9817bf27e7d285b09","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.900","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-SuXbQD8D4EjsaBaJJxySHbC+zq8JrFfxtb4GIr4E9n1BcROyMcRrJCYQNpJ9N+Wjf5mFp7Wp0OHykd14JNEzzQ==","shasum":"5be2c5818a2a012c511b4b43e87b6ab7a296d4f5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.900.tgz","fileCount":9,"unpackedSize":82814,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlHDHCRA9TVsSAnZWagAA//MP/3cmOw52eve1xNfXzWcH\nhhcnt3FSscjcAcwhztMsOS2C+SHIIWGqawfnNqqiiqzc/jQkemBIzLJA1QU/\nZT2Wzpf8dNxEDlcR+fQy1/2Gb39XH78xePuR6HESmCJ1NHHMhuEHYijGzFE+\nyNJjwGY+JCiq3g2x9w7i1kOnzDBntL0udbir6VStQuZcv8fXT8PE375UHk57\nKlg7wyAKg9gPzFHb1sEPWItDfLNWkvC6jtKDxQUntL55B/CDIs4Jan64d2rM\nfSMcqkkDkBqBZP7Qupa9FuwPD8znZg7Dw2z8E7QCdsFaMuSv9/dczv72rdtj\nRAk91gJJ+k301geEZpjgNDY597PBYVckdY+aj1ljALI5q5zfM0Se5OPKiddy\nGysLHBf9MD2rz/Towtbf940KgMtF0v0Od0dMSeMmxW0tRVDVWiFPtOduNwEY\neHAtMLHzkcHWBCpf6to8+KPxoep6JHVJpbKO0F2983PMmjRql6UBibrKpc5y\neLVvjuaCqmIIj0ulMH1cI9v/uSobkxWwNstQjDYigT1qe+MTHWAp+EbVHpAI\nAqTOLM7KzSm82hNA1FjYkDMmFAlvSXAyWOZw1MUao9aT5ug/Y+EeqnVuNoIm\ndLQR0Dm/MAH5WApMrNYjGOcheL39qmoDNRkk8IB2IrHXqLZ5Cj/nX9ue4SLI\n9SD3\r\n=/CLo\r\n-----END PGP SIGNATURE-----\r\n","size":13586,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.900_1637118151617_0.008967276004022695"},"_hasShrinkwrap":false,"publish_time":1637118151799,"_cnpm_publish_time":1637118151799,"_cnpmcore_publish_time":"2021-12-15T21:08:58.911Z"},"1.3.899":{"name":"electron-to-chromium","version":"1.3.899","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.860.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"639fd70572092604b12046746b3b1061159450a5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.899","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-w16Dtd2zl7VZ4N4Db+FIa7n36sgPGCKjrKvUUmp5ialsikvcQLjcJR9RWnlYNxIyEHLdHaoIZEqKsPxU9MdyBg==","shasum":"4d7d040e73def3d5f5bd6b8a21049025dce6fce0","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.899.tgz","fileCount":9,"unpackedSize":82702,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhk1eICRA9TVsSAnZWagAAoaIP/3n4IOC7hmrJOaWEUSjp\nn8gPQLN8p9ZOjJaqOODTy3Ysl73fzpBfuH8KWlAx988UxE+V/30+HgdHCEef\npZ47a8K4OduTyE1f/tnVs+qoPdRl8J8voEde6s9uLuMtHnGlmqh9pmDMa8by\nLX6TOXXkANbVG/RCNlhE8p/uROeznOhnS/hjOddDWsO/FDczXxat2eQZdGTH\nUaXZHv82k39+ARRRkYukPOuy1bCjMtMFaeN131iDtTRrrBYxJ0wPaQtrK3kL\nwuLabRrFfMTQuwBvD3TxH73l4Hp2+pytU1Z3WjvING6fFyPTD5p9pVoKsHSL\nsyezsW5VFbWoK5PMheYkWuWyblpu1UOqEy4vkeNTx5KjZPM7pq0bJi1X3mmZ\n9wWr/lnHAY3aKiwKVXD1uXZcQ0miWmEIkg2dMpoaZDLlBCgWwQA2euRggMeu\newRPL2Sz01BSUbSxBoYBPAFwAvtZsjODJXHs19F3oEfUUDkEL1F5rbMsdSZM\nsnB6R1E3WG4yhUCkpHeUhjTCIwyplYcCXCX6+jVjvfCcDN4Er1eLD+1SPS/C\nSniijUgoRQEZB2XRL6CoXS376+xiAwiXKR5aEmi9JRDHbfgJGJbGJbY2f3nX\nhCRs2oALYAkwvIs8pY3/agiw8olBbvWCmzzZaEOa0oSFuEWmZ6cgT95Fggzy\nUKLZ\r\n=3OFy\r\n-----END PGP SIGNATURE-----\r\n","size":13576,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.899_1637046152396_0.07757534172750624"},"_hasShrinkwrap":false,"publish_time":1637046152615,"_cnpm_publish_time":1637046152615,"_cnpmcore_publish_time":"2021-12-15T21:08:59.172Z"},"1.3.898":{"name":"electron-to-chromium","version":"1.3.898","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.859.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2f8c719d3a3be6d6975d86a1cbbcd580bb0d8590","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.898","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-dxEsaHy9Ter268LO7P8uWomuChbyML4zZk5F9+UZSozFRS7ggC5cQ8fPIM8Pec+6uWGdujuDagQhIbqjohUK2w==","shasum":"0bd4090bf7c7003cb9bd31c4223a9f6aa1aab9dc","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.898.tgz","fileCount":9,"unpackedSize":82602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhkx9ICRA9TVsSAnZWagAAg5IP+gPpmmBlQhDGbgXqb8z+\nbkdNkqbl3sVasAvI0cOGuudmfDWNlIDFvGJzMG86Z/l3yfLUi7Bl7q8ge9st\na4Mj3Eey4aEpdcL74pNhv0O+Q2iJS2tU1Ek9VoIZ9xVnmZYET/LeeBXAVm50\n52YMjdmDNIiyGN08+fvXrvp0mq1WJoigriI1O3ms+1O9518ZkkJrLZ2PcaEl\nPa/dVlUYFjedrAVOqSF9BooqVmMIEeAoq3uWXOduAWn2G8OJReezSREQXwbA\n/7jPYY3i0ClcCFGe3DCCj/6Z+yewmLooKBDtFzbgq7fu7ZkHCe/NlF7udKsM\nRi7wSIoSjmaXnfyHNiYjqgs8kdGGJgqPaj2pP/UwMVow5y7TVQWepq7ffVT5\nV8nQExNh+28WNroliP1Oy4Nf9D6bzW1l3NZKtqjEp8kfgrfblsiq8kKPsyZ4\nCu3iRYzgR39grpapvfcIwxylOi5ayH9dAmuZyZoySMkIB8Y8XtNc3JNCUO6O\n984jh390gJ5BozLq+T1SykNBak96Pr9h0xEssHCqxbROeFDyiqHyQKeqoxO0\nPovZQ65OfEOalTyPTpGrNovn7X6Z4nm3OPd65HAx4cX4U/syizJiMrxZUAQy\nWqGWb4S6H5hp8QTELBj49whAOsk1JI7EGO31RIWWsH28TQ9HF+7M7ZuBwcNK\nbMoR\r\n=77UL\r\n-----END PGP SIGNATURE-----\r\n","size":13554,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.898_1637031752001_0.31371201972967944"},"_hasShrinkwrap":false,"publish_time":1637031752165,"_cnpm_publish_time":1637031752165,"_cnpmcore_publish_time":"2021-12-15T21:08:59.500Z"},"1.3.897":{"name":"electron-to-chromium","version":"1.3.897","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.858.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0aad9986ebed7369482352779b83a4487469e67d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.897","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-nRNZhAZ7hVCe75jrCUG7xLOqHMwloJMj6GEXEzY4OMahRGgwerAo+ls/qbqUwFH+E20eaSncKkQ4W8KP5SOiAg==","shasum":"16ddf5943eeec6ae08704b015ecd26b143b03947","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.897.tgz","fileCount":9,"unpackedSize":82562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhkq7ICRA9TVsSAnZWagAAI10QAIN0O0d4kjMCYqIKXu8+\nK/pzOMamzeLs4M0YpOmsmtEhFqrXDIbJvSNV7jpTDb8OhtR6zf8YjqGKWpyK\nFZgdrJklKu0m4B98SEPk+pCkT+SDAda887P07nU9oS8rbw0raxRExuGaLT6e\nz6FjM57kAz40V9okaAMq7nZ8LweRwUBM69buMJsGSQrb5cFtrGJn/Vf+yLI9\nyAVNCiC7QvXiXGz/0qLmad5e0f8HQlNX0ZpnoIQ6x7SiDn2hFalPL+jeUgkI\nn4pHXCDLoHwkvq4GwpZU8NNhjofElXd3rafyofoqI1EigeaXPF5ZD8hbqYX9\nW6Heb0h9J7otQpVxz02Os0Ns08Hvy/r466aUYgzhiDymuK1GWYU2dd2FihKx\niAm0BRt4qJyXDFTeF8YPmMCH4pqZT3fpNOgFUX895SUES3bkUVpEarurYm8P\nWbjBu2bTgXD3Xo5OGyRfX/P8x+5nECILyflte0mC37QNsR00PT/ZuLfcD98Z\nfbQYQbTw7U5CXqnbNq3/VOKwsbuRnZsyaC+LutDgOOKbpilRhxXc71bhBH43\n4P9YXOf15wd37aIL2ZYlazRTyutGT0Ggeff5uF7NR5JBBvr2RZOtL4a/4oGx\n0k5E8DZ5glQvrFu3paWA6ifaLym57NO4B+3vXNLleV7NhMQLIDTBW/C4omZG\nOl9B\r\n=Xd7R\r\n-----END PGP SIGNATURE-----\r\n","size":13547,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.897_1637002952555_0.778805436287106"},"_hasShrinkwrap":false,"publish_time":1637002952763,"_cnpm_publish_time":1637002952763,"_cnpmcore_publish_time":"2021-12-15T21:08:59.798Z"},"1.3.896":{"name":"electron-to-chromium","version":"1.3.896","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.857.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"82ca135403c375fd55a2c18ce8856e1d1b19f5eb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.896","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-NcGkBVXePiuUrPLV8IxP43n1EOtdg+dudVjrfVEUd/bOqpQUFZ2diL5PPYzbgEhZFEltdXV3AcyKwGnEQ5lhMA==","shasum":"4a94efe4870b1687eafd5c378198a49da06e8a1b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.896.tgz","fileCount":9,"unpackedSize":82490,"size":13540,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.896_1636743749977_0.720369066050567"},"_hasShrinkwrap":false,"publish_time":1636743750230,"_cnpm_publish_time":1636743750230,"_cnpmcore_publish_time":"2021-12-15T21:09:00.010Z"},"1.3.895":{"name":"electron-to-chromium","version":"1.3.895","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.856.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c06b0281d9b737914a789f444769c9552ba0b7e6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.895","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-9Ww3fB8CWctjqHwkOt7DQbMZMpal2x2reod+/lU4b9axO1XJEDUpPMBxs7YnjLhhqpKXIIB5SRYN/B4K0QpvyQ==","shasum":"9b0f8f2e32d8283bbb200156fd5d8dfd775f31ed","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.895.tgz","fileCount":9,"unpackedSize":82418,"size":13538,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.895_1636657352798_0.06240513148544302"},"_hasShrinkwrap":false,"publish_time":1636657353000,"_cnpm_publish_time":1636657353000,"_cnpmcore_publish_time":"2021-12-15T21:09:00.296Z"},"1.3.894":{"name":"electron-to-chromium","version":"1.3.894","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.854.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9be77d14995caf4ef539a70c12f513faaf43964a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.894","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-WY8pA4irAZ4cm/Pr7YFPtPLVqj3nU6d0SbfoHF6M7HZNONfPdAnYAarumqQ75go2LuN72uO9wGuCEqnfya/ytg==","shasum":"54554ecb40d40ddac7241c4a42887e86180015d8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.894.tgz","fileCount":9,"unpackedSize":82293,"size":13528,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.894_1636570954118_0.7734018816440829"},"_hasShrinkwrap":false,"publish_time":1636570954262,"_cnpm_publish_time":1636570954262,"_cnpmcore_publish_time":"2021-12-15T21:09:00.548Z"},"1.3.893":{"name":"electron-to-chromium","version":"1.3.893","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.853.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"828df755abe71da40b68f6dc0b04fba11b5cf29e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.893","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-ChtwF7qB03INq1SyMpue08wc6cve+ktj2UC/Y7se9vB+JryfzziJeYwsgb8jLaCA5GMkHCdn5M62PfSMWhifZg==","shasum":"9d804c68953b05ede35409dba0d73dd54c077b4d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.893.tgz","fileCount":9,"unpackedSize":82221,"size":13519,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.893_1636484552568_0.03736949034786696"},"_hasShrinkwrap":false,"publish_time":1636484552745,"_cnpm_publish_time":1636484552745,"_cnpmcore_publish_time":"2021-12-15T21:09:00.891Z"},"1.3.892":{"name":"electron-to-chromium","version":"1.3.892","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.852.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"32b134016591e9922ae8c910caf371d93d76523b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.892","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0e3f5bb1de577e2e5a6dffd5a4b278c4a735cd39","size":13512,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.892.tgz","integrity":"sha512-YDW4yIjdfMnbRoBjRZ/aNQYmT6JgQFLwmTSDRJMQdrY4MByEzppdXp3rnJ0g4LBWcsYTUvwKKClYN1ofZ0COOQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.892_1636426958323_0.3874033583118317"},"_hasShrinkwrap":false,"publish_time":1636426958478,"_cnpm_publish_time":1636426958478,"_cnpmcore_publish_time":"2021-12-15T21:09:01.125Z"},"1.3.891":{"name":"electron-to-chromium","version":"1.3.891","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.851.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e166a2d8a092fe65d0357767cc6f6d77fbdae350","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.891","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"51d7224e64157656276f152a0b3361708fde1bf9","size":13501,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.891.tgz","integrity":"sha512-3cpwR82QkIS01CN/dup/4Yr3BiOiRLlZlcAFn/5FbNCunMO9ojqDgEP9JEo1QNLflu3pEnPWve50gHOEKc7r6w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.891_1636398158039_0.8018046207027998"},"_hasShrinkwrap":false,"publish_time":1636398158257,"_cnpm_publish_time":1636398158257,"_cnpmcore_publish_time":"2021-12-15T21:09:01.452Z"},"1.3.890":{"name":"electron-to-chromium","version":"1.3.890","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.850.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"26206b4203f4f3e71996ba36e649558f092051a3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.890","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e7143b659f73dc4d0512d1ae4baeb0fb9e7bc835","size":13490,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.890.tgz","integrity":"sha512-VWlVXSkv0cA/OOehrEyqjUTHwV8YXCPTfPvbtoeU2aHR21vI4Ejh5aC4AxUwOmbLbBgb6Gd3URZahoCxtBqCYQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.890_1636167751134_0.8546982204218927"},"_hasShrinkwrap":false,"publish_time":1636167751290,"_cnpm_publish_time":1636167751290,"_cnpmcore_publish_time":"2021-12-15T21:09:01.748Z"},"1.3.889":{"name":"electron-to-chromium","version":"1.3.889","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.849.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"37342138d170e7e4e3b2cd999716c2ad6c91085b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.889","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0b7c6f7628559592d5406deda281788f37107790","size":13483,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.889.tgz","integrity":"sha512-suEUoPTD1mExjL9TdmH7cvEiWJVM2oEiAi+Y1p0QKxI2HcRlT44qDTP2c1aZmVwRemIPYOpxmV7CxQCOWcm4XQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.889_1636052552197_0.7851396742310781"},"_hasShrinkwrap":false,"publish_time":1636052552575,"_cnpm_publish_time":1636052552575,"_cnpmcore_publish_time":"2021-12-15T21:09:01.954Z"},"1.3.888":{"name":"electron-to-chromium","version":"1.3.888","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.848.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"57db6810cab4b6bcc10b0e94d04a9aa9f166ccca","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.888","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"243204af9b4c928ac45e47dbbe7bc44c30e65bf0","size":13469,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.888.tgz","integrity":"sha512-5iD1zgyPpFER4kJ716VsA4MxQ6x405dxdFNCEK2mITL075VHO5ResjY0xzQUZguCww/KlBxCA6JmBA9sDt1PRw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.888_1635966151706_0.363507281101747"},"_hasShrinkwrap":false,"publish_time":1635966151850,"_cnpm_publish_time":1635966151850,"_cnpmcore_publish_time":"2021-12-15T21:09:02.193Z"},"1.3.887":{"name":"electron-to-chromium","version":"1.3.887","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.847.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7d59f2418addeb1a2bcfc20afc087a8046557b9e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.887","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b36aeed12a28aaa19460a467823f5bbe1f3c6f06","size":13465,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.887.tgz","integrity":"sha512-QQUumrEjFDKSVYVdaeBmFdyQGoaV+fCSMyWHvfx/u22bRHSTeBQYt6P4jMY+gFd4kgKB9nqk7RMtWkDB49OYPA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.887_1635879754686_0.6434916129721275"},"_hasShrinkwrap":false,"publish_time":1635879754865,"_cnpm_publish_time":1635879754865,"_cnpmcore_publish_time":"2021-12-15T21:09:02.430Z"},"1.3.886":{"name":"electron-to-chromium","version":"1.3.886","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.846.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"faad3b061cb11db35a7258d22f8b2a8b18bba830","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.886","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ac039c4001b665b1dd0f0ed9c2e4da90ff3c9267","size":13458,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.886.tgz","integrity":"sha512-+vYdeBosI63VkCtNWnEVFjgNd/IZwvnsWkKyPtWAvrhA+XfByKoBJcbsMgudVU/bUcGAF9Xp3aXn96voWlc3oQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.886_1635793351044_0.9873129674015502"},"_hasShrinkwrap":false,"publish_time":1635793351198,"_cnpm_publish_time":1635793351198,"_cnpmcore_publish_time":"2021-12-15T21:09:02.779Z"},"1.3.885":{"name":"electron-to-chromium","version":"1.3.885","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.845.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"914ca899d1adfaeb6aed354bb5f43d4fb3006f57","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.885","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c8cec32fbc61364127849ae00f2395a1bae7c454","size":13430,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.885.tgz","integrity":"sha512-JXKFJcVWrdHa09n4CNZYfYaK6EW5aAew7/wr3L1OnsD1L+JHL+RCtd7QgIsxUbFPeTwPlvnpqNNTOLkoefmtXg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.885_1635544950283_0.5163733328483784"},"_hasShrinkwrap":false,"publish_time":1635544950428,"_cnpm_publish_time":1635544950428,"_cnpmcore_publish_time":"2021-12-15T21:09:03.257Z"},"1.3.884":{"name":"electron-to-chromium","version":"1.3.884","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.844.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"101f3580edda7c81e33bc97ddf65205f0adb9ac2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.884","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0cd8c3a80271fd84a81f284c60fb3c9ecb33c166","size":13419,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.884.tgz","integrity":"sha512-kOaCAa+biA98PwH5BpCkeUeTL6mCeg8p3Q3OhqzPyqhu/5QUnWAN2wr/3IK8xMQxIV76kfoQpP+Bn/wij/jXrg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.884_1635458549720_0.17810441867481663"},"_hasShrinkwrap":false,"publish_time":1635458549882,"_cnpm_publish_time":1635458549882,"_cnpmcore_publish_time":"2021-12-15T21:09:03.595Z"},"1.3.883":{"name":"electron-to-chromium","version":"1.3.883","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.843.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5d60a53fadaf0a7e9864e411330ff05f8422a943","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.883","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"cc409921469b3aa6ab6efd65cc2a4375128bb703","size":13407,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.883.tgz","integrity":"sha512-goyjNx4wB9j911PBteb+AXNbErug7rJVkmDXWdw5SCVn2JlARBwsqucPkvp1h5mXWxHUbBRK3bwXTrqSxSiAIQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.883_1635415349061_0.1020489245128291"},"_hasShrinkwrap":false,"publish_time":1635415349220,"_cnpm_publish_time":1635415349220,"_cnpmcore_publish_time":"2021-12-15T21:09:03.837Z"},"1.3.882":{"name":"electron-to-chromium","version":"1.3.882","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.842.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e5894438068aff3be5db0f3ca5dc36b7afa7c6d7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.882","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ec57bb0c3a97f0ddfe6e39c5a9655ea9566b2db6","size":13402,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.882.tgz","integrity":"sha512-Kllt2R9+7yEIBbASR0MReJSK9TjPmHoomLbCLRP7r4SVtSy+Y0hYIhQ7LGjnMhlAyWUtGXTiznoGsaKxEH0ttw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.882_1635386550395_0.0013951355269690158"},"_hasShrinkwrap":false,"publish_time":1635386550539,"_cnpm_publish_time":1635386550539,"_cnpmcore_publish_time":"2021-12-15T21:09:04.083Z"},"1.3.881":{"name":"electron-to-chromium","version":"1.3.881","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.841.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ce256f8c47f86b73ff6e72e215f197e30175edfe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.881","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"1282881dffa57b6111fb94cb196e558be249fbfb","size":13387,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.881.tgz","integrity":"sha512-XoAaO4CXk7FXtF2JH0PJ7KgHL1PyZ76G+NhuL337pMiOGlEWwTTSzMQyYZvxN97d9KhdLMOW8XVVk/6sN2Xflw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.881_1635372149922_0.03980535693140985"},"_hasShrinkwrap":false,"publish_time":1635372150106,"_cnpm_publish_time":1635372150106,"_cnpmcore_publish_time":"2021-12-15T21:09:04.372Z"},"1.3.880":{"name":"electron-to-chromium","version":"1.3.880","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.840.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"82acfe05a5bdf2cacb4c15037c9e8afd547d2a67","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.880","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"58d1a298c5267f2faf440683d038c50ab39a6401","size":13383,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.880.tgz","integrity":"sha512-iwIP/6WoeSimzUKJIQtjtpVDsK8Ir8qQCMXsUBwg+rxJR2Uh3wTNSbxoYRfs+3UWx/9MAnPIxVZCyWkm8MT0uw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.880_1635285752448_0.1344596241889051"},"_hasShrinkwrap":false,"publish_time":1635285752618,"_cnpm_publish_time":1635285752618,"_cnpmcore_publish_time":"2021-12-15T21:09:04.953Z"},"1.3.879":{"name":"electron-to-chromium","version":"1.3.879","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.839.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8baf29d0fba421724850ce18c091f50d507138b6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.879","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4aba9700cfb241fb95c6ed69e31785e3d1605a43","size":13378,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.879.tgz","integrity":"sha512-zJo+D9GwbJvM31IdFmwcGvychhk4KKbKYo2GWlsn+C/dxz2NwmbhGJjWwTfFSF2+eFH7VvfA8MCZ8SOqTrlnpw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.879_1635199352153_0.6651429361591703"},"_hasShrinkwrap":false,"publish_time":1635199352328,"_cnpm_publish_time":1635199352328,"_cnpmcore_publish_time":"2021-12-15T21:09:05.271Z"},"1.3.878":{"name":"electron-to-chromium","version":"1.3.878","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.838.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8469e014409f39b75ff1efb0b19b051306ce23c3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.878","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"baa9fb5c24b9b580f08fb245cbb52a22f8fc8fa8","size":13361,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.878.tgz","integrity":"sha512-O6yxWCN9ph2AdspAIszBnd9v8s11hQx8ub9w4UGApzmNRnoKhbulOWqbO8THEQec/aEHtvy+donHZMlh6l1rbA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.878_1634983350659_0.6657046019642834"},"_hasShrinkwrap":false,"publish_time":1634983350809,"_cnpm_publish_time":1634983350809,"_cnpmcore_publish_time":"2021-12-15T21:09:05.595Z"},"1.3.877":{"name":"electron-to-chromium","version":"1.3.877","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.837.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"572a07f067c1cd4fc174d1b32ff7a013d3adf556","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.877","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"956870eea7c9d8cf43cc54ea40687fee4dc0c12a","size":13345,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.877.tgz","integrity":"sha512-fT5mW5Giw5iyVukeHb2XvB4joBKvzHtl8Vs3QzE7APATpFMt/T7RWyUcIKSZzYkKQgpMbu+vDBTCHfQZvh8klA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.877_1634853751208_0.5679501732742982"},"_hasShrinkwrap":false,"publish_time":1634853751351,"_cnpm_publish_time":1634853751351,"_cnpmcore_publish_time":"2021-12-15T21:09:05.938Z"},"1.3.876":{"name":"electron-to-chromium","version":"1.3.876","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.836.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7f6b16e40f681138ae7f5345273212c8d8f88402","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.876","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fe6f65c9740406f4aa69f10faa8e1d79b81bdf34","size":13336,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.876.tgz","integrity":"sha512-a6LR4738psrubCtGx5HxM/gNlrIsh4eFTNnokgOqvQo81GWd07lLcOjITkAXn2y4lIp18vgS+DGnehj+/oEAxQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.876_1634810550607_0.5099794545550405"},"_hasShrinkwrap":false,"publish_time":1634810550764,"_cnpm_publish_time":1634810550764,"_cnpmcore_publish_time":"2021-12-15T21:09:06.366Z"},"1.3.875":{"name":"electron-to-chromium","version":"1.3.875","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.835.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3e8d2622c0203a617374f1f355d8c74d94abe754","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.875","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"22b24906497e816109262830ae6526ca11699779","size":13326,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.875.tgz","integrity":"sha512-K/rqxvLwZOshysgPOqfU1x8rfdFXyieYLdT1JYlLHkLj8gI/4Qh4Xi+KrO6kq4t3aNhp/wGSGOyR4ooYvXbvyg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.875_1634781749826_0.23140167657715938"},"_hasShrinkwrap":false,"publish_time":1634781750110,"_cnpm_publish_time":1634781750110,"_cnpmcore_publish_time":"2021-12-15T21:09:06.639Z"},"1.3.874":{"name":"electron-to-chromium","version":"1.3.874","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.834.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b45b1e603081a27dfd713455ee0546bfaed29e4f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.874","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"75d68ce2b3a778346916ae1293f80f389ecf439c","size":13312,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.874.tgz","integrity":"sha512-OxEyMXzLi6Y9UMPgyjP6XSuIsgD1xgK2FWnek/toV3G0Zr89bKSuNaX8YRM5hWtSaNEiL/TqubOvwtDTU3pwZA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.874_1634767350951_0.18304453089778816"},"_hasShrinkwrap":false,"publish_time":1634767351121,"_cnpm_publish_time":1634767351121,"_cnpmcore_publish_time":"2021-12-15T21:09:06.930Z"},"1.3.873":{"name":"electron-to-chromium","version":"1.3.873","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.833.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a2d0b4e6dada1a08b5c969032303aa81244d0b90","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.873","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c238c9199e4951952fe815a65c1beab5db4826b8","size":13289,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.873.tgz","integrity":"sha512-TiHlCgl2uP26Z0c67u442c0a2MZCWZNCRnPTQDPhVJ4h9G6z2zU0lApD9H0K9R5yFL5SfdaiVsVD2izOY24xBQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.873_1634680950834_0.8019388845213313"},"_hasShrinkwrap":false,"publish_time":1634680951027,"_cnpm_publish_time":1634680951027,"_cnpmcore_publish_time":"2021-12-15T21:09:07.196Z"},"1.3.872":{"name":"electron-to-chromium","version":"1.3.872","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.832.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8f0537bd16af79c184afa235cb974fe0b66d6fed","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.872","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2311a82f344d828bab6904818adc4afb57b35369","size":13281,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.872.tgz","integrity":"sha512-qG96atLFY0agKyEETiBFNhpRLSXGSXOBuhXWpbkYqrLKKASpRyRBUtfkn0ZjIf/yXfA7FA4nScVOMpXSHFlUCQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.872_1634594550515_0.5367919553719629"},"_hasShrinkwrap":false,"publish_time":1634594550741,"_cnpm_publish_time":1634594550741,"_cnpmcore_publish_time":"2021-12-15T21:09:07.463Z"},"1.3.871":{"name":"electron-to-chromium","version":"1.3.871","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.831.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2461f31fde54227a3655a107781a7398dbaec711","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.871","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6e87365fd72037a6c898fb46050ad4be3ac9ef62","size":13275,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.871.tgz","integrity":"sha512-qcLvDUPf8DSIMWarHT2ptgcqrYg62n3vPA7vhrOF24d8UNzbUBaHu2CySiENR3nEDzYgaN60071t0F6KLYMQ7Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.871_1634335348794_0.8637214759277732"},"_hasShrinkwrap":false,"publish_time":1634335348977,"_cnpm_publish_time":1634335348977,"_cnpmcore_publish_time":"2021-12-15T21:09:07.782Z"},"1.3.870":{"name":"electron-to-chromium","version":"1.3.870","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.830.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"10789c92d253b19f007803867afe6b151d58b69a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.870","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c15c921e66a46985181b261f8093b91c2abb6604","size":13249,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz","integrity":"sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.870_1634263350059_0.5855129573558713"},"_hasShrinkwrap":false,"publish_time":1634263350282,"_cnpm_publish_time":1634263350282,"_cnpmcore_publish_time":"2021-12-15T21:09:08.034Z"},"1.3.869":{"name":"electron-to-chromium","version":"1.3.869","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.829.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8926306eaf52a8b8393231a0086f696e84c57c1a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.869","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c319171803d796639b1af3ddbf07a5a087037ccb","size":13230,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.869.tgz","integrity":"sha512-mcoyZ2jd691yAx0OHqqGw+aPCcRYVDw/bqPy660aBfcQkUcWcfAVsbL4M9WeevflKH4MfpKCtnOngVLM7HzSzA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.869_1634248950477_0.12737771929747077"},"_hasShrinkwrap":false,"publish_time":1634248950627,"_cnpm_publish_time":1634248950627,"_cnpmcore_publish_time":"2021-12-15T21:09:08.246Z"},"1.3.868":{"name":"electron-to-chromium","version":"1.3.868","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.828.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0508ca136ffe97e4f01afc25328c72d773d0270a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.868","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ed835023b57ecf0ba63dfe7d50e16b53758ab1da","size":13217,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.868.tgz","integrity":"sha512-kZYCHqwJ1ctGrYDlOcWQH+/AftAm/KD4lEnLDNwS0kKwx1x6dU4zv+GuDjsPPOGn/2TjnKBaZjDyjXaoix0q/A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.868_1634205750491_0.16339538702070322"},"_hasShrinkwrap":false,"publish_time":1634205750692,"_cnpm_publish_time":1634205750692,"_cnpmcore_publish_time":"2021-12-15T21:09:08.507Z"},"1.3.867":{"name":"electron-to-chromium","version":"1.3.867","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.827.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"eb11329b360e1fc4cae61cb54890f8f766853e77","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.867","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7cb484db4b57c28da0b65c51e434c3a1f3f9aa0d","size":13207,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.867.tgz","integrity":"sha512-WbTXOv7hsLhjJyl7jBfDkioaY++iVVZomZ4dU6TMe/SzucV6mUAs2VZn/AehBwuZMiNEQDaPuTGn22YK5o+aDw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.867_1634076151059_0.3291505168190918"},"_hasShrinkwrap":false,"publish_time":1634076151239,"_cnpm_publish_time":1634076151239,"_cnpmcore_publish_time":"2021-12-15T21:09:08.776Z"},"1.3.866":{"name":"electron-to-chromium","version":"1.3.866","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.826.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ab0232b60ab923813456d5c2b8ac8dcda4ed4f4b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.866","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d446338f5ad6948b27a50739760e7b0b5cc5032f","size":13207,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.866.tgz","integrity":"sha512-iYze6TpDXWxk+sfcpUUdTs6Pv/3kG45Pnjer2DxEeFw0N08bZeNLuz97s2lMgy8yObon48o0WHY2Bkg3xuAPOA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.866_1634004147263_0.5153311940169751"},"_hasShrinkwrap":false,"publish_time":1634004147627,"_cnpm_publish_time":1634004147627,"_cnpmcore_publish_time":"2021-12-15T21:09:09.039Z"},"1.3.865":{"name":"electron-to-chromium","version":"1.3.865","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.825.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c09ee2e447dc212e5c9ab6691253cf2536befe52","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.865","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fae7325066595d4ab98e21533b2c276b103c3138","size":13194,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.865.tgz","integrity":"sha512-okGcCKfihgGlaROMFNPQ6eaU3bk9Xa68rLYSnVD2PyIqM5B/vyQoXCpB3p1HI3AXio097ROVBlSO4JZVilUWuA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.865_1633989752161_0.7423822117423966"},"_hasShrinkwrap":false,"publish_time":1633989752358,"_cnpm_publish_time":1633989752358,"_cnpmcore_publish_time":"2021-12-15T21:09:09.293Z"},"1.3.864":{"name":"electron-to-chromium","version":"1.3.864","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.823.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ad9446a3204e57bedb256e58cbd0d41e9e44b4c9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.864","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6a993bcc196a2b8b3df84d28d5d4dd912393885f","size":13177,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.864.tgz","integrity":"sha512-v4rbad8GO6/yVI92WOeU9Wgxc4NA0n4f6P1FvZTY+jyY7JHEhw3bduYu60v3Q1h81Cg6eo4ApZrFPuycwd5hGw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.864_1633744946832_0.26805396423994043"},"_hasShrinkwrap":false,"publish_time":1633744946997,"_cnpm_publish_time":1633744946997,"_cnpmcore_publish_time":"2021-12-15T21:09:09.559Z"},"1.3.863":{"name":"electron-to-chromium","version":"1.3.863","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.822.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"945fd436a6066152e2b9ce51a020feb925ca08a1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.863","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"74d0e6474f2bd87eb3688b8a35abc0c7a7fd1183","size":13171,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.863.tgz","integrity":"sha512-C+dLP4xM1DCqvEUjtqCGhd6DJGnXq1t03QR2ZxEWUQPkaXxDlzPUyWsSh17LHLQBEfmBCRfTbA3LpjiVikWsxg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.863_1633730552457_0.06473088178503272"},"_hasShrinkwrap":false,"publish_time":1633730552615,"_cnpm_publish_time":1633730552615,"_cnpmcore_publish_time":"2021-12-15T21:09:09.766Z"},"1.3.862":{"name":"electron-to-chromium","version":"1.3.862","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.820.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"88a6e9bcf114c757ccb04d125ccbb15bf9f069f7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.862","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c1c5d4382449e2c9b0e67fe1652f4fc451d6d8c0","size":13152,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.862.tgz","integrity":"sha512-o+FMbCD+hAUJ9S8bfz/FaqA0gE8OpCCm58KhhGogOEqiA1BLFSoVYLi+tW+S/ZavnqBn++n0XZm7HQiBVPs8Jg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.862_1633644148948_0.475962050275585"},"_hasShrinkwrap":false,"publish_time":1633644149130,"_cnpm_publish_time":1633644149130,"_cnpmcore_publish_time":"2021-12-15T21:09:09.991Z"},"1.3.861":{"name":"electron-to-chromium","version":"1.3.861","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.819.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2fd7202c3add4aba69bf44fa059e36301b1d7676","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.861","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"981e37a79af7a7b29bbaeed36376f4795527de13","size":13147,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.861.tgz","integrity":"sha512-GZyflmpMnZRdZ1e2yAyvuFwz1MPSVQelwHX4TJZyXypB8NcxdPvPNwy5lOTxnlkrK13EiQzyTPugRSnj6cBgKg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.861_1633557747110_0.35407397970446763"},"_hasShrinkwrap":false,"publish_time":1633557747280,"_cnpm_publish_time":1633557747280,"_cnpmcore_publish_time":"2021-12-15T21:09:10.254Z"},"1.3.860":{"name":"electron-to-chromium","version":"1.3.860","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.817.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ca874fc83856d5c81da1a5676052faf6f72430f2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.860","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d612e54ed75fa524c12af8da3ad8121ebfe2802b","size":13125,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.860.tgz","integrity":"sha512-gWwGZ+Wv4Mou2SJRH6JQzhTPjL5f95SX7n6VkLTQ/Q/INsZLZNQ1vH2GlZjozKyvT0kkFuCmWTwIoCj+/hUDPw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.860_1633471349706_0.95373282675666"},"_hasShrinkwrap":false,"publish_time":1633471349868,"_cnpm_publish_time":1633471349868,"_cnpmcore_publish_time":"2021-12-15T21:09:10.499Z"},"1.3.859":{"name":"electron-to-chromium","version":"1.3.859","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.816.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2b725d54cc4f030084de3fcf5634b13925e1b216","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.859","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4e0abc918e1c22b306ba13b4c3649f78295f5937","size":13112,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.859.tgz","integrity":"sha512-gXRXKNWedfdiKIzwr0Mg/VGCvxXzy+4SuK9hp1BDvfbCwx0O5Ot+2f4CoqQkqEJ3Zj/eAV/GoAFgBVFgkBLXuQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.859_1633399350366_0.014494405128769428"},"_hasShrinkwrap":false,"publish_time":1633399350552,"_cnpm_publish_time":1633399350552,"_cnpmcore_publish_time":"2021-12-15T21:09:10.786Z"},"1.3.858":{"name":"electron-to-chromium","version":"1.3.858","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.815.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7a3e2d432e48f90f5418d850fc98c9daecf4dff7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.858","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"49eb5be51faa85fc85d153e8be527eef7ff99121","size":13106,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.858.tgz","integrity":"sha512-EZ0dTXxTX+rgZC8YDVqKNMyp1Ty3hi1LyQwVBBioV7iiYYjFakokumRsIUhNz5ho+QlNKf7iNY5KLdpdH3yqBw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.858_1633384949770_0.2514490426961673"},"_hasShrinkwrap":false,"publish_time":1633384949969,"_cnpm_publish_time":1633384949969,"_cnpmcore_publish_time":"2021-12-15T21:09:10.998Z"},"1.3.857":{"name":"electron-to-chromium","version":"1.3.857","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.814.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4d200e82fcdd747803229ec807c2f8e1f35cc1c8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.857","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dcc239ff8a12b6e4b501e6a5ad20fd0d5a3210f9","size":13095,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.857.tgz","integrity":"sha512-a5kIr2lajm4bJ5E4D3fp8Y/BRB0Dx2VOcCRE5Gtb679mXIME/OFhWler8Gy2ksrf8gFX+EFCSIGA33FB3gqYpg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.857_1633125747164_0.10755794195439794"},"_hasShrinkwrap":false,"publish_time":1633125747305,"_cnpm_publish_time":1633125747305,"_cnpmcore_publish_time":"2021-12-15T21:09:11.178Z"},"1.3.856":{"name":"electron-to-chromium","version":"1.3.856","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.813.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f33ef1ad4ea16edbccd31d8f62874dbe2bd21af1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.856","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"75dee0eef9702bffabbf4c1293c989cd3cacb7ba","size":13063,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.856.tgz","integrity":"sha512-lSezYIe1/p5qkEswAfaQUseOBiwGwuCvRl/MKzOEVe++DcmQ92+43dznDl4rFJ4Zpu+kevhwyIf7KjJevyDA/A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.856_1633053747747_0.7523906955365023"},"_hasShrinkwrap":false,"publish_time":1633053747920,"_cnpm_publish_time":1633053747920,"_cnpmcore_publish_time":"2021-12-15T21:09:11.382Z"},"1.3.855":{"name":"electron-to-chromium","version":"1.3.855","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.812.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1afa8a5e9bd09968b382fe2678d24842771f4a76","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.855","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bfc75867d6aaf19f0d40ab02f0b1f60ad6866b02","size":13021,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.855.tgz","integrity":"sha512-4g104x65rHM+Wv/0VPh36s6YRBXP4mebpLSNtwTOpUvxyzAmdQGPoxYdg4MiaxvQnJh2xxcAwDOXYa1SMRr2WQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.855_1633039346622_0.8924886366135969"},"_hasShrinkwrap":false,"publish_time":1633039347006,"_cnpm_publish_time":1633039347006,"_cnpmcore_publish_time":"2021-12-15T21:09:11.657Z"},"1.3.854":{"name":"electron-to-chromium","version":"1.3.854","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.811.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f63898a23eefd914cc308ae343369282c54bd82b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.854","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"003f0b9c80eccc35be0ef04a0e0b1c31a10b90d5","size":13014,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.854.tgz","integrity":"sha512-00/IIC1mFPkq32MhUJyLdcTp7+wsKK2G3Sb65GSas9FKJQGYkDcZ4GwJkkxf5YyM3ETvl6n+toV8OmtXl4IA/g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.854_1632952948111_0.7354452416828947"},"_hasShrinkwrap":false,"publish_time":1632952948482,"_cnpm_publish_time":1632952948482,"_cnpmcore_publish_time":"2021-12-15T21:09:12.314Z"},"1.3.853":{"name":"electron-to-chromium","version":"1.3.853","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.810.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5940b64b1df94db90d9476a6062445dfd189e084","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.853","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f3ed1d31f092cb3a17af188bca6c6a3ec91c3e82","size":12988,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.853.tgz","integrity":"sha512-W4U8n+U8I5/SUaFcqZgbKRmYZwcyEIQVBDf+j5QQK6xChjXnQD+wj248eGR9X4u+dDmDR//8vIfbu4PrdBBIoQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.853_1632866546356_0.9585509272999162"},"_hasShrinkwrap":false,"publish_time":1632866546535,"_cnpm_publish_time":1632866546535,"_cnpmcore_publish_time":"2021-12-15T21:09:12.556Z"},"1.3.852":{"name":"electron-to-chromium","version":"1.3.852","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.809.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d65d1f8ad4b5b3b1ef0edd83e65526b0aeaa938a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.852","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"04091fd848b38e7248e4eb70c05e1f9befd2671b","size":12983,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.852.tgz","integrity":"sha512-vNbdzbbx3d7TStoC0oIVYz6X/tIezHXnreI+4a8I7EqAQ9hpHulz3ar8xChUNcG77A+TtPSKz9B9Xwpt9e1B5w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.852_1632837750328_0.13338621659077954"},"_hasShrinkwrap":false,"publish_time":1632837750446,"_cnpm_publish_time":1632837750446,"_cnpmcore_publish_time":"2021-12-15T21:09:12.750Z"},"1.3.851":{"name":"electron-to-chromium","version":"1.3.851","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.808.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"cded56cc44d8e6ebe327ac783a3e3cd1198f022c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.851","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"457846fce94d5de25511570435a94f1a622203ac","size":12969,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.851.tgz","integrity":"sha512-Ak970eGtRSoHTaJkoDjdkeXYetbwm5Bl9pN/nPOQ3QzLfw1EWRjReOlWUra6o58SVgxfpwOT9U2P1BUXoJ57dw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.851_1632794554270_0.9035120275495276"},"_hasShrinkwrap":false,"publish_time":1632794554603,"_cnpm_publish_time":1632794554603,"_cnpmcore_publish_time":"2021-12-15T21:09:12.987Z"},"1.3.850":{"name":"electron-to-chromium","version":"1.3.850","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.807.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"11110a20072068eade6e487ef9014bde65d0203b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.850","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c56c72abfeab051b4b328beb894461c5912d0456","size":12968,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.850.tgz","integrity":"sha512-ZzkDcdzePeF4dhoGZQT77V2CyJOpwfTZEOg4h0x6R/jQhGt/rIRpbRyVreWLtD7B/WsVxo91URm2WxMKR9JQZA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.850_1632520948673_0.5862963855087786"},"_hasShrinkwrap":false,"publish_time":1632520948850,"_cnpm_publish_time":1632520948850,"_cnpmcore_publish_time":"2021-12-15T21:09:13.226Z"},"1.3.849":{"name":"electron-to-chromium","version":"1.3.849","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.806.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8ff0c9101ae7a48851f8435aaaa88d21b0c71df7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.849","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"45a65a392565abc5b864624b9753393336426f4b","size":12966,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.849.tgz","integrity":"sha512-RweyW60HPOqIcxoKTGr38Yvtf2aliSUqX8dB3e9geJ0Bno0YLjcOX5F7/DPVloBkJWaPZ7xOM1A0Yme2T1A34w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.849_1632434547455_0.6829020043201419"},"_hasShrinkwrap":false,"publish_time":1632434547621,"_cnpm_publish_time":1632434547621,"_cnpmcore_publish_time":"2021-12-15T21:09:13.823Z"},"1.3.848":{"name":"electron-to-chromium","version":"1.3.848","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.805.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8a3acfe3c7547a035fb74c1ba2dd5d70548c0cb7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.848","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"94cc196e496f33c0d71cd98561448f10018584cc","size":12949,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.848.tgz","integrity":"sha512-wchRyBcdcmibioggdO7CbMT5QQ4lXlN/g7Mkpf1K2zINidnqij6EVu94UIZ+h5nB2S9XD4bykqFv9LonAWLFyw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.848_1632362549164_0.8346628644463361"},"_hasShrinkwrap":false,"publish_time":1632362549331,"_cnpm_publish_time":1632362549331,"_cnpmcore_publish_time":"2021-12-15T21:09:14.060Z"},"1.3.847":{"name":"electron-to-chromium","version":"1.3.847","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.804.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"cd44bbdce8bf1d48eb792d875201fef0fbd71b3a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.847","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d3184fec571dae68f502720dbb74572cd0012414","size":12921,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.847.tgz","integrity":"sha512-u2VQOKACHgflbu9TAAiJ9UPaQj6AD0dijL79wdqTAzFz86GXSTTPyaoxP3gZflH+r0DAlY0jD4G0TqzHzLN6Vg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.847_1632348148632_0.4158955410251941"},"_hasShrinkwrap":false,"publish_time":1632348148819,"_cnpm_publish_time":1632348148819,"_cnpmcore_publish_time":"2021-12-15T21:09:14.442Z"},"1.3.846":{"name":"electron-to-chromium","version":"1.3.846","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.802.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2a134046feb1a948d8d573f4fa8dda185de69dc7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.846","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a55fd59613dbcaed609e965e3e88f42b08c401d3","size":12916,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.846.tgz","integrity":"sha512-2jtSwgyiRzybHRxrc2nKI+39wH3AwQgn+sogQ+q814gv8hIFwrcZbV07Ea9f8AmK0ufPVZUvvAG1uZJ+obV4Jw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.846_1632261746655_0.08105524314727375"},"_hasShrinkwrap":false,"publish_time":1632261746922,"_cnpm_publish_time":1632261746922,"_cnpmcore_publish_time":"2021-12-15T21:09:14.834Z"},"1.3.845":{"name":"electron-to-chromium","version":"1.3.845","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.800.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"02ed55b2f75d9b079c344c0f5ef8c17283740bb9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.845","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"326d3be3ee5d2c065f689119d441c997f9fd41d8","size":12898,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.845.tgz","integrity":"sha512-y0RorqmExFDI4RjLEC6j365bIT5UAXf9WIRcknvSFHVhbC/dRnCgJnPA3DUUW6SCC85QGKEafgqcHJ6uPdEP1Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.845_1632189753790_0.7575605976571256"},"_hasShrinkwrap":false,"publish_time":1632189753991,"_cnpm_publish_time":1632189753991,"_cnpmcore_publish_time":"2021-12-15T21:09:15.111Z"},"1.3.844":{"name":"electron-to-chromium","version":"1.3.844","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.799.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"97216e4d7662c7c1f0f74ac193fa3fb663d1c81f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.844","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a68f6df900489eaf1f42e60bb01b3ba5dde2409c","size":12893,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.844.tgz","integrity":"sha512-7ES6GQVsbgsUA49/apqub51I9ij8E3QwGqq/IRvO6OPCly3how/YUSg1GPslRWq+BteT2h94iAIQdJbuVVH4Pg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.844_1632175348617_0.9701367463234798"},"_hasShrinkwrap":false,"publish_time":1632175348782,"_cnpm_publish_time":1632175348782,"_cnpmcore_publish_time":"2021-12-15T21:09:15.576Z"},"1.3.843":{"name":"electron-to-chromium","version":"1.3.843","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.798.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"87dd5f487469865693794730901f7050ffdf27c7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.843","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"671489bd2f59fd49b76adddc1aa02c88cd38a5c0","size":12880,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.843.tgz","integrity":"sha512-OWEwAbzaVd1Lk9MohVw8LxMXFlnYd9oYTYxfX8KS++kLLjDfbovLOcEEXwRhG612dqGQ6+44SZvim0GXuBRiKg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.843_1631916148024_0.9730568865708236"},"_hasShrinkwrap":false,"publish_time":1631916148319,"_cnpm_publish_time":1631916148319,"_cnpmcore_publish_time":"2021-12-15T21:09:16.223Z"},"1.3.842":{"name":"electron-to-chromium","version":"1.3.842","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.797.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2d1f00710e011bc3bfcd05315c52740a75150f82","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.842","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"641e414012dded277468892c0156cb01984f4f6f","size":12873,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.842.tgz","integrity":"sha512-P/nDMPIYdb2PyqCQwhTXNi5JFjX1AsDVR0y6FrHw752izJIAJ+Pn5lugqyBq4tXeRSZBMBb2ZGvRGB1djtELEQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.842_1631844155107_0.8903261433171881"},"_hasShrinkwrap":false,"publish_time":1631844155263,"_cnpm_publish_time":1631844155263,"_cnpmcore_publish_time":"2021-12-15T21:09:16.455Z"},"1.3.841":{"name":"electron-to-chromium","version":"1.3.841","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.796.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0f4b464e2c0f030f10d6c7469960bc050eabfa77","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.841","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c3088948462df0dea552877ad0902df6d0d55de0","size":12872,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.841.tgz","integrity":"sha512-0w3dJaRfl4A+LfbdvZaGT3JPm6TbTYKeJj8y5YWaEI9Z4WBNIshlzxL3S1msMGpuhiMZQE9cfgAV8oMib+Z4Tg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.841_1631829745682_0.21403688824115585"},"_hasShrinkwrap":false,"publish_time":1631829745868,"_cnpm_publish_time":1631829745868,"_cnpmcore_publish_time":"2021-12-15T21:09:16.730Z"},"1.3.840":{"name":"electron-to-chromium","version":"1.3.840","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.794.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"bdbbdbfcce12f2e018ddf2659a9165252af63773","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.840","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3f2a1df97015d9b1db5d86a4c6bd4cdb920adcbb","size":12869,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.840.tgz","integrity":"sha512-yRoUmTLDJnkIJx23xLY7GbSvnmDCq++NSuxHDQ0jiyDJ9YZBUGJcrdUqm+ZwZFzMbCciVzfem2N2AWiHJcWlbw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.840_1631743346997_0.9593358241840964"},"_hasShrinkwrap":false,"publish_time":1631743347172,"_cnpm_publish_time":1631743347172,"_cnpmcore_publish_time":"2021-12-15T21:09:16.979Z"},"1.3.839":{"name":"electron-to-chromium","version":"1.3.839","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.793.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8b5ffbd5a63245938af143b84ec0df35ec89a5be","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.839","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"27a5b21468e9fefb0e328a029403617f20acec9c","size":12860,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.839.tgz","integrity":"sha512-0O7uPs9LJNjQ/U5mW78qW8gXv9H6Ba3DHZ5/yt8aBsvomOWDkV3MddT7enUYvLQEUVOURjWmgJJWVZ3K98tIwQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.839_1631671346827_0.9407472627487421"},"_hasShrinkwrap":false,"publish_time":1631671346962,"_cnpm_publish_time":1631671346962,"_cnpmcore_publish_time":"2021-12-15T21:09:17.288Z"},"1.3.838":{"name":"electron-to-chromium","version":"1.3.838","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.792.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"44060a8be2c209bc6ad6c308167879c794952693","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.838","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d178b34a268c750c0444ba69e4c94d4c4fb3aa0d","size":12849,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.838.tgz","integrity":"sha512-65O6UJiyohFAdX/nc6KJ0xG/4zOn7XCO03kQNNbCeMRGxlWTLzc6Uyi0tFNQuuGWqySZJi8CD2KXPXySVYmzMA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.838_1631584949323_0.8911508307954745"},"_hasShrinkwrap":false,"publish_time":1631584949512,"_cnpm_publish_time":1631584949512,"_cnpmcore_publish_time":"2021-12-15T21:09:17.968Z"},"1.3.837":{"name":"electron-to-chromium","version":"1.3.837","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.791.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4b32c9b6796efcd37c771248242247bd4e556bf0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.837","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3a807540df47b85fb819481539b8ed9083b0a3b5","size":12826,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.837.tgz","integrity":"sha512-AWDQiLSmSXg7/cDwMtkl7v3od7yLGQmvP2uydZYx4L2GEWUUFbCEfR72aCIB8ig3zI+vqYwvPScKfma3LD5xNw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.837_1631570545501_0.5709586762977532"},"_hasShrinkwrap":false,"publish_time":1631570545713,"_cnpm_publish_time":1631570545713,"_cnpmcore_publish_time":"2021-12-15T21:09:18.453Z"},"1.3.836":{"name":"electron-to-chromium","version":"1.3.836","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.790.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f45b0b0f7c8949501693f563248f0016fd1c3169","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.836","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"823cb9c98f28c64c673920f1c90ea3826596eaf9","size":12814,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.836.tgz","integrity":"sha512-Ney3pHOJBWkG/AqYjrW0hr2AUCsao+2uvq9HUlRP8OlpSdk/zOHOUJP7eu0icDvePC9DlgffuelP4TnOJmMRUg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.836_1631311347827_0.5793721876245184"},"_hasShrinkwrap":false,"publish_time":1631311348059,"_cnpm_publish_time":1631311348059,"_cnpmcore_publish_time":"2021-12-15T21:09:18.772Z"},"1.3.835":{"name":"electron-to-chromium","version":"1.3.835","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.789.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e9e6dab6ecd1a36bc7a33715df920cb9e02029bd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.835","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"98fa4402ab7bc6afbe4953a8ca9b63cb3a6bf08b","size":12810,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.835.tgz","integrity":"sha512-rHQszGg2KLMqOWPNTpwCnlp7Kb85haJa8j089DJCreZueykoSN/in+EMlay3SSDMNKR4VGPvfskxofHV18xVJg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.835_1631239347271_0.5703101221719005"},"_hasShrinkwrap":false,"publish_time":1631239347375,"_cnpm_publish_time":1631239347375,"_cnpmcore_publish_time":"2021-12-15T21:09:19.073Z"},"1.3.834":{"name":"electron-to-chromium","version":"1.3.834","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.788.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f26b2c6e47238baca229d6af58eccfe7e8a9a957","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.834","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"57a94f4a6529c926a8c332b184b291230a3f2140","size":12808,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.834.tgz","integrity":"sha512-9hnYJOlj2zbVn59Oy1R2mW/jntsRG7Gy56/aAOq8s29DzDYW/kOrq/ryJXGAQRRMg4MreHjI63XavGZTsnPubg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.834_1631224946223_0.8416896140050094"},"_hasShrinkwrap":false,"publish_time":1631224946357,"_cnpm_publish_time":1631224946357,"_cnpmcore_publish_time":"2021-12-15T21:09:19.262Z"},"1.3.833":{"name":"electron-to-chromium","version":"1.3.833","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.786.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"32d060a14eb0708590bf0660afae80ed051266a0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.833","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e1394eb32ab8a9430ffd7d5adf632ce6c3b05e18","size":12805,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.833.tgz","integrity":"sha512-h+9aVaUHjyunLqtCjJF2jrJ73tYcJqo2cCGKtVAXH9WmnBsb8hiChRQ0P1uXjdxR6Wcfxibephy41c1YlZA/pA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.833_1631138548590_0.31192159187870905"},"_hasShrinkwrap":false,"publish_time":1631138548783,"_cnpm_publish_time":1631138548783,"_cnpmcore_publish_time":"2021-12-15T21:09:19.465Z"},"1.3.832":{"name":"electron-to-chromium","version":"1.3.832","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.785.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9870bb959559ac139fc94e89512b1c21439c6798","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.832","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b947205525a7825eff9b39566140d5471241c244","size":12794,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.832.tgz","integrity":"sha512-x7lO8tGoW0CyV53qON4Lb5Rok9ipDelNdBIAiYUZ03dqy4u9vohMM1qV047+s/hiyJiqUWX/3PNwkX3kexX5ig=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.832_1631052147157_0.049923163488146294"},"_hasShrinkwrap":false,"publish_time":1631052147306,"_cnpm_publish_time":1631052147306,"_cnpmcore_publish_time":"2021-12-15T21:09:19.688Z"},"1.3.831":{"name":"electron-to-chromium","version":"1.3.831","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.784.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1fe480c3151e43226009c06a16049616ade71465","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.831","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"96201f83f6eef05054b532a897fd3cd73cd60250","size":12796,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.831.tgz","integrity":"sha512-0tc2lPzgEipHCyRcvDTTaBk5+jSPfNaCvbQdevNMqJkHLvrBiwhygPR0hDyPZEK7Xztvv+58gSFKJ/AUVT1yYQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.831_1631023349291_0.2894481736941674"},"_hasShrinkwrap":false,"publish_time":1631023349452,"_cnpm_publish_time":1631023349452,"_cnpmcore_publish_time":"2021-12-15T21:09:19.950Z"},"1.3.830":{"name":"electron-to-chromium","version":"1.3.830","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.783.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"437699cfbd08ba110e9b097d441516c9f6d11a1e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.830","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"40e3144204f8ca11b2cebec83cf14c20d3499236","size":12774,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.830.tgz","integrity":"sha512-gBN7wNAxV5vl1430dG+XRcQhD4pIeYeak6p6rjdCtlz5wWNwDad8jwvphe5oi1chL5MV6RNRikfffBBiFuj+rQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.830_1630706547108_0.3644878823870614"},"_hasShrinkwrap":false,"publish_time":1630706547285,"_cnpm_publish_time":1630706547285,"_cnpmcore_publish_time":"2021-12-15T21:09:20.137Z"},"1.3.829":{"name":"electron-to-chromium","version":"1.3.829","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.782.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"40f94a71335cb89b9cd35fd88595104652a199a3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.829","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"efd360b594824fcd84e24c6eb0c8e41e2a44fbc7","size":12767,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.829.tgz","integrity":"sha512-5EXDbvsaLRxS1UOfRr8Hymp3dR42bvBNPgzVuPwUFj3v66bpvDUcNwwUywQUQYn/scz26/3Sgd3fNVGQOlVwvQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.829_1630663347134_0.17690239457882062"},"_hasShrinkwrap":false,"publish_time":1630663347262,"_cnpm_publish_time":1630663347262,"_cnpmcore_publish_time":"2021-12-15T21:09:20.428Z"},"1.3.828":{"name":"electron-to-chromium","version":"1.3.828","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.781.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"bb08ea4577048066b756c4ff1e8e7d3ea120564c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.828","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0dee975b5bf45d6357af266f350fcdb6736a5e40","size":12750,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.828.tgz","integrity":"sha512-2kx537tLqIVfUpx7LRknZce5PcCyxyBB1YUVOhxlkrDoCqFITGJGYfBAvSxGOdqlp+R9pHeU9Ai/dsHgsqjrvQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.828_1630620145712_0.8787076866629082"},"_hasShrinkwrap":false,"publish_time":1630620145845,"_cnpm_publish_time":1630620145845,"_cnpmcore_publish_time":"2021-12-15T21:09:20.687Z"},"1.3.827":{"name":"electron-to-chromium","version":"1.3.827","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.780.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a211b56d43aee46422413e280d70df323923bd0d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.827","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c725e8db8c5be18b472a919e5f57904512df0fc1","size":12744,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.827.tgz","integrity":"sha512-ye+4uQOY/jbjRutMcE/EmOcNwUeo1qo9aKL2tPyb09cU3lmxNeyDF4RWiemmkknW+p29h7dyDqy02higTxc9/A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.827_1630533754189_0.2058354586165172"},"_hasShrinkwrap":false,"publish_time":1630533754346,"_cnpm_publish_time":1630533754346,"_cnpmcore_publish_time":"2021-12-15T21:09:20.913Z"},"1.3.826":{"name":"electron-to-chromium","version":"1.3.826","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.779.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"47d6bd8fcb36df49ead3388aba19ee2d546063ec","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.826","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dbe356b1546b39d83bcd47e675a9c5f61dadaed2","size":12735,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.826.tgz","integrity":"sha512-bpLc4QU4B8PYmdO4MSu2ZBTMD8lAaEXRS43C09lB31BvYwuk9UxgBRXbY5OJBw7VuMGcg2MZG5FyTaP9u4PQnw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.826_1630461747629_0.250440459145711"},"_hasShrinkwrap":false,"publish_time":1630461747791,"_cnpm_publish_time":1630461747791,"_cnpmcore_publish_time":"2021-12-15T21:09:21.158Z"},"1.3.825":{"name":"electron-to-chromium","version":"1.3.825","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.778.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7f66c8cc6e7d024ab976a9a0b47c70542a20a5c1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.825","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"5d361eeaaf591bb2ce06cfeff86354b429d662b8","size":12687,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.825.tgz","integrity":"sha512-BO3FfWVeH8GQ0DBbi4HCL09OPgvN+0goqWlgKOCmCXcnrlgL5GA69nb7ZyjpWgpFUacBftg8BrXU2WLOSuHAxQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.825_1630447345960_0.12294067948376464"},"_hasShrinkwrap":false,"publish_time":1630447346122,"_cnpm_publish_time":1630447346122,"_cnpmcore_publish_time":"2021-12-15T21:09:21.390Z"},"1.3.824":{"name":"electron-to-chromium","version":"1.3.824","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.777.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1ef6cf1c834f2afcedbf79dafe979d5a63add158","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.824","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"9f85cc826c70b12180009d461e3b19c8121a56d2","size":12682,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.824.tgz","integrity":"sha512-Fk+5aD0HDi9i9ZKt9n2VPOZO1dQy7PV++hz2wJ/KIn+CvVfu4fny39squHtyVDPuHNuoJGAZIbuReEklqYIqfA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.824_1630375345891_0.9057815558953761"},"_hasShrinkwrap":false,"publish_time":1630375346705,"_cnpm_publish_time":1630375346705,"_cnpmcore_publish_time":"2021-12-15T21:09:21.596Z"},"1.3.823":{"name":"electron-to-chromium","version":"1.3.823","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.776.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"fa0d4b8cb56490d7cb494e17b2ced6828d263b35","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.823","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ebcc606e6e0c08f92e553276711dc30a7ea43c02","size":12675,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.823.tgz","integrity":"sha512-jbwqBmqo9ZBWNfz6EKDTx66rqRDt87ZbOxtUegYNpkVMX6z93PMaFbDy7/LIPRwMI/5T4GVcYkROWDPQm9Ni7A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.823_1630360947277_0.653030896068105"},"_hasShrinkwrap":false,"publish_time":1630360947649,"_cnpm_publish_time":1630360947649,"_cnpmcore_publish_time":"2021-12-15T21:09:21.811Z"},"1.3.822":{"name":"electron-to-chromium","version":"1.3.822","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.775.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"375aafdbcaa66f3bb36d2ad4ec8efddfe1191fc7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.822","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7036edc7f669b0aa79e9801dc5f56866c6ddc0b2","size":12661,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.822.tgz","integrity":"sha512-k7jG5oYYHxF4jx6PcqwHX3JVME/OjzolqOZiIogi9xtsfsmTjTdie4x88OakYFPEa8euciTgCCzvVNwvmjHb1Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.822_1630116146700_0.17296440938685675"},"_hasShrinkwrap":false,"publish_time":1630116146830,"_cnpm_publish_time":1630116146830,"_cnpmcore_publish_time":"2021-12-15T21:09:22.013Z"},"1.3.821":{"name":"electron-to-chromium","version":"1.3.821","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.774.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"111378e1ed4153cd5e7af0a8b6cbbff605fb9aff","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.821","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fe2ba857345b0c51f5226af5f96d6a309f00435b","size":12648,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.821.tgz","integrity":"sha512-IadPc2Ep1RGFYfLYdp0FTOgdPUDg3lvH7vqwGGdAuHtbnVc8M2qldS+SGESzmUaXpaSqpzROozQcBKFiRSKpOg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.821_1630101748622_0.453531674553282"},"_hasShrinkwrap":false,"publish_time":1630101748993,"_cnpm_publish_time":1630101748993,"_cnpmcore_publish_time":"2021-12-15T21:09:22.282Z"},"1.3.820":{"name":"electron-to-chromium","version":"1.3.820","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.773.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c8fe3944d4159448669aa4593cb7dda0c87a8166","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.820","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3b2672b59ed17847ed19f1281547f37bbfda87bb","size":12639,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.820.tgz","integrity":"sha512-5cFwDmo2yzEA9hn55KZ9+cX/b6DSFvpKz8Hb2fiDmriXWB+DBoXKXmncQwNRFBBTlUdsvPHCoy594OoMLAO0Tg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.820_1630029747819_0.9191940218141121"},"_hasShrinkwrap":false,"publish_time":1630029748017,"_cnpm_publish_time":1630029748017,"_cnpmcore_publish_time":"2021-12-15T21:09:22.487Z"},"1.3.819":{"name":"electron-to-chromium","version":"1.3.819","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.772.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"48a5056d80d7de18bde7437170047adeae525b4f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.819","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b0a93075a4d4d3c364d058bbefe3ea3c7aa6fa73","size":12617,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.819.tgz","integrity":"sha512-vH3jJLd+tMwrQcYlZJUSjUMlq2JacHuIKl4rT0ZEAdY1Lxk95dBg+rc69ahIPGdKPPWgaN4wjt2f0BopFF3wjQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.819_1630015345858_0.28078190901182754"},"_hasShrinkwrap":false,"publish_time":1630015346000,"_cnpm_publish_time":1630015346000,"_cnpmcore_publish_time":"2021-12-15T21:09:22.886Z"},"1.3.818":{"name":"electron-to-chromium","version":"1.3.818","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.771.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9d8b402c86bab8b0bfba5eeaabaa6a81c8bcab85","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.818","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"32ed024fa8316e5d469c96eecbea7d2463d80085","size":12593,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.818.tgz","integrity":"sha512-c/Z9gIr+jDZAR9q+mn40hEc1NharBT+8ejkarjbCDnBNFviI6hvcC5j2ezkAXru//bTnQp5n6iPi0JA83Tla1Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.818_1629928945433_0.7240789693359113"},"_hasShrinkwrap":false,"publish_time":1629928945626,"_cnpm_publish_time":1629928945626,"_cnpmcore_publish_time":"2021-12-15T21:09:23.073Z"},"1.3.817":{"name":"electron-to-chromium","version":"1.3.817","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.770.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"462d2c976d73cda5100f88aae81b6673c0f058a3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.817","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"911b4775b5d9fa0c4729d4694adc81de85d8d8f6","size":12588,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.817.tgz","integrity":"sha512-Vw0Faepf2Id9Kf2e97M/c99qf168xg86JLKDxivvlpBQ9KDtjSeX0v+TiuSE25PqeQfTz+NJs375b64ca3XOIQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.817_1629842545475_0.4824429046183625"},"_hasShrinkwrap":false,"publish_time":1629842545671,"_cnpm_publish_time":1629842545671,"_cnpmcore_publish_time":"2021-12-15T21:09:23.265Z"},"1.3.816":{"name":"electron-to-chromium","version":"1.3.816","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.769.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"48c01373c46713e50e1ddbdd5d9897425ee6210d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.816","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ab6488b126de92670a6459fe3e746050e0c6276f","size":12557,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.816.tgz","integrity":"sha512-/AvJPIJldO0NkwkfpUD7u1e4YEGRFBQpFuvl9oGCcVgWOObsZB1loxVGeVUJB9kmvfsBUUChPYdgRzx6+AKNyg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.816_1629770547058_0.8514517458688549"},"_hasShrinkwrap":false,"publish_time":1629770547193,"_cnpm_publish_time":1629770547193,"_cnpmcore_publish_time":"2021-12-15T21:09:23.465Z"},"1.3.815":{"name":"electron-to-chromium","version":"1.3.815","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.768.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b3735a577e9cb20ee022a996c6e7a8acf1838ee8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.815","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2372090c909cb52cb0afe1642cffa91cbe08b721","size":12552,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.815.tgz","integrity":"sha512-2QaE8L5l3BDf82ZXcm0TpWOPoCVUwrp3lKiYzgUbdhRAO2sW60ZdKS5T8yq4r7y1ZeiKJXnf5u8n9u3ldnj5Bw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.815_1629756146043_0.3587201625829546"},"_hasShrinkwrap":false,"publish_time":1629756146191,"_cnpm_publish_time":1629756146191,"_cnpmcore_publish_time":"2021-12-15T21:09:23.646Z"},"1.3.814":{"name":"electron-to-chromium","version":"1.3.814","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.767.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"476f869291bb5f69d92ffd848b230167cdb29c1f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.814","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"418fad80c3276a46103ca72a21a8290620d83c4a","size":12545,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.814.tgz","integrity":"sha512-0mH03cyjh6OzMlmjauGg0TLd87ErIJqWiYxMcOLKf5w6p0YEOl7DJAj7BDlXEFmCguY5CQaKVOiMjAMODO2XDw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.814_1629496946225_0.6157532114464084"},"_hasShrinkwrap":false,"publish_time":1629496946385,"_cnpm_publish_time":1629496946385,"_cnpmcore_publish_time":"2021-12-15T21:09:23.842Z"},"1.3.813":{"name":"electron-to-chromium","version":"1.3.813","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.766.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"61f904f46a4205dd3a84d1e4e4a490f5c94a44ae","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.813","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"751a007d71c00faed8b5e9edaf3634c14b9c5a1f","size":12539,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.813.tgz","integrity":"sha512-YcSRImHt6JZZ2sSuQ4Bzajtk98igQ0iKkksqlzZLzbh4p0OIyJRSvUbsgqfcR8txdfsoYCc4ym306t4p2kP/aw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.813_1629410546273_0.33895278303068843"},"_hasShrinkwrap":false,"publish_time":1629410546453,"_cnpm_publish_time":1629410546453,"_cnpmcore_publish_time":"2021-12-15T21:09:24.080Z"},"1.3.812":{"name":"electron-to-chromium","version":"1.3.812","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.765.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d2450b2d43d2e74afea97e0c856a58c607a5556a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.812","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4c4fb407e0e1335056097f172e9f2c0a09efe77d","size":12519,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.812.tgz","integrity":"sha512-7KiUHsKAWtSrjVoTSzxQ0nPLr/a+qoxNZwkwd9LkylTOgOXSVXkQbpIVT0WAUQcI5gXq3SwOTCrK+WfINHOXQg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.812_1629324146122_0.32697403259970304"},"_hasShrinkwrap":false,"publish_time":1629324146242,"_cnpm_publish_time":1629324146242,"_cnpmcore_publish_time":"2021-12-15T21:09:24.302Z"},"1.3.811":{"name":"electron-to-chromium","version":"1.3.811","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.764.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"75751edf07f40f15c41ea33205a8acd21cfb20ad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.811","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"df5a7b18267a0b8b6ffed0dde63b9fb701f777f8","size":12518,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.811.tgz","integrity":"sha512-hv3kgf6YSd+jQ7J+7Kdm44yux/1vxcAwfGV/6M6Nq4E9zJ3Bml/P2+vULCvqLS6Lh9knBCQ7iEMvyeDiGe5EbA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.811_1629280946942_0.34720414333460714"},"_hasShrinkwrap":false,"publish_time":1629280947094,"_cnpm_publish_time":1629280947094,"_cnpmcore_publish_time":"2021-12-15T21:09:24.562Z"},"1.3.810":{"name":"electron-to-chromium","version":"1.3.810","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.763.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"dd445f68e23bbf51c3279340032b122a6d1e7d86","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.810","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"23e340507e13e48debdb7445d2f8fbfab681c4df","size":12506,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.810.tgz","integrity":"sha512-NteznMlGtkIZCJNM2X6AVm3oMqWAdq7TjqagZhmVLPwd9mtrIq+rRxGHerjFAOFIqQJYQUMT72ncd/lVcH1cOw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.810_1629252146435_0.37839120100368406"},"_hasShrinkwrap":false,"publish_time":1629252146563,"_cnpm_publish_time":1629252146563,"_cnpmcore_publish_time":"2021-12-15T21:09:24.833Z"},"1.3.809":{"name":"electron-to-chromium","version":"1.3.809","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.762.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"148f36c59b5a5527b8c8b84948df0b7cf3f9278f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.809","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"86db795c41c97f252ee1c849a2f70d0739710776","size":12498,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.809.tgz","integrity":"sha512-bZoXTEhEe8o10dHX2gNY9KkCSwz1AFk4c0GbmzlTD5WAkUpDb/zY7JjvLvJ/y1wUsURiVmlGdnIeU+gFyTeaXA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.809_1629237745783_0.5823700171650203"},"_hasShrinkwrap":false,"publish_time":1629237746107,"_cnpm_publish_time":1629237746107,"_cnpmcore_publish_time":"2021-12-15T21:09:25.276Z"},"1.3.808":{"name":"electron-to-chromium","version":"1.3.808","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.761.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8b4218c6deb3db392c15bbd18d2d7adf644aa095","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.808","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6aa204f56c6de554cd4e90e1eb1a36f3ac3a15d5","size":12479,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.808.tgz","integrity":"sha512-espnsbWTuUw0a2jMwfabCc09py2ujB+FZZE1hZWn5yYijEmxzEhdhTLKUfZGjynHvdIMQ4X/Pr/t8s4eiyH/QQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.808_1629208946826_0.8468383563959352"},"_hasShrinkwrap":false,"publish_time":1629208946941,"_cnpm_publish_time":1629208946941,"_cnpmcore_publish_time":"2021-12-15T21:09:25.510Z"},"1.3.807":{"name":"electron-to-chromium","version":"1.3.807","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.760.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e367a7a17990c228b43e2d56b0f8342d7d31056d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.807","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c2eb803f4f094869b1a24151184ffbbdbf688b1f","size":12457,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.807.tgz","integrity":"sha512-p8uxxg2a23zRsvQ2uwA/OOI+O4BQxzaR7YKMIGGGQCpYmkFX2CVF5f0/hxLMV7yCr7nnJViCwHLhPfs52rIYCA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.807_1629151347811_0.871683919457034"},"_hasShrinkwrap":false,"publish_time":1629151347954,"_cnpm_publish_time":1629151347954,"_cnpmcore_publish_time":"2021-12-15T21:09:25.765Z"},"1.3.806":{"name":"electron-to-chromium","version":"1.3.806","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.759.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9c9f1587dd43422dc2f7e60d34abbc5bdee9d6f4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.806","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"21502100f11aead6c501d1cd7f2504f16c936642","size":12455,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.806.tgz","integrity":"sha512-AH/otJLAAecgyrYp0XK1DPiGVWcOgwPeJBOLeuFQ5l//vhQhwC9u6d+GijClqJAmsHG4XDue81ndSQPohUu0xA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.806_1628906548977_0.3091228028317585"},"_hasShrinkwrap":false,"publish_time":1628906549113,"_cnpm_publish_time":1628906549113,"_cnpmcore_publish_time":"2021-12-15T21:09:25.992Z"},"1.3.805":{"name":"electron-to-chromium","version":"1.3.805","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.758.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3fa5bbe95c9eef22907ea88f046cd479efe6e266","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.805","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a0873393a3b027ec60bdaf22a19c4946688cf941","size":12445,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.805.tgz","integrity":"sha512-uUJF59M6pNSRHQaXwdkaNB4BhSQ9lldRdG1qCjlrAFkynPGDc5wPoUcYEQQeQGmKyAWJPvGkYAWmtVrxWmDAkg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.805_1628820146452_0.1011345506593262"},"_hasShrinkwrap":false,"publish_time":1628820146589,"_cnpm_publish_time":1628820146589,"_cnpmcore_publish_time":"2021-12-15T21:09:26.218Z"},"1.3.804":{"name":"electron-to-chromium","version":"1.3.804","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.757.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e70b4a962ad3262d0e55b9a0d3a093196cbb2cf8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.804","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"92ba2db611951f9f13b0b7565f9163d4fc7b5440","size":12431,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.804.tgz","integrity":"sha512-GB+D82NbTO6/7mC0aRNv0LPOhof/fz4UX6D/CnxTVpiPgWna+HDQJMHgsf/Ne/itKn3akJul9L0kwvML2kp3Yg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.804_1628805745602_0.6199271756811389"},"_hasShrinkwrap":false,"publish_time":1628805745801,"_cnpm_publish_time":1628805745801,"_cnpmcore_publish_time":"2021-12-15T21:09:26.486Z"},"1.3.803":{"name":"electron-to-chromium","version":"1.3.803","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.756.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7052b785e784092042cabacbdda411267a1bf32e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.803","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"78993a991d096500f21a77e91cd2a44295fe3cbe","size":12418,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.803.tgz","integrity":"sha512-tmRK9qB8Zs8eLMtTBp+w2zVS9MUe62gQQQHjYdAc5Zljam3ZIokNb+vZLPRz9RCREp6EFRwyhOFwbt1fEriQ2Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.803_1628719346374_0.24868762944431633"},"_hasShrinkwrap":false,"publish_time":1628719346566,"_cnpm_publish_time":1628719346566,"_cnpmcore_publish_time":"2021-12-15T21:09:26.743Z"},"1.3.802":{"name":"electron-to-chromium","version":"1.3.802","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.755.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a12f5b92e33ded2d96c8c0a1556a57e56f401bb7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.802","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0afa989321de3e904ac653ee79e0d642883731a1","size":12398,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.802.tgz","integrity":"sha512-dXB0SGSypfm3iEDxrb5n/IVKeX4uuTnFHdve7v+yKJqNpEP0D4mjFJ8e1znmSR+OOVlVC+kDO6f2kAkTFXvJBg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.802_1628647351440_0.4545559025328818"},"_hasShrinkwrap":false,"publish_time":1628647351582,"_cnpm_publish_time":1628647351582,"_cnpmcore_publish_time":"2021-12-15T21:09:26.976Z"},"1.3.801":{"name":"electron-to-chromium","version":"1.3.801","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.754.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1dd3b21786a96ec5611cea90b85de835ba8bffce","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.801","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f41c588e408ad1a4f794f91f38aa94a89c492f51","size":12383,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.801.tgz","integrity":"sha512-xapG8ekC+IAHtJrGBMQSImNuN+dm+zl7UP1YbhvTkwQn8zf/yYuoxfTSAEiJ9VDD+kjvXaAhNDPSxJ+VImtAJA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.801_1628589754104_0.3742650934667482"},"_hasShrinkwrap":false,"publish_time":1628589754255,"_cnpm_publish_time":1628589754255,"_cnpmcore_publish_time":"2021-12-15T21:09:27.228Z"},"1.3.800":{"name":"electron-to-chromium","version":"1.3.800","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.753.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f41294570e7eb4c730bdb470d3a090a0165c0df2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.800","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8efbb11e88b0a072d5c0250e6249123d3a76cb9a","size":12380,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.800.tgz","integrity":"sha512-qagikPjZJSDWP85uWoxs32oK/xk/y3MhDZELfKRCWI7pBc0ZFlmjnXb+3+aNMaiqboeDJJa0v7CJd5cO1HKwEQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.800_1628546550079_0.8489748584356733"},"_hasShrinkwrap":false,"publish_time":1628546550298,"_cnpm_publish_time":1628546550298,"_cnpmcore_publish_time":"2021-12-15T21:09:27.481Z"},"1.3.799":{"name":"electron-to-chromium","version":"1.3.799","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.752.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"abd61c261d07b11c3089dee58e2bbe130bb2d4ea","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.799","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6e9911b25e7ecd5aa1e54dcb68f82a3e02d00f09","size":12362,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.799.tgz","integrity":"sha512-V2rbYWdGvSqrg+95KjkVuSi41bGfrhrOzjl1tSi2VLnm0mRe3FsSvhiqidSiSll9WiMhrQAhpDcW/wcqK3c+Yw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.799_1628301746816_0.40201879063832635"},"_hasShrinkwrap":false,"publish_time":1628301746970,"_cnpm_publish_time":1628301746970,"_cnpmcore_publish_time":"2021-12-15T21:09:27.770Z"},"1.3.798":{"name":"electron-to-chromium","version":"1.3.798","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.751.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"83c8d5ea80c00469da910fd59b5a0e6c5b75cae3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.798","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"12b0bb826ddf35486f2ca41c01be4bd6ad1b9b1e","size":12353,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.798.tgz","integrity":"sha512-fwsr6oXAORoV9a6Ak2vMCdXfmHIpAGgpOGesulS1cbGgJmrMl3H+GicUyRG3t+z9uHTMrIuMTleFDW+EUFYT3g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.798_1628215347582_0.4045616957368743"},"_hasShrinkwrap":false,"publish_time":1628215347719,"_cnpm_publish_time":1628215347719,"_cnpmcore_publish_time":"2021-12-15T21:09:28.007Z"},"1.3.797":{"name":"electron-to-chromium","version":"1.3.797","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.750.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b3b1da023de0304fa3b56e0ae2a207846baed79c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.797","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"50e0f37ed1011c198dc547ded3827b2e70c1a4fe","size":12344,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.797.tgz","integrity":"sha512-ASVBCRy2E6mPRSFqUxvi5OjMRVHzv36PXfbIllFlRc4ZLPNuhAZjKRHgmtlv37CLvVU/XYdftwtMxW5iYxGlcg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.797_1628200946812_0.8458536809964907"},"_hasShrinkwrap":false,"publish_time":1628200947000,"_cnpm_publish_time":1628200947000,"_cnpmcore_publish_time":"2021-12-15T21:09:28.333Z"},"1.3.796":{"name":"electron-to-chromium","version":"1.3.796","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.749.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"87bd21f3f0c538e20b7ff1101eb1dee56c412ba7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.796","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bd74a4367902c9d432d129f265bf4542cddd9f54","size":12334,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.796.tgz","integrity":"sha512-agwJFgM0FUC1UPPbQ4aII3HamaaJ09fqWGAWYHmzxDWqdmTleCHyyA0kt3fJlTd5M440IaeuBfzXzXzCotnZcQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.796_1628114545038_0.32095984056130256"},"_hasShrinkwrap":false,"publish_time":1628114545170,"_cnpm_publish_time":1628114545170,"_cnpmcore_publish_time":"2021-12-15T21:09:28.589Z"},"1.3.795":{"name":"electron-to-chromium","version":"1.3.795","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.748.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"63aba37ae9946abd9578454b50416836885c1c12","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.795","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"91f09b4c77f8dab562dd592ce929b009201c24ff","size":12329,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.795.tgz","integrity":"sha512-4TPxrLf9Fzsi4rVgTlDm+ubxoXm3/TN67/LGHx/a4UkVubKILa6L26O6eTnHewixG/knzU9L3lLmfL39eElwlQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.795_1628042548470_0.5241442512386052"},"_hasShrinkwrap":false,"publish_time":1628042548604,"_cnpm_publish_time":1628042548604,"_cnpmcore_publish_time":"2021-12-15T21:09:28.807Z"},"1.3.794":{"name":"electron-to-chromium","version":"1.3.794","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.747.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"73cb97c343c436cbb09dc22eecbd660b18d437e1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.794","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bccfe7a184ea1cc889dc8cbca3b1e8202b416b8b","size":12311,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.794.tgz","integrity":"sha512-lN6h2N16+B64/DDNefd2qvehTJl/LDZ/ORXKL2JHaLGhVxjj7ybuA/oVprKtTNvmOTgzUrpP02HhgoS27E2rGA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.794_1628028144866_0.7010259227256606"},"_hasShrinkwrap":false,"publish_time":1628028145008,"_cnpm_publish_time":1628028145008,"_cnpmcore_publish_time":"2021-12-15T21:09:29.051Z"},"1.3.793":{"name":"electron-to-chromium","version":"1.3.793","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.746.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b5ab1fbb98fa1caeb91621a68cfc9332fca01121","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.793","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c10dff5f3126238004de344db458f1da3641d554","size":12302,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.793.tgz","integrity":"sha512-l9NrGV6Mr4ov5mayYPvIWcwklNw5ROmy6rllzz9dCACw9nKE5y+s5uQk+CBJMetxrWZ6QJFsvEfG6WDcH2IGUg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.793_1627941751885_0.8054897829219851"},"_hasShrinkwrap":false,"publish_time":1627941752007,"_cnpm_publish_time":1627941752007,"_cnpmcore_publish_time":"2021-12-15T21:09:29.333Z"},"1.3.792":{"name":"electron-to-chromium","version":"1.3.792","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.745.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a42e755be2ca4fdac17a00a6fa4a66a710d70225","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.792","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"791b0d8fcf7411885d086193fb49aaef0c1594ca","size":12264,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.792.tgz","integrity":"sha512-RM2O2xrNarM7Cs+XF/OE2qX/aBROyOZqqgP+8FXMXSuWuUqCfUUzg7NytQrzZU3aSqk1Qq6zqnVkJsbfMkIatg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.792_1627682550636_0.41593531404549045"},"_hasShrinkwrap":false,"publish_time":1627682550786,"_cnpm_publish_time":1627682550786,"_cnpmcore_publish_time":"2021-12-15T21:09:29.570Z"},"1.3.791":{"name":"electron-to-chromium","version":"1.3.791","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.744.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ae2c1210b79b671cc885d5502ae16e3dc52ddfa0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.791","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e38f325ff22470bdcff34409d58c0baf9c2e3e93","size":12254,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.791.tgz","integrity":"sha512-Tdx7w1fZpeWOOBluK+kXTAKCXyc79K65RB6Zp0+sPSZZhDjXlrxfGlXrlMGVVQUrKCyEZFQs1UBBLNz5IdbF0g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.791_1627596152616_0.6144582340479825"},"_hasShrinkwrap":false,"publish_time":1627596152833,"_cnpm_publish_time":1627596152833,"_cnpmcore_publish_time":"2021-12-15T21:09:29.820Z"},"1.3.790":{"name":"electron-to-chromium","version":"1.3.790","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.743.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"44446a9e2874419e7aeaa0bca0a05f5b06e55f7e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.790","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"5c569290929d92c8094fa08c79bc9393ca9e94e7","size":12252,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.790.tgz","integrity":"sha512-epMH/S2MkhBv+Y0+nHK8dC7bzmOaPwcmiYqt+VwxSUJLgPzkqZnGUEQ8eVhy5zGmgWm9tDDdXkHDzOEsVU979A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.790_1627509751438_0.30518431747790453"},"_hasShrinkwrap":false,"publish_time":1627509751615,"_cnpm_publish_time":1627509751615,"_cnpmcore_publish_time":"2021-12-15T21:09:30.060Z"},"1.3.789":{"name":"electron-to-chromium","version":"1.3.789","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.742.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c284fd7ce3fddafcbb295e98b0716b38c779d1f0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.789","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c3ea060ba1e36e41c87943a47ed2daadc545be2b","size":12241,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.789.tgz","integrity":"sha512-lK4xn6C6ZF1kgLaC/EhOtC1MSKENExj3rMwGVnBTfHW81Z/Hb1Rge5YaWawN/YOXy3xCaESuE4KWSD50kOZ9rQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.789_1627423353439_0.29125530755330753"},"_hasShrinkwrap":false,"publish_time":1627423353618,"_cnpm_publish_time":1627423353618,"_cnpmcore_publish_time":"2021-12-15T21:09:30.327Z"},"1.3.788":{"name":"electron-to-chromium","version":"1.3.788","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.741.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d647e9bafb696c56412192042037365d65f7af2e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.788","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7a304c8ebb11d30916a1a1c1b4a9bad3983ef232","size":12217,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.788.tgz","integrity":"sha512-dbMIpX4E4/Gk4gzOh1GYS7ls1vGsByWKpIqLviJi1mSmSt5BvrWLLtSqpFE5BaC7Ef4NnI0GMaiddNX2Brw6zA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.788_1627351351467_0.27688734422388683"},"_hasShrinkwrap":false,"publish_time":1627351351640,"_cnpm_publish_time":1627351351640,"_cnpmcore_publish_time":"2021-12-15T21:09:30.559Z"},"1.3.787":{"name":"electron-to-chromium","version":"1.3.787","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.740.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"42de6469bf65d0b8647579c0d86f7bb5fd27316a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.787","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0d814dcc374bb8a0ae7a17c0308c39fb18fcc7bb","size":12212,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.787.tgz","integrity":"sha512-zeM5AFwvTlSYvGpBaFZKVo7GQEWSk6hS3rQ7mdrr3qB7CiqVl84K6nIPznyKSu0b8ABiEeMEIqyBuzqMkxnjjg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.787_1627336950935_0.1137117380596433"},"_hasShrinkwrap":false,"publish_time":1627336951051,"_cnpm_publish_time":1627336951051,"_cnpmcore_publish_time":"2021-12-15T21:09:30.796Z"},"1.3.786":{"name":"electron-to-chromium","version":"1.3.786","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.739.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d569a3be6c0ee55ad7b5f74be416aba0873bf3fb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.786","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"1fc572abc77e2f474725f8a61acf7e25ced9fbe2","size":12203,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.786.tgz","integrity":"sha512-AmvbLBj3hepRk8v/DHrFF8gINxOFfDbrn6Ts3PcK46/FBdQb5OMmpamSpZQXSkfi77FfBzYtQtAk+00LCLYMVw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.786_1627077751202_0.31035374705926544"},"_hasShrinkwrap":false,"publish_time":1627077751389,"_cnpm_publish_time":1627077751389,"_cnpmcore_publish_time":"2021-12-15T21:09:31.017Z"},"1.3.785":{"name":"electron-to-chromium","version":"1.3.785","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.738.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e55d5515a0380416f9a0ae6eb55d734195f31799","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.785","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"79f546c69a6be4f30913aaace361bc746f26df48","size":12197,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.785.tgz","integrity":"sha512-WmCgAeURsMFiyoJ646eUaJQ7GNfvMRLXo+GamUyKVNEM4MqTAsXyC0f38JEB4N3BtbD0tlAKozGP5E2T9K3YGg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.785_1626991352154_0.4844379377236594"},"_hasShrinkwrap":false,"publish_time":1626991352347,"_cnpm_publish_time":1626991352347,"_cnpmcore_publish_time":"2021-12-15T21:09:31.240Z"},"1.3.784":{"name":"electron-to-chromium","version":"1.3.784","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.737.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"99f8907798e67dc7473c38fdd17fb13e5b5c5ac7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.784","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c370be79374b02b7f13e8a8fb0d7a02641161dac","size":12183,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.784.tgz","integrity":"sha512-JTPxdUibkefeomWNaYs8lI/x/Zb4cOhZWX+d7kpzsNKzUd07pNuo/AcHeNJ/qgEchxM1IAxda9aaGUhKN/poOg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.784_1626919353168_0.3459390796137203"},"_hasShrinkwrap":false,"publish_time":1626919353314,"_cnpm_publish_time":1626919353314,"_cnpmcore_publish_time":"2021-12-15T21:09:31.456Z"},"1.3.783":{"name":"electron-to-chromium","version":"1.3.783","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.736.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8b93e66d5992fb2e9b1aff4be19bb8da8a9b708a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.783","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"62aefa771502ce5178bb856c3fda8d9b2cffc234","size":12152,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.783.tgz","integrity":"sha512-296P577qmXQHgLa3zAYdB9zOhqzt7lckmbLAJO78lIXGBhYA5NVI2WRwyYJPZ614eJxd0Bew7RA72vFOFXyogA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.783_1626904951552_0.4507184287790227"},"_hasShrinkwrap":false,"publish_time":1626904951723,"_cnpm_publish_time":1626904951723,"_cnpmcore_publish_time":"2021-12-15T21:09:31.684Z"},"1.3.782":{"name":"electron-to-chromium","version":"1.3.782","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.735.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c65a2155702e06888ff7c5fb24834d025e889475","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.782","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"522740fe6b4b5255ca754c68d9c406a17b0998e2","size":12153,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.782.tgz","integrity":"sha512-6AI2se1NqWA1SBf/tlD6tQD/6ZOt+yAhqmrTlh4XZw4/g0Mt3p6JhTQPZxRPxPZiOg0o7ss1EBP/CpYejfnoIA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.782_1626832953716_0.0625894153298503"},"_hasShrinkwrap":false,"publish_time":1626832953914,"_cnpm_publish_time":1626832953914,"_cnpmcore_publish_time":"2021-12-15T21:09:31.897Z"},"1.3.781":{"name":"electron-to-chromium","version":"1.3.781","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.734.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e00677723e2d83cae26bf5cb025247ef9b9c9983","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.781","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"aeb54595edc0ae56721ff6428ffeb4c885c09e57","size":12147,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.781.tgz","integrity":"sha512-l2adP72hnTZANALhjUDLm0zt1fY8Cm+kEU0Ikfy3sP/99BNsOGnnPf2nfCO/3fIL4LwmTcbQD+Ap2Deeuwe9yQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.781_1626818551899_0.8541294169698939"},"_hasShrinkwrap":false,"publish_time":1626818552057,"_cnpm_publish_time":1626818552057,"_cnpmcore_publish_time":"2021-12-15T21:09:32.337Z"},"1.3.780":{"name":"electron-to-chromium","version":"1.3.780","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.733.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d7dca3bf36fc9ee72a3a99a41a9633c3736ec5bd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.780","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f946e10dc0005a3b59b9afa2d2c92f5c421f7fc5","size":12136,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.780.tgz","integrity":"sha512-2KQ9OYm9WMUNpAPA/4aerURl3hwRc9tNlpsiEj3Y8Gf7LVf26NzyLIX2v0hSagQwrS9+cWab+28A2GPKDoVNRA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.780_1626732149970_0.6021404015777285"},"_hasShrinkwrap":false,"publish_time":1626732150090,"_cnpm_publish_time":1626732150090,"_cnpmcore_publish_time":"2021-12-15T21:09:32.564Z"},"1.3.779":{"name":"electron-to-chromium","version":"1.3.779","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.732.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"05eb84a724d5e513eb0d69b09f7f53b0d0288574","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.779","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"de55492a756deec63424f89fbe62aec9776f0e6d","size":12129,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.779.tgz","integrity":"sha512-nreave0y/1Qhmo8XtO6C/LpawNyC6U26+q7d814/e+tIqUK073pM+4xW7WUXyqCRa5K4wdxHmNMBAi8ap9nEew=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.779_1626472950746_0.36443708383829065"},"_hasShrinkwrap":false,"publish_time":1626472950908,"_cnpm_publish_time":1626472950908,"_cnpmcore_publish_time":"2021-12-15T21:09:32.789Z"},"1.3.778":{"name":"electron-to-chromium","version":"1.3.778","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.731.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6886a8215d18fc7cb4c76c53d176e203d16f48d0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.778","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bf01048736c95b78f2988e88005e0ebb385942a4","size":12129,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.778.tgz","integrity":"sha512-Lw04qJaPtWdq0d7qKHJTgkam+FhFi3hm/scf1EyqJWdjO3ZIGUJhNmZJRXWb7yb/bRYXQyVGSpa9RqVpjjWMQw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.778_1626400995768_0.8151522777131777"},"_hasShrinkwrap":false,"publish_time":1626400995941,"_cnpm_publish_time":1626400995941,"_cnpmcore_publish_time":"2021-12-15T21:09:33.003Z"},"1.3.777":{"name":"electron-to-chromium","version":"1.3.777","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.730.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5c35eaad138ff4065bc2dd7590be08384c837d37","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.777","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f27b9629dc9ec5a5065847b7fd4b9409b3c351bc","size":12108,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.777.tgz","integrity":"sha512-gO0VEU2esNUOu51DTtp7E7xy0d+yZdbC06EACvou1cbPM9Wwyz8ixPa6T1tqDXlT4/AefXtzx0i9OLwKkLOHQA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.777_1626386551028_0.8637611898336477"},"_hasShrinkwrap":false,"publish_time":1626386551430,"_cnpm_publish_time":1626386551430,"_cnpmcore_publish_time":"2021-12-15T21:09:33.240Z"},"1.3.776":{"name":"electron-to-chromium","version":"1.3.776","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.729.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b8fdb59cebc2d898b744fd0cf60c9a43131e2a5f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.776","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"33f6e2423b61f1bdaa8d2a103aae78a09764a75f","size":12101,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.776.tgz","integrity":"sha512-V0w7eFSBoFPpdw4xexjVPZ770UDZIevSwkkj4W97XbE3IsCsTRFpa7/yXGZ88EOQAUEA09JMMsWK0xsw0kRAYw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.776_1626300149630_0.08026243230025787"},"_hasShrinkwrap":false,"publish_time":1626300149837,"_cnpm_publish_time":1626300149837,"_cnpmcore_publish_time":"2021-12-15T21:09:33.455Z"},"1.3.775":{"name":"electron-to-chromium","version":"1.3.775","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.728.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"887d6e8ff029e5ad1bfb54a990ef0c9c105944e7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.775","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"046517d1f2cea753e06fff549995b9dc45e20082","size":12089,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.775.tgz","integrity":"sha512-EGuiJW4yBPOTj2NtWGZcX93ZE8IGj33HJAx4d3ouE2zOfW2trbWU+t1e0yzLr1qQIw81++txbM3BH52QwSRE6Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.775_1626213754544_0.3643974227272406"},"_hasShrinkwrap":false,"publish_time":1626213754665,"_cnpm_publish_time":1626213754665,"_cnpmcore_publish_time":"2021-12-15T21:09:33.699Z"},"1.3.774":{"name":"electron-to-chromium","version":"1.3.774","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.727.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"57e6e344e16af9bb7a4e89ed565678e601fc498c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.774","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4d6661a23119e35151646c9543b346bb3beca423","size":12083,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.774.tgz","integrity":"sha512-Fggh17Q1yyv1uMzq8Qn1Ci58P50qcRXMXd2MBcB9sxo6rJxjUutWcNw8uCm3gFWMdcblBO6mDT5HzX/RVRRECA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.774_1626141747885_0.5888924755349458"},"_hasShrinkwrap":false,"publish_time":1626141748041,"_cnpm_publish_time":1626141748041,"_cnpmcore_publish_time":"2021-12-15T21:09:33.900Z"},"1.3.773":{"name":"electron-to-chromium","version":"1.3.773","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.726.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f77944e9133b3968b3a69882d8ee97632aaa7d29","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.773","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0b50f1eaac741a1ca0c54344331214763577ad25","size":12071,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.773.tgz","integrity":"sha512-Y44FtvE3Lpr7ka/kPdQbIYzUBCWddW8Ky5QzKbasDeqFdJYK9izaiiAIRAoE3Kdu7+GPBVwwyWDaQ2yyeNqWRA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.773_1626127347926_0.4964167065310021"},"_hasShrinkwrap":false,"publish_time":1626127348065,"_cnpm_publish_time":1626127348065,"_cnpmcore_publish_time":"2021-12-15T21:09:34.138Z"},"1.3.772":{"name":"electron-to-chromium","version":"1.3.772","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.725.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"bd10e2beb6abf975c60582c7de88ef27b9763c62","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.772","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fd1ed39f9f3149f62f581734e4f026e600369479","size":12059,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.772.tgz","integrity":"sha512-X/6VRCXWALzdX+RjCtBU6cyg8WZgoxm9YA02COmDOiNJEZ59WkQggDbWZ4t/giHi/3GS+cvdrP6gbLISANAGYA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.772_1625868147144_0.5437116140118656"},"_hasShrinkwrap":false,"publish_time":1625868147286,"_cnpm_publish_time":1625868147286,"_cnpmcore_publish_time":"2021-12-15T21:09:34.323Z"},"1.3.771":{"name":"electron-to-chromium","version":"1.3.771","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.724.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"bb43bfaf6534339df59451716e00aed952437865","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.771","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c4aa601e6420e11926095f75fe803956a1b4bd81","size":12053,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.771.tgz","integrity":"sha512-zHMomTqkpnAD9W5rhXE1aiU3ogGFrqWzdvM4C6222SREiqsWQb2w0S7P2Ii44qCaGimmAP1z+OydllM438uJyA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.771_1625781752477_0.42102891165258893"},"_hasShrinkwrap":false,"publish_time":1625781752625,"_cnpm_publish_time":1625781752625,"_cnpmcore_publish_time":"2021-12-15T21:09:34.580Z"},"1.3.770":{"name":"electron-to-chromium","version":"1.3.770","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.723.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2a179bfaf4063756debd4832a2fa72fc7a247ae5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.770","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a9e705a73315f4900880622b3ab76cf1d7221b77","size":12047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.770.tgz","integrity":"sha512-Kyh8DGK1KfEZuYKIHvuOmrKotsKZQ+qBkDIWHciE3QoFkxXB1KzPP+tfLilSHAfxTON0yYMnFCWkQtUOR7g6KQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.770_1625709754572_0.4303818930608363"},"_hasShrinkwrap":false,"publish_time":1625709754841,"_cnpm_publish_time":1625709754841,"_cnpmcore_publish_time":"2021-12-15T21:09:34.764Z"},"1.3.769":{"name":"electron-to-chromium","version":"1.3.769","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.722.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6b2dd15e13b52e862a08abb942024b10774c8d3f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.769","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"73ad7e3f2d435810b6f8b29617ec344c782fcbed","size":12034,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.769.tgz","integrity":"sha512-B+3hW8D76/uoTPSobWI3D/CFn2S4jPn88dVJ+BkD88Lz6LijQpL+hfdzIFJGTQK4KdE0XwmNbjUQFH1OQVwKdQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.769_1625623352845_0.7999564348188364"},"_hasShrinkwrap":false,"publish_time":1625623352946,"_cnpm_publish_time":1625623352946,"_cnpmcore_publish_time":"2021-12-15T21:09:34.958Z"},"1.3.768":{"name":"electron-to-chromium","version":"1.3.768","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.721.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c78b783388ae6266e101676057ea2ef9bb4e53aa","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.768","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bbe47394f0073c947168589b7d19388518a7a9a9","size":12015,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.768.tgz","integrity":"sha512-I4UMZHhVSK2pwt8jOIxTi3GIuc41NkddtKT/hpuxp9GO5UWJgDKTBa4TACppbVAuKtKbMK6BhQZvT5tFF1bcNA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.768_1625536950589_0.37087795484193653"},"_hasShrinkwrap":false,"publish_time":1625536950744,"_cnpm_publish_time":1625536950744,"_cnpmcore_publish_time":"2021-12-15T21:09:35.155Z"},"1.3.767":{"name":"electron-to-chromium","version":"1.3.767","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.720.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ee9b051ed40a17b2971d58bff37c18308c8f0481","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.767","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"62cb8de251d09eea740adcbcc4edca230da81a05","size":12010,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.767.tgz","integrity":"sha512-KYFEZ581N+ovKHR6PJawl+ei5tm0ikX9lKQ+tJnbJhamqve/iowMUiF9073g6A2AVAxqpXp9/gELRQYIdg4pzg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.767_1625522550330_0.840314475993279"},"_hasShrinkwrap":false,"publish_time":1625522550701,"_cnpm_publish_time":1625522550701,"_cnpmcore_publish_time":"2021-12-15T21:09:35.366Z"},"1.3.766":{"name":"electron-to-chromium","version":"1.3.766","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.719.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3d14a9600481fe1b408c043ce1670bd676adcdc8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.766","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2fd14a4e54f77665872f4e23fcf4968e83638220","size":11998,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.766.tgz","integrity":"sha512-u2quJ862q9reRKh/je3GXis3w38+RoXH1J9N3XjtsS6NzmUAosNsyZgUVFZPN/ZlJ3v6T0rTyZR3q/J5c6Sy5w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.766_1625263353576_0.6627768420383142"},"_hasShrinkwrap":false,"publish_time":1625263353707,"_cnpm_publish_time":1625263353707,"_cnpmcore_publish_time":"2021-12-15T21:09:35.600Z"},"1.3.765":{"name":"electron-to-chromium","version":"1.3.765","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.718.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6d7fe2f676739554fd8b7d716505ef46f41bfe75","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.765","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"36fa0ef7a81048bb487bfe3d297100967e2b8db2","size":11993,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.765.tgz","integrity":"sha512-4NhcsfZYlr1x4FehYkK+R9CNNTOZ8vLcIu8Y1uWehxYp5r/jlCGAfBqChIubEfdtX+rBQpXx4yJuX/dzILH/nw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.765_1625191354418_0.56664330977073"},"_hasShrinkwrap":false,"publish_time":1625191354555,"_cnpm_publish_time":1625191354555,"_cnpmcore_publish_time":"2021-12-15T21:09:35.799Z"},"1.3.764":{"name":"electron-to-chromium","version":"1.3.764","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.717.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"84ba32c238b9f97d75863d65bdb8f8c00a9f4825","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.764","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"24c61a7a3c92630f1723078c59e1dbb42648d581","size":11985,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.764.tgz","integrity":"sha512-nI8fb0ePu2LjzGQMoJ2j4wCnpbSMtuXmOZz/dFAduroICL/B9rU6Iwck/oTvXdzZCfN3ZdU5mpY4XCizU2saow=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.764_1625176951729_0.12964605049765843"},"_hasShrinkwrap":false,"publish_time":1625176951969,"_cnpm_publish_time":1625176951969,"_cnpmcore_publish_time":"2021-12-15T21:09:36.023Z"},"1.3.763":{"name":"electron-to-chromium","version":"1.3.763","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.716.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c2176a454301e4bae7c38f801de7020feebaf9c4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.763","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"93f6f02506d099941f557b9db9ba50b30215bf15","size":11959,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.763.tgz","integrity":"sha512-UyvEPae0wvzsyNJhVfGeFSOlUkHEze8xSIiExO5tZQ8QTr7obFiJWGk3U4e7afFOJMQJDszqU/3Pk5jtKiaSEg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.763_1625104956219_0.2504756975148916"},"_hasShrinkwrap":false,"publish_time":1625104956406,"_cnpm_publish_time":1625104956406,"_cnpmcore_publish_time":"2021-12-15T21:09:36.248Z"},"1.3.762":{"name":"electron-to-chromium","version":"1.3.762","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.715.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9f00d8fb98a98c00aa5f030a0787a4b8dc2be249","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.762","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3fa4e3bcbda539b50e3aa23041627063a5cffe61","size":11946,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.762.tgz","integrity":"sha512-LehWjRpfPcK8F1Lf/NZoAwWLWnjJVo0SZeQ9j/tvnBWYcT99qDqgo4raAfS2oTKZjPrR/jxruh85DGgDUmywEA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.762_1625004155085_0.9898360504563417"},"_hasShrinkwrap":false,"publish_time":1625004155216,"_cnpm_publish_time":1625004155216,"_cnpmcore_publish_time":"2021-12-15T21:09:36.506Z"},"1.3.761":{"name":"electron-to-chromium","version":"1.3.761","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.714.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"34d0ab3cc12bacdbd722e396a1f5ef924e48425f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.761","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6a1748bab8ed94984391ec8be8a7e7ec1fe3d843","size":11937,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.761.tgz","integrity":"sha512-7a/wV/plM/b95XjTdA2Q4zAxxExTDKkNQpTiaU/nVT8tGCQVtX9NsnTjhALBFICpOB58hU6xg5fFC3CT2Bybpg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.761_1624960954164_0.8070716786104761"},"_hasShrinkwrap":false,"publish_time":1624960954308,"_cnpm_publish_time":1624960954308,"_cnpmcore_publish_time":"2021-12-15T21:09:36.707Z"},"1.3.760":{"name":"electron-to-chromium","version":"1.3.760","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.713.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8628f425b16501728b85d10835debef7ae62e04f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.760","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"cf19c9ae9ff23c0ac6bb289e3b71c09b7c3f8de1","size":11935,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.760.tgz","integrity":"sha512-XPKwjX6pHezJWB4FLVuSil9gGmU6XYl27ahUwEHODXF4KjCEB8RuIT05MkU1au2Tdye57o49yY0uCMK+bwUt+A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.760_1624917752693_0.8373482032324386"},"_hasShrinkwrap":false,"publish_time":1624917752822,"_cnpm_publish_time":1624917752822,"_cnpmcore_publish_time":"2021-12-15T21:09:36.906Z"},"1.3.759":{"name":"electron-to-chromium","version":"1.3.759","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.712.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e37f61f700d6cb7c47e0c7a89253e3ec65a5cab0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.759","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b0d652d376831470a4c230ba721da2427bfb996a","size":11912,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.759.tgz","integrity":"sha512-nM76xH0t2FBH5iMEZDVc3S/qbdKjGH7TThezxC8k1Q7w7WHvIAyJh8lAe2UamGfdRqBTjHfPDn82LJ0ksCiB9g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.759_1624658554636_0.33203950469365373"},"_hasShrinkwrap":false,"publish_time":1624658554857,"_cnpm_publish_time":1624658554857,"_cnpmcore_publish_time":"2021-12-15T21:09:37.115Z"},"1.3.758":{"name":"electron-to-chromium","version":"1.3.758","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.711.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"28c22bad93d2056c0e4cb9f7ea4e5ec215202b82","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.758","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0baeb8f0a89d1850cc65f92da5f669343e4f6241","size":11902,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.758.tgz","integrity":"sha512-StYtiDbgZdjcck3OLwsVVVif7QDuD5m5v2gF+XpETp5lHa7X0y3129YBlYaHRPyj1fep1oAaC6i//gAdp+rhbw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.758_1624615355116_0.8325978020508642"},"_hasShrinkwrap":false,"publish_time":1624615355256,"_cnpm_publish_time":1624615355256,"_cnpmcore_publish_time":"2021-12-15T21:09:37.325Z"},"1.3.757":{"name":"electron-to-chromium","version":"1.3.757","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.710.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ea49e3b6ff3de2becbe1cc2b18b2ea40d0028d50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.757","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ff99436c99ca0fc5d120e11030a868401396e0e1","size":11894,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.757.tgz","integrity":"sha512-kP0ooyrvavDC+Y9UG6G/pUVxfRNM2VTJwtLQLvgsJeyf1V+7shMCb68Wj0/TETmfx8dWv9pToGkVT39udE87wQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.757_1624572157088_0.6776139377897035"},"_hasShrinkwrap":false,"publish_time":1624572157227,"_cnpm_publish_time":1624572157227,"_cnpmcore_publish_time":"2021-12-15T21:09:38.013Z"},"1.3.756":{"name":"electron-to-chromium","version":"1.3.756","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.709.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"77bb84d211e18c7d0bb40307411b4bf02b9bf52f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.756","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"942cee59cd64d19f576d8d5804eef09cb423740c","size":11890,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.756.tgz","integrity":"sha512-WsmJym1TMeHVndjPjczTFbnRR/c4sbzg8fBFtuhlb2Sru3i/S1VGpzDSrv/It8ctMU2bj8G7g7/O3FzYMGw6eA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.756_1624485749254_0.9866301382851295"},"_hasShrinkwrap":false,"publish_time":1624485749419,"_cnpm_publish_time":1624485749419,"_cnpmcore_publish_time":"2021-12-15T21:09:38.233Z"},"1.3.755":{"name":"electron-to-chromium","version":"1.3.755","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.708.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9e8ec00f84e51885041a8c63d829150f2f66b20c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.755","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4b6101f13de910cf3f0a1789ddc57328133b9332","size":11874,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.755.tgz","integrity":"sha512-BJ1s/kuUuOeo1bF/EM2E4yqW9te0Hpof3wgwBx40AWJE18zsD1Tqo0kr7ijnOc+lRsrlrqKPauJAHqaxOItoUA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.755_1624413751682_0.017679562611655042"},"_hasShrinkwrap":false,"publish_time":1624413751891,"_cnpm_publish_time":1624413751891,"_cnpmcore_publish_time":"2021-12-15T21:09:38.461Z"},"1.3.754":{"name":"electron-to-chromium","version":"1.3.754","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.706.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"261d6e277d45cbaf6c2246542d87b72f9a26a2a9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.754","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"afbe69177ad7aae968c3bbeba129dc70dcc37cf4","size":11864,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.754.tgz","integrity":"sha512-Q50dJbfYYRtwK3G9mFP/EsJVzlgcYwKxFjbXmvVa1lDAbdviPcT9QOpFoufDApub4j0hBfDRL6v3lWNLEdEDXQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.754_1624327350807_0.7586589959552543"},"_hasShrinkwrap":false,"publish_time":1624327350950,"_cnpm_publish_time":1624327350950,"_cnpmcore_publish_time":"2021-12-15T21:09:38.650Z"},"1.3.753":{"name":"electron-to-chromium","version":"1.3.753","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.705.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a636dc1d3e4ea4e6c8f1a880b0ab7539be6ca11c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.753","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e5aa72c2a3a97c8187131fe307f0f18d1277b6e5","size":11841,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.753.tgz","integrity":"sha512-LBJJ4qnuveWMqnwP0fP+bSl+QIxeToqBH8Bb0qVkz6YnfOZQpOW/FlkxuPn0u/zh+py6Y7x6L4qsl5aBjE9Djw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.753_1624312953341_0.8081225808084329"},"_hasShrinkwrap":false,"publish_time":1624312953531,"_cnpm_publish_time":1624312953531,"_cnpmcore_publish_time":"2021-12-15T21:09:38.870Z"},"1.3.752":{"name":"electron-to-chromium","version":"1.3.752","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.704.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6768b0cb165e37559ca54538aaa207d986e0a374","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.752","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0728587f1b9b970ec9ffad932496429aef750d09","size":11748,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz","integrity":"sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.752_1623290559638_0.8080979289408552"},"_hasShrinkwrap":false,"publish_time":1623290559805,"_cnpm_publish_time":1623290559805,"_cnpmcore_publish_time":"2021-12-15T21:09:39.109Z"},"1.3.751":{"name":"electron-to-chromium","version":"1.3.751","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.703.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3c7baf1bf7484a35bf2f24e409d82c7629b40cee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.751","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e0776481f7a62db61d7bb2132b9627398d54c4e9","size":11740,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.751.tgz","integrity":"sha512-+qEPTSrwAwfHiavFmbTJ8np1NUYFmeXaDUxIj1+x1zOsYDBgWnl5Z8GeVZqis1Ljp4BlRqoZygRsez2Lg9DJgw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.751_1623276161030_0.3596259902723904"},"_hasShrinkwrap":false,"publish_time":1623276161245,"_cnpm_publish_time":1623276161245,"_cnpmcore_publish_time":"2021-12-15T21:09:39.329Z"},"1.3.750":{"name":"electron-to-chromium","version":"1.3.750","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.702.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"30208d85a5c0fe53bbad5caadf52270613b77f9f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.750","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7e5ef6f478316b0bd656af5942fe502610e97eaf","size":11731,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.750.tgz","integrity":"sha512-Eqy9eHNepZxJXT+Pc5++zvEi5nQ6AGikwFYDCYwXUFBr+ynJ6pDG7MzZmwGYCIuXShLJM0n4bq+aoKDmvSGJ8A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.750_1623189762413_0.8424790444198385"},"_hasShrinkwrap":false,"publish_time":1623189762525,"_cnpm_publish_time":1623189762525,"_cnpmcore_publish_time":"2021-12-15T21:09:39.540Z"},"1.3.749":{"name":"electron-to-chromium","version":"1.3.749","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.701.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"550362bb1fd8a830514365e16918fe9f1cf563cc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.749","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0ecebc529ceb49dd2a7c838ae425236644c3439a","size":11719,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz","integrity":"sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.749_1622844160089_0.3514811040587531"},"_hasShrinkwrap":false,"publish_time":1622844160243,"_cnpm_publish_time":1622844160243,"_cnpmcore_publish_time":"2021-12-15T21:09:39.737Z"},"1.3.748":{"name":"electron-to-chromium","version":"1.3.748","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.700.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"53bcd3e75b24da58e9a1cc70653c7a439b0b80db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.748","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"16638a8130f407ae5bf2fc168f2173574deb36c5","size":11705,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.748.tgz","integrity":"sha512-fmIKfYALVeEybk/L2ucdgt7jN3JsbGtg3K9pmF/MRWgkeADBI1VSAa5IzdG2gZwTxsnsrFtdMpOTSM5mrBRKVQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.748_1622786564717_0.5876181915944427"},"_hasShrinkwrap":false,"publish_time":1622786564887,"_cnpm_publish_time":1622786564887,"_cnpmcore_publish_time":"2021-12-15T21:09:39.969Z"},"1.3.747":{"name":"electron-to-chromium","version":"1.3.747","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.699.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6237d9cc511653adadac06913f8ccec477b3d2fb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.747","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c8d6bc625fe783f506aee7710772adab47b0bf29","size":11685,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.747.tgz","integrity":"sha512-+K1vnBc08GNYxCWwdRe9o3Ml30DhsNyK/qIl/NE1Dic+qCy9ZREcqGNiV4jiLiAdALK1DUG3pakJHGkJUd9QQw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.747_1622757761175_0.7018787521436631"},"_hasShrinkwrap":false,"publish_time":1622757761418,"_cnpm_publish_time":1622757761418,"_cnpmcore_publish_time":"2021-12-15T21:09:40.196Z"},"1.3.746":{"name":"electron-to-chromium","version":"1.3.746","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.698.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"90e4a59780ab5271aee0436973256549da0df4cc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.746","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4ff1251986d751ba6e0acee516e04bc205511463","size":11670,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.746.tgz","integrity":"sha512-3ffyGODL38apwSsIgXaWnAKNXChsjXhAmBTjbqCbrv1fBbVltuNLWh0zdrQbwK/oxPQ/Gss/kYfFAPPGu9mszQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.746_1622728963279_0.9374956459314296"},"_hasShrinkwrap":false,"publish_time":1622728963431,"_cnpm_publish_time":1622728963431,"_cnpmcore_publish_time":"2021-12-15T21:09:40.433Z"},"1.3.745":{"name":"electron-to-chromium","version":"1.3.745","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.697.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8ade5fb38ab996237c0d87d4c6aaf3ae5693e0c3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.745","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b54c2baa0e01658288d6835d9f19727fd480de63","size":11665,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.745.tgz","integrity":"sha512-ZZCx4CS3kYT3BREYiIXocDqlNPT56KfdTS1Ogo4yvxRriBqiEXCDTLIQZT/zNVtby91xTWMMxW2NBiXh8bpLHw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.745_1622714563780_0.04661024146396553"},"_hasShrinkwrap":false,"publish_time":1622714564131,"_cnpm_publish_time":1622714564131,"_cnpmcore_publish_time":"2021-12-15T21:09:40.654Z"},"1.3.744":{"name":"electron-to-chromium","version":"1.3.744","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.696.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c4dcbe3db1fec5667baec75ac4708ebd4a0d5585","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.744","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"34e0da7babb325e18b50d3a0214504b12045ca85","size":11656,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.744.tgz","integrity":"sha512-o/vep/PvSXg+7buwCbVJXHY3zbjYVmFPwnMMnchESXgAzrfcasvbX/hQZHCFGG7YdZgdtwt1KTMyK9CyBxPbLA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.744_1622671361899_0.623331366953076"},"_hasShrinkwrap":false,"publish_time":1622671362011,"_cnpm_publish_time":1622671362011,"_cnpmcore_publish_time":"2021-12-15T21:09:40.870Z"},"1.3.743":{"name":"electron-to-chromium","version":"1.3.743","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.695.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4cf03b0cfa6523aa8a438c97e8a4885a8c2f12ed","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.743","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fcec24d6d647cb84fd796b42caa1b4039a180894","size":11642,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.743.tgz","integrity":"sha512-K2wXfo9iZQzNJNx67+Pld0DRF+9bYinj62gXCdgPhcu1vidwVuLPHQPPFnCdO55njWigXXpfBiT90jGUPbw8Zg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.743_1622498557509_0.9550402067594066"},"_hasShrinkwrap":false,"publish_time":1622498557645,"_cnpm_publish_time":1622498557645,"_cnpmcore_publish_time":"2021-12-15T21:09:41.093Z"},"1.3.742":{"name":"electron-to-chromium","version":"1.3.742","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.694.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"88433904f9ce4b00b3dd098319a619ca25d35c58","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.742","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7223215acbbd3a5284962ebcb6df85d88b95f200","size":11632,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.742.tgz","integrity":"sha512-ihL14knI9FikJmH2XUIDdZFWJxvr14rPSdOhJ7PpS27xbz8qmaRwCwyg/bmFwjWKmWK9QyamiCZVCvXm5CH//Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.742_1622239357652_0.6931298667193495"},"_hasShrinkwrap":false,"publish_time":1622239357797,"_cnpm_publish_time":1622239357797,"_cnpmcore_publish_time":"2021-12-15T21:09:41.311Z"},"1.3.741":{"name":"electron-to-chromium","version":"1.3.741","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.693.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"059b42bce92ff438a82c15b109ae00b4d4924740","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.741","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dc1024b19b31e27fb2c8c0a1f120cb05fc6ca695","size":11622,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.741.tgz","integrity":"sha512-4i3T0cwnHo1O4Mnp9JniEco8bZiXoqbm3PhW5hv7uu8YLg35iajYrRnNyKFaN8/8SSTskU2hYqVTeYVPceSpUA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.741_1622167361235_0.7453028487501545"},"_hasShrinkwrap":false,"publish_time":1622167361390,"_cnpm_publish_time":1622167361390,"_cnpmcore_publish_time":"2021-12-15T21:09:41.746Z"},"1.3.740":{"name":"electron-to-chromium","version":"1.3.740","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.692.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6e1f590b6728275c2cd35740197866cc920e558d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.740","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e38b7d2b848f632191b643e6dabca51be2162922","size":11614,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.740.tgz","integrity":"sha512-Mi2m55JrX2BFbNZGKYR+2ItcGnR4O5HhrvgoRRyZQlaMGQULqDhoGkLWHzJoshSzi7k1PUofxcDbNhlFrDZNhg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.740_1622080958344_0.2877992544501664"},"_hasShrinkwrap":false,"publish_time":1622080958469,"_cnpm_publish_time":1622080958469,"_cnpmcore_publish_time":"2021-12-15T21:09:41.970Z"},"1.3.739":{"name":"electron-to-chromium","version":"1.3.739","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.690.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"966dd02a07f1e07d78ef717066a4f60b953d36ea","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.739","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f07756aa92cabd5a6eec6f491525a64fe62f98b9","size":11584,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.739.tgz","integrity":"sha512-+LPJVRsN7hGZ9EIUUiWCpO7l4E3qBYHNadazlucBfsXBbccDFNKUBAgzE68FnkWGJPwD/AfKhSzL+G+Iqb8A4A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.739_1621994561556_0.25590385093837464"},"_hasShrinkwrap":false,"publish_time":1621994561722,"_cnpm_publish_time":1621994561722,"_cnpmcore_publish_time":"2021-12-15T21:09:42.199Z"},"1.3.738":{"name":"electron-to-chromium","version":"1.3.738","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.689.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"be4674d34e42c0a3b56ff2f3eaac9e5be1329da9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.738","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"aec24b091c82acbfabbdcce08076a703941d17ca","size":11574,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.738.tgz","integrity":"sha512-vCMf4gDOpEylPSLPLSwAEsz+R3ShP02Y3cAKMZvTqule3XcPp7tgc/0ESI7IS6ZeyBlGClE50N53fIOkcIVnpw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.738_1621936963808_0.28321869157564494"},"_hasShrinkwrap":false,"publish_time":1621936963940,"_cnpm_publish_time":1621936963940,"_cnpmcore_publish_time":"2021-12-15T21:09:42.466Z"},"1.3.737":{"name":"electron-to-chromium","version":"1.3.737","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.688.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a59c36bd8638ea42571aa4129607ccde04bf68c4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.737","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"196f2e9656f4f3c31930750e1899c091b72d36b5","size":11558,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.737.tgz","integrity":"sha512-P/B84AgUSQXaum7a8m11HUsYL8tj9h/Pt5f7Hg7Ty6bm5DxlFq+e5+ouHUoNQMsKDJ7u4yGfI8mOErCmSH9wyg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.737_1621908159149_0.2668726850212757"},"_hasShrinkwrap":false,"publish_time":1621908159314,"_cnpm_publish_time":1621908159314,"_cnpmcore_publish_time":"2021-12-15T21:09:42.691Z"},"1.3.736":{"name":"electron-to-chromium","version":"1.3.736","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.687.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"212be5e8a7695607821fb5fbf8148ad188c28d1c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.736","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f632d900a1f788dab22fec9c62ec5c9c8f0c4052","size":11551,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.736.tgz","integrity":"sha512-DY8dA7gR51MSo66DqitEQoUMQ0Z+A2DSXFi7tK304bdTVqczCAfUuyQw6Wdg8hIoo5zIxkU1L24RQtUce1Ioig=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.736_1621850560167_0.3491360500342766"},"_hasShrinkwrap":false,"publish_time":1621850560301,"_cnpm_publish_time":1621850560301,"_cnpmcore_publish_time":"2021-12-15T21:09:43.303Z"},"1.3.735":{"name":"electron-to-chromium","version":"1.3.735","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.686.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"890616aab3ded239a5f04dc3586b4e9b805fea86","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.735","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fa1a8660f2790662291cb2136f0e446a444cdfdc","size":11548,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.735.tgz","integrity":"sha512-cp7MWzC3NseUJV2FJFgaiesdrS+A8ZUjX5fLAxdRlcaPDkaPGFplX930S5vf84yqDp4LjuLdKouWuVOTwUfqHQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.735_1621548160789_0.4854178429053235"},"_hasShrinkwrap":false,"publish_time":1621548161012,"_cnpm_publish_time":1621548161012,"_cnpmcore_publish_time":"2021-12-15T21:09:43.539Z"},"1.3.734":{"name":"electron-to-chromium","version":"1.3.734","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.685.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"517b1c53d6555a891a42f487fcff557efa02c584","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.734","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c8d318a4eb27509190cf3a08870dbcbf06c74dcb","size":11529,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.734.tgz","integrity":"sha512-iQF2mjPZ6zNNq45kbJ6MYZYCBNdv2JpGiJC/lVx4tGJWi9MNg73KkL9sWGN4X4I/CP2SBLWsT8nPADZZpAHIyw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.734_1621476159564_0.6052146969992385"},"_hasShrinkwrap":false,"publish_time":1621476159713,"_cnpm_publish_time":1621476159713,"_cnpmcore_publish_time":"2021-12-15T21:09:43.803Z"},"1.3.733":{"name":"electron-to-chromium","version":"1.3.733","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.684.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f6c9e82309b642211d6c53c9a32dd7f9d0431a98","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.733","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"991844c0b0cf79f559e78232721da3acda1b7e0a","size":11528,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.733.tgz","integrity":"sha512-6VUgcqRBo7FC+SG08arfFwr9qKVnBSmagXN332SWvvG2j/26Xy7AfQMqPsVq3vVW4fw20SrnmBedQzTD3slVEQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.733_1621461761076_0.14165260403370494"},"_hasShrinkwrap":false,"publish_time":1621461761216,"_cnpm_publish_time":1621461761216,"_cnpmcore_publish_time":"2021-12-15T21:09:44.096Z"},"1.3.732":{"name":"electron-to-chromium","version":"1.3.732","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.683.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"115693bf2fc8b7eecedd9f80819dae852fa85682","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.732","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2a07a8d61f74f2084b6f6bf2a908605a7a0b2d8d","size":11519,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.732.tgz","integrity":"sha512-qKD5Pbq+QMk4nea4lMuncUMhpEiQwaJyCW7MrvissnRcBDENhVfDmAqQYRQ3X525oTzhar9Zh1cK0L2d1UKYcw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.732_1621418560791_0.9542249813563268"},"_hasShrinkwrap":false,"publish_time":1621418560975,"_cnpm_publish_time":1621418560975,"_cnpmcore_publish_time":"2021-12-15T21:09:44.357Z"},"1.3.731":{"name":"electron-to-chromium","version":"1.3.731","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.682.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"655f2df6e3b9631131a439d386f50ed9f739cf8c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.731","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"9f17f7e16f798eaddb21409d80aa755b5b5053dc","size":11516,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.731.tgz","integrity":"sha512-dn1Nyd0DuFa3xhqZJr6/L9phyk+YXJpvrz6Vcu6mFxFqr5TQ9r/F3yvOYFUrEwY4Tbb1YBjN19TDKnSVCQvalA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.731_1621375360464_0.1256612112395572"},"_hasShrinkwrap":false,"publish_time":1621375360723,"_cnpm_publish_time":1621375360723,"_cnpmcore_publish_time":"2021-12-15T21:09:44.589Z"},"1.3.730":{"name":"electron-to-chromium","version":"1.3.730","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.681.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0bb11ab63001680295e2a5a1f50864a2a5cdaa94","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.730","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6e1fad8f250827f5524672e572f823b34a6417e1","size":11511,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.730.tgz","integrity":"sha512-1Tr3h09wXhmqXnvDyrRe6MFgTeU0ZXy3+rMJWTrOHh/HNesWwBBrKnMxRJWZ86dzs8qQdw2c7ZE1/qeGHygImA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.730_1621303360253_0.49257825336694294"},"_hasShrinkwrap":false,"publish_time":1621303360431,"_cnpm_publish_time":1621303360431,"_cnpmcore_publish_time":"2021-12-15T21:09:44.859Z"},"1.3.729":{"name":"electron-to-chromium","version":"1.3.729","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.680.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3b16981c18d0346a4cc8e24523e516773f1decce","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.729","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3dc87b55c4aa3c75370471d9c72accf70d9af263","size":11499,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.729.tgz","integrity":"sha512-Ho8K+hCEFOt6FsRZRgh1zUpIJ4Nn9MUSgLBEF+I2Xbzo3E8zvvxZFV/tEmAl2e9dsJDWzTFnGsZTuEVfYEv8eg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.729_1621288958190_0.1930027503019962"},"_hasShrinkwrap":false,"publish_time":1621288958347,"_cnpm_publish_time":1621288958347,"_cnpmcore_publish_time":"2021-12-15T21:09:45.080Z"},"1.3.728":{"name":"electron-to-chromium","version":"1.3.728","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.679.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"48dbbde2d550d935da168d337f82eaed62d0c84b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.728","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dbedd6373f595ae10a13d146b66bece4c1afa5bd","size":11487,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.728.tgz","integrity":"sha512-SHv4ziXruBpb1Nz4aTuqEHBYi/9GNCJMYIJgDEXrp/2V01nFXMNFUTli5Z85f5ivSkioLilQatqBYFB44wNJrA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.728_1621029755882_0.3850090390188934"},"_hasShrinkwrap":false,"publish_time":1621029756027,"_cnpm_publish_time":1621029756027,"_cnpmcore_publish_time":"2021-12-15T21:09:45.328Z"},"1.3.727":{"name":"electron-to-chromium","version":"1.3.727","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.678.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"663831d6b9b8ede8e4342cbb7dbfba27fa972a6c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.727","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"857e310ca00f0b75da4e1db6ff0e073cc4a91ddf","size":11358,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.727.tgz","integrity":"sha512-Mfz4FIB4FSvEwBpDfdipRIrwd6uo8gUDoRDF4QEYb4h4tSuI3ov594OrjU6on042UlFHouIJpClDODGkPcBSbg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.727_1620208958977_0.33984061040586"},"_hasShrinkwrap":false,"publish_time":1620208959154,"_cnpm_publish_time":1620208959154,"_cnpmcore_publish_time":"2021-12-15T21:09:45.748Z"},"1.3.726":{"name":"electron-to-chromium","version":"1.3.726","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.677.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"72a84929afaa0f10c3c555f0932134fde545bbc9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.726","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6d3c577e5f5a48904ba891464740896c05e3bdb1","size":11346,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.726.tgz","integrity":"sha512-dw7WmrSu/JwtACiBzth8cuKf62NKL1xVJuNvyOg0jvruN/n4NLtGYoTzciQquCPNaS2eR+BT5GrxHbslfc/w1w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.726_1620122560886_0.19480403115136857"},"_hasShrinkwrap":false,"publish_time":1620122561135,"_cnpm_publish_time":1620122561135,"_cnpmcore_publish_time":"2021-12-15T21:09:45.975Z"},"1.3.725":{"name":"electron-to-chromium","version":"1.3.725","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.676.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a557a1f0f3370a744c7c9375c7312257c22ddfca","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.725","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"04fc83f9189169aff50f0a00c6b4090b910cba85","size":11330,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz","integrity":"sha512-2BbeAESz7kc6KBzs7WVrMc1BY5waUphk4D4DX5dSQXJhsc3tP5ZFaiyuL0AB7vUKzDYpIeYwTYlEfxyjsGUrhw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.725_1619834554724_0.6158899887075373"},"_hasShrinkwrap":false,"publish_time":1619834554862,"_cnpm_publish_time":1619834554862,"_cnpmcore_publish_time":"2021-12-15T21:09:46.488Z"},"1.3.724":{"name":"electron-to-chromium","version":"1.3.724","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.675.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"63ceeb437610609389e92a7a8c8d20b58b9ebafe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.724","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2d342f2a124e6138462de9a8c87310d0fc993752","size":11329,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.724.tgz","integrity":"sha512-dvHiOuYbTs1kQ9czhBKfapWGeyq3hs469bdbHFNpw01bOeau6B6dH4d8IteGZaMEGqVGmflrvWmxNpwvS+dhkA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.724_1619820159642_0.25570648657056716"},"_hasShrinkwrap":false,"publish_time":1619820159763,"_cnpm_publish_time":1619820159763,"_cnpmcore_publish_time":"2021-12-15T21:09:46.955Z"},"1.3.723":{"name":"electron-to-chromium","version":"1.3.723","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.674.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e7d13886b8e989ed503208b49a326c2b963b4557","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.723","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"52769a75635342a4db29af5f1e40bd3dad02c877","size":11312,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.723.tgz","integrity":"sha512-L+WXyXI7c7+G1V8ANzRsPI5giiimLAUDC6Zs1ojHHPhYXb3k/iTABFmWjivEtsWrRQymjnO66/rO2ZTABGdmWg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.723_1619575355021_0.9967137109119935"},"_hasShrinkwrap":false,"publish_time":1619575355173,"_cnpm_publish_time":1619575355173,"_cnpmcore_publish_time":"2021-12-15T21:09:47.188Z"},"1.3.722":{"name":"electron-to-chromium","version":"1.3.722","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.673.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"acb318b4ebcd546ae3d1bc9d848f6a7afef8d2d8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.722","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"621657f79e7f65402e71aa3403bc941f3a4af0a0","size":11287,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.722.tgz","integrity":"sha512-aAsc906l0RBsVTsGTK+KirVfey9eNtxyejdkbNzkISGxb7AFna3Kf0qvsp8tMttzBt9Bz3HddtYQ+++/PZtRYA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.722_1619488954680_0.5876445558617276"},"_hasShrinkwrap":false,"publish_time":1619488954897,"_cnpm_publish_time":1619488954897,"_cnpmcore_publish_time":"2021-12-15T21:09:47.778Z"},"1.3.721":{"name":"electron-to-chromium","version":"1.3.721","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.672.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ad4f3a970e0079a7b93c538542f76d9be2a66536","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.721","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3f64a0f1f58c9470ad8444caca459e996783d5d7","size":11269,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.721.tgz","integrity":"sha512-7nGs30ff6+KQs1Xhhih0+d6LNq2xz7O+B2aeCiCjYGiYrIIIUntJNaZhPfySw5ydPvZq5IdOdxkEgemYGOSQPw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.721_1619474558391_0.20931720994639735"},"_hasShrinkwrap":false,"publish_time":1619474558562,"_cnpm_publish_time":1619474558562,"_cnpmcore_publish_time":"2021-12-15T21:09:48.053Z"},"1.3.720":{"name":"electron-to-chromium","version":"1.3.720","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.671.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d3a63e371a177fa815038717e0fc4a72abe1c666","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.720","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f5d66df8754d993006b7b2ded15ff7738c58bd94","size":11210,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.720.tgz","integrity":"sha512-B6zLTxxaOFP4WZm6DrvgRk8kLFYWNhQ5TrHMC0l5WtkMXhU5UbnvWoTfeEwqOruUSlNMhVLfYak7REX6oC5Yfw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.720_1619128956915_0.6537433922180331"},"_hasShrinkwrap":false,"publish_time":1619128957137,"_cnpm_publish_time":1619128957137,"_cnpmcore_publish_time":"2021-12-15T21:09:48.336Z"},"1.3.719":{"name":"electron-to-chromium","version":"1.3.719","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.670.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"cff7a70673ddf2aeddde188347ccb53eb90deb18","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.719","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"87166fee347a46a2557f19aadb40a1d68241e61c","size":11202,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.719.tgz","integrity":"sha512-heM78GKSqrIzO9Oz0/y22nTBN7bqSP1Pla2SyU9DiSnQD+Ea9SyyN5RWWlgqsqeBLNDkSlE9J9EHFmdMPzxB/g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.719_1618999359146_0.11152743474776927"},"_hasShrinkwrap":false,"publish_time":1618999359275,"_cnpm_publish_time":1618999359275,"_cnpmcore_publish_time":"2021-12-15T21:09:48.569Z"},"1.3.718":{"name":"electron-to-chromium","version":"1.3.718","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.669.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"de57f0b1a320d6779923bfc32f99adb8bec2b743","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.718","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a192981ced608978410ebc011e24ecab1bb4beb3","size":11188,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.718.tgz","integrity":"sha512-CikzdUSShGXwjq1pcW740wK8j+KbazgHZiwzlHICejDaczM6OVsPcrZmBHPwzj9i2rj5twg20MBwp+cYZwldYA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.718_1618970557190_0.47244570487927606"},"_hasShrinkwrap":false,"publish_time":1618970557336,"_cnpm_publish_time":1618970557336,"_cnpmcore_publish_time":"2021-12-15T21:09:48.839Z"},"1.3.717":{"name":"electron-to-chromium","version":"1.3.717","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.668.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e8d04173794c95305079348f858fdfb5695455ae","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.717","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"78d4c857070755fb58ab64bcc173db1d51cbc25f","size":11177,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.717.tgz","integrity":"sha512-OfzVPIqD1MkJ7fX+yTl2nKyOE4FReeVfMCzzxQS+Kp43hZYwHwThlGP+EGIZRXJsxCM7dqo8Y65NOX/HP12iXQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.717_1618408959255_0.9558277706699709"},"_hasShrinkwrap":false,"publish_time":1618408959387,"_cnpm_publish_time":1618408959387,"_cnpmcore_publish_time":"2021-12-15T21:09:49.368Z"},"1.3.716":{"name":"electron-to-chromium","version":"1.3.716","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.667.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"aa5fc742f384a73eda3376a923d0285eb3a50e3d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.716","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"cadedb3d07776c56990cedff1a75488afeeac2e0","size":11175,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.716.tgz","integrity":"sha512-yUWKAfpJH5ovgwIlNbBHioedAWolzTVl6tmMaXP1RmCMyYv+U+ukvo9gwA10mLW0eFbyW4n/oC4UIN12gTMn/w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.716_1618394557114_0.37435061741452413"},"_hasShrinkwrap":false,"publish_time":1618394557272,"_cnpm_publish_time":1618394557272,"_cnpmcore_publish_time":"2021-12-15T21:09:49.996Z"},"1.3.715":{"name":"electron-to-chromium","version":"1.3.715","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.666.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2d2a26d6f735363ee5595935982c36a908d5df87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.715","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8fd002e79c13d711133565600f40cd80abfe5d55","size":11169,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.715.tgz","integrity":"sha512-VCWxo9RqTYhcCsHtG+l0TEOS6H5QmO1JyVCQB9nv8fllmAzj1VcCYH3qBCXP75/En6FeoepefnogLPE+5W7OiQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.715_1618365757362_0.913081830732893"},"_hasShrinkwrap":false,"publish_time":1618365757503,"_cnpm_publish_time":1618365757503,"_cnpmcore_publish_time":"2021-12-15T21:09:50.221Z"},"1.3.714":{"name":"electron-to-chromium","version":"1.3.714","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.665.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"818344f89c1b24ab0100211072400b7a8f053cc3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.714","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dabe0b67bd9463bcef5d25fe141daf8de7f93ea3","size":11138,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.714.tgz","integrity":"sha512-/xC2dSRZTzpPuKF/v+YZSYSkS0ZzktGrqou/ldu3MovPdEuLBzU/QUfEAc1as/M/KMbM5HZFQDs7/edNmSOpNA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.714_1618351358781_0.9995339527159581"},"_hasShrinkwrap":false,"publish_time":1618351358956,"_cnpm_publish_time":1618351358956,"_cnpmcore_publish_time":"2021-12-15T21:09:50.456Z"},"1.3.713":{"name":"electron-to-chromium","version":"1.3.713","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.664.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f58603edc3cfa941a1e60bbadccc37ce2712738b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.713","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4583efb17f2d1e9ec07a44c8004ea73c013ad146","size":11122,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.713.tgz","integrity":"sha512-HWgkyX4xTHmxcWWlvv7a87RHSINEcpKYZmDMxkUlHcY+CJcfx7xEfBHuXVsO1rzyYs1WQJ7EgDp2CoErakBIow=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.713_1618279358986_0.3220935526914126"},"_hasShrinkwrap":false,"publish_time":1618279359178,"_cnpm_publish_time":1618279359178,"_cnpmcore_publish_time":"2021-12-15T21:09:50.682Z"},"1.3.712":{"name":"electron-to-chromium","version":"1.3.712","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.663.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6d4d26877d1c42f8cccabd326580436f10fb5229","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.712","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ae467ffe5f95961c6d41ceefe858fc36eb53b38f","size":11114,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.712.tgz","integrity":"sha512-3kRVibBeCM4vsgoHHGKHmPocLqtFAGTrebXxxtgKs87hNUzXrX2NuS3jnBys7IozCnw7viQlozxKkmty2KNfrw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.712_1618020158669_0.8684529042921947"},"_hasShrinkwrap":false,"publish_time":1618020158863,"_cnpm_publish_time":1618020158863,"_cnpmcore_publish_time":"2021-12-15T21:09:50.906Z"},"1.3.711":{"name":"electron-to-chromium","version":"1.3.711","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.662.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3e3d2d14b8e23731af4f0e91b1a8fda8d71858db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.711","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"92c3caf7ffed5e18bf63f66b4b57b4db2409c450","size":11114,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.711.tgz","integrity":"sha512-XbklBVCDiUeho0PZQCjC25Ha6uBwqqJeyDhPLwLwfWRAo4x+FZFsmu1pPPkXT+B4MQMQoQULfyaMltDopfeiHQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.711_1617919360424_0.9653629525225682"},"_hasShrinkwrap":false,"publish_time":1617919360570,"_cnpm_publish_time":1617919360570,"_cnpmcore_publish_time":"2021-12-15T21:09:51.136Z"},"1.3.710":{"name":"electron-to-chromium","version":"1.3.710","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.661.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b49476d16db05553b232f7d3283384a7b5c6a867","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.710","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b33d316e5d6de92b916e766d8a478d19796ffe11","size":11099,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.710.tgz","integrity":"sha512-b3r0E2o4yc7mNmBeJviejF1rEx49PUBi+2NPa7jHEX3arkAXnVgLhR0YmV8oi6/Qf3HH2a8xzQmCjHNH0IpXWQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.710_1617832960134_0.4811575571859261"},"_hasShrinkwrap":false,"publish_time":1617832960336,"_cnpm_publish_time":1617832960336,"_cnpmcore_publish_time":"2021-12-15T21:09:51.320Z"},"1.3.709":{"name":"electron-to-chromium","version":"1.3.709","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.659.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"13cbef5d84959043217355ea6c2a0c07b36ec39f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.709","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d7be0b5686a2fdfe8bad898faa3a428d04d8f656","size":11093,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.709.tgz","integrity":"sha512-LolItk2/ikSGQ7SN8UkuKVNMBZp3RG7Itgaxj1npsHRzQobj9JjMneZOZfLhtwlYBe5fCJ75k+cVCiDFUs23oA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.709_1617746561544_0.4209602672750241"},"_hasShrinkwrap":false,"publish_time":1617746561740,"_cnpm_publish_time":1617746561740,"_cnpmcore_publish_time":"2021-12-15T21:09:51.523Z"},"1.3.708":{"name":"electron-to-chromium","version":"1.3.708","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.658.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"fa955f5277be291b5600041824d2316638141b2c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.708","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"127970d2fc665ab356be59e668f2914856419176","size":11082,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.708.tgz","integrity":"sha512-+A8ggYZ5riOLMcVAuzHx6bforaPzaiLnW1QOMD2SlMYQVi7QQTyQ/WrlZoebIH9ikmgr+tLJGpNITFFCUiQcPw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.708_1617660172147_0.8668631533826838"},"_hasShrinkwrap":false,"publish_time":1617660172354,"_cnpm_publish_time":1617660172354,"_cnpmcore_publish_time":"2021-12-15T21:09:51.738Z"},"1.3.707":{"name":"electron-to-chromium","version":"1.3.707","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.657.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d02a7c53d068cc15a9365c98e163cb440ae504d5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.707","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"71386d0ceca6727835c33ba31f507f6824d18c35","size":11076,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.707.tgz","integrity":"sha512-BqddgxNPrcWnbDdJw7SzXVzPmp+oiyjVrc7tkQVaznPGSS9SKZatw6qxoP857M+HbOyyqJQwYQtsuFIMSTNSZA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.707_1617415359324_0.4079214228914736"},"_hasShrinkwrap":false,"publish_time":1617415359503,"_cnpm_publish_time":1617415359503,"_cnpmcore_publish_time":"2021-12-15T21:09:52.021Z"},"1.3.706":{"name":"electron-to-chromium","version":"1.3.706","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.656.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f45185fd2e93fd795ecb923292a06a149ee4cbba","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.706","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0e59bcec33d45684ca37b3271a3dae6edbc88ffa","size":11075,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.706.tgz","integrity":"sha512-IcXgNXeW6+ObrvHnQtjhokjdOPI/DQ5j0f9M6gUy82kc9GNTMxq/mTkxWlPBSpqO1mAomR1uPDsssKDMj1V4Cw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.706_1617400959502_0.7390106306280533"},"_hasShrinkwrap":false,"publish_time":1617400959718,"_cnpm_publish_time":1617400959718,"_cnpmcore_publish_time":"2021-12-15T21:09:52.303Z"},"1.3.705":{"name":"electron-to-chromium","version":"1.3.705","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.655.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6900bed7cf06e261de349eccbe70382789145a21","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.705","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"9729956782ce44cd93bdb4197818cff71f7d5e9d","size":11069,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.705.tgz","integrity":"sha512-agtrL5vLSOIK89sE/YSzAgqCw76eZ60gf3J7Tid5RfLbSp5H4nWL28/dIV+H+ZhNNi1JNiaF62jffwYsAyXc0g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.705_1617314558994_0.9180847599038735"},"_hasShrinkwrap":false,"publish_time":1617314559189,"_cnpm_publish_time":1617314559189,"_cnpmcore_publish_time":"2021-12-15T21:09:52.504Z"},"1.3.704":{"name":"electron-to-chromium","version":"1.3.704","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.654.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"01ab8085a070f713d73c76fdc50bfbfbd1e33859","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.704","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"894205a237cbe0097d63da8f6d19e605dd13ab51","size":11059,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.704.tgz","integrity":"sha512-6cz0jvawlUe4h5AbfQWxPzb+8LzVyswGAWiGc32EJEmfj39HTQyNPkLXirc7+L4x5I6RgRkzua8Ryu5QZqc8cA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.704_1617228160169_0.2560573824878203"},"_hasShrinkwrap":false,"publish_time":1617228160356,"_cnpm_publish_time":1617228160356,"_cnpmcore_publish_time":"2021-12-15T21:09:52.787Z"},"1.3.703":{"name":"electron-to-chromium","version":"1.3.703","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.653.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"512c8231d166c7b1dadc6b76df896f793f36ccb2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.703","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6d9b9a75c42a40775f5930329e642b22b227317f","size":11038,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.703.tgz","integrity":"sha512-SVBVhNB+4zPL+rvtWLw7PZQkw/Eqj1HQZs22xtcqW36+xoifzEOEEDEpkxSMfB6RFeSIOcG00w6z5mSqLr1Y6w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.703_1617141765187_0.10635717707072789"},"_hasShrinkwrap":false,"publish_time":1617141765408,"_cnpm_publish_time":1617141765408,"_cnpmcore_publish_time":"2021-12-15T21:09:53.009Z"},"1.3.702":{"name":"electron-to-chromium","version":"1.3.702","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.652.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"77f985a712896a1f8c5afdc4e68d7f11cd263e74","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.702","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"39b8b6860b22806482ad07a8eaf35f861d4f3ce0","size":11036,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.702.tgz","integrity":"sha512-qJVUKFWQnF6wP7MmTngDkmm8/KPzaiTXNFOAg5j7DSa6J7kPou7mTBqC8jpUOxauQWwHR3pn4dMRdV8IE1xdtA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.702_1617055360076_0.6059733382210937"},"_hasShrinkwrap":false,"publish_time":1617055360331,"_cnpm_publish_time":1617055360331,"_cnpmcore_publish_time":"2021-12-15T21:09:53.267Z"},"1.3.701":{"name":"electron-to-chromium","version":"1.3.701","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.650.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"263da2be018953f56a413e9aae6256049947c544","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.701","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"5e796ed7ce88cd77bc7bf831cf311ef6b067c389","size":11023,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.701.tgz","integrity":"sha512-Zd9ofdIMYHYhG1gvnejQDvC/kqSeXQvtXF0yRURGxgwGqDZm9F9Fm3dYFnm5gyuA7xpXfBlzVLN1sz0FjxpKfw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.701_1616785357824_0.08782682740733483"},"_hasShrinkwrap":false,"publish_time":1616785358037,"_cnpm_publish_time":1616785358037,"_cnpmcore_publish_time":"2021-12-15T21:09:53.474Z"},"1.3.700":{"name":"electron-to-chromium","version":"1.3.700","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.649.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"da640902e41b6b15716b62df3b597b95961b5950","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.700","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a6999a954c698dc7da5e84c369d65432dbe895be","size":11016,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.700.tgz","integrity":"sha512-wQtaxVZzpOeCjW1CGuC5W3bYjE2jglvk076LcTautBOB9UtHztty7wNzjVsndiMcSsdUsdMy5w76w5J1U7OPTQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.700_1616698957370_0.05875508618950365"},"_hasShrinkwrap":false,"publish_time":1616698957549,"_cnpm_publish_time":1616698957549,"_cnpmcore_publish_time":"2021-12-15T21:09:53.682Z"},"1.3.699":{"name":"electron-to-chromium","version":"1.3.699","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.648.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9c839f67b1f99b70757c3e5981fe93a5a60d2e7f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.699","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"854eea9db8bc8109c409a4807bfdb200dd75a2c7","size":11002,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.699.tgz","integrity":"sha512-fjt43CPXdPYwD9ybmKbNeLwZBmCVdLY2J5fGZub7/eMPuiqQznOGNXv/wurnpXIlE7ScHnvG9Zi+H4/i6uMKmw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.699_1616612558270_0.37852341891247554"},"_hasShrinkwrap":false,"publish_time":1616612558421,"_cnpm_publish_time":1616612558421,"_cnpmcore_publish_time":"2021-12-15T21:09:54.253Z"},"1.3.698":{"name":"electron-to-chromium","version":"1.3.698","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.647.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"012602745913a4374fab110394f12faf7bd1a56a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.698","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"5de813960f23581a268718a0058683dffa15d221","size":10997,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.698.tgz","integrity":"sha512-VEXDzYblnlT+g8Q3gedwzgKOso1evkeJzV8lih7lV8mL8eAnGVnKyC3KsFT6S+R5PQO4ffdr1PI16/ElibY/kQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.698_1616569358514_0.6768610646116116"},"_hasShrinkwrap":false,"publish_time":1616569358822,"_cnpm_publish_time":1616569358822,"_cnpmcore_publish_time":"2021-12-15T21:09:54.493Z"},"1.3.697":{"name":"electron-to-chromium","version":"1.3.697","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.646.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"29048084fc3dd615801d6a9a13a83b79e32a92de","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.697","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4ba8af135d72d06534bd78f68d1be0dca3d2c590","size":10966,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.697.tgz","integrity":"sha512-VTAS+IWwGlfaL7VtfUMzFeV55PT/HglNFqQ6eW9E3PfjvPqhZfqJj+8dd9zrqrJYcouUfCgQw0OIse85Dz9V9Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.697_1616554955529_0.2670367611207034"},"_hasShrinkwrap":false,"publish_time":1616554955745,"_cnpm_publish_time":1616554955745,"_cnpmcore_publish_time":"2021-12-15T21:09:54.774Z"},"1.3.696":{"name":"electron-to-chromium","version":"1.3.696","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.645.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"33419c7e8e4641428083a4b28c239476000e02f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.696","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f38485644ff23d55955d9d68901051c6e72d1c14","size":10958,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.696.tgz","integrity":"sha512-yuKKvBuXe+IWRp6DxqbGUxbPtamh5C+mEC38vZ0KLxQFpGG9TQn0DbPL9WhWhQnfNhLyzxmPYlCzShbs8QxGbA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.696_1616526157805_0.11431690995943655"},"_hasShrinkwrap":false,"publish_time":1616526158036,"_cnpm_publish_time":1616526158036,"_cnpmcore_publish_time":"2021-12-15T21:09:54.975Z"},"1.3.695":{"name":"electron-to-chromium","version":"1.3.695","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.644.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4fc704a2622c51ef8650634c55b5015558262de4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.695","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"955f419cf99137226180cc4cca2e59015a4e248d","size":10950,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.695.tgz","integrity":"sha512-lz66RliUqLHU1Ojxx1A4QUxKydjiQ79Y4dZyPobs2Dmxj5aVL2TM3KoQ2Gs7HS703Bfny+ukI3KOxwAB0xceHQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.695_1616482956269_0.0092174313681741"},"_hasShrinkwrap":false,"publish_time":1616482956707,"_cnpm_publish_time":1616482956707,"_cnpmcore_publish_time":"2021-12-15T21:09:55.273Z"},"1.3.694":{"name":"electron-to-chromium","version":"1.3.694","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.643.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"586dc6f3a01a4b28cdb52c8595127eb93b2582e8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.694","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f5dbbec0ce9bbf93487b7d38b8396f4e58ab51c8","size":10945,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.694.tgz","integrity":"sha512-8YJ/OZjbK5luOd27dmk34B47oa/zNGRHrKTEmfO3qPns1kFAJ36Lb+OtYzNlCoXtkPYuDbX0ztofuL7ArMHJkQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.694_1616468551904_0.10514545192934044"},"_hasShrinkwrap":false,"publish_time":1616468552117,"_cnpm_publish_time":1616468552117,"_cnpmcore_publish_time":"2021-12-15T21:09:55.520Z"},"1.3.693":{"name":"electron-to-chromium","version":"1.3.693","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.642.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6fd598c4227e0202d5fb48ca6cb52ac3b5ac7e72","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.693","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"5089c506a925c31f93fcb173a003a22e341115dd","size":10937,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz","integrity":"sha512-vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.693_1616180556526_0.8012870323238119"},"_hasShrinkwrap":false,"publish_time":1616180556677,"_cnpm_publish_time":1616180556677,"_cnpmcore_publish_time":"2021-12-15T21:09:55.771Z"},"1.3.692":{"name":"electron-to-chromium","version":"1.3.692","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.641.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"35ae8f56c2ed8d029f79afa248c18d9ee84cc79d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.692","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"4d00479055a7282cdd1b19caec09ed7779529640","size":10931,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.692.tgz","integrity":"sha512-Ix+zDUAXWZuUzqKdhkgN5dP7ZM+IwMG4yAGFGDLpGJP/3vNEEwuHG1LIhtXUfW0FFV0j38t5PUv2n/3MFSRviQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.692_1616094158152_0.6562809263724478"},"_hasShrinkwrap":false,"publish_time":1616094158410,"_cnpm_publish_time":1616094158410,"_cnpmcore_publish_time":"2021-12-15T21:09:56.018Z"},"1.3.691":{"name":"electron-to-chromium","version":"1.3.691","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.640.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c5381fe83dac0e5b7c068cfb5a76a074406cbec4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.691","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a671eaf135a3ccec0915eb8d844a0952aba79f3b","size":10921,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.691.tgz","integrity":"sha512-ZqiO69KImmOGCyoH0icQPU3SndJiW93juEvf63gQngyhODO6SpQIPMTOHldtCs5DS5GMKvAkquk230E2zt2vpw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.691_1616007757611_0.39225431673794153"},"_hasShrinkwrap":false,"publish_time":1616007757868,"_cnpm_publish_time":1616007757868,"_cnpmcore_publish_time":"2021-12-15T21:09:56.231Z"},"1.3.690":{"name":"electron-to-chromium","version":"1.3.690","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.639.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"27b9cc2ff3bcf69ea0a96ca93eb3733bb06d9cf9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.690","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"54df63ec42fba6b8e9e05fe4be52caeeedb6e634","size":10912,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.690.tgz","integrity":"sha512-zPbaSv1c8LUKqQ+scNxJKv01RYFkVVF1xli+b+3Ty8ONujHjAMg+t/COmdZqrtnS1gT+g4hbSodHillymt1Lww=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.690_1615921358122_0.8307642163703022"},"_hasShrinkwrap":false,"publish_time":1615921358329,"_cnpm_publish_time":1615921358329,"_cnpmcore_publish_time":"2021-12-15T21:09:56.441Z"},"1.3.689":{"name":"electron-to-chromium","version":"1.3.689","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.638.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c0c1461496ca1a4e9f7a028c1f24d49052132a7d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.689","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0f4082467c109844b79a7b32a2649c9ab6a6c822","size":10907,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.689.tgz","integrity":"sha512-WCn+ZaU3V8WttlLNSOGOAlR2XpxibGre7slwGrYBB6oTjYPgP29LNDGG6wLvLTMseLdE+G1vno7PfY7JyDV48g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.689_1615863754236_0.24179267460826148"},"_hasShrinkwrap":false,"publish_time":1615863754454,"_cnpm_publish_time":1615863754454,"_cnpmcore_publish_time":"2021-12-15T21:09:56.635Z"},"1.3.688":{"name":"electron-to-chromium","version":"1.3.688","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.637.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"15893ee85dd458111f04708d5dced19294e1fad5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.688","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0ba54a3e77fca6561a337e6cca959b75db8683b0","size":10899,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.688.tgz","integrity":"sha512-tbKinYX7BomVBcWHzwGolzv3kqCdk/vQ36ao3MC8tQMXqs1ZpevYU2RTr7+hkDvGWtoQbe+nvvl+GfMFmRna/A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.688_1615834959329_0.9382137754908595"},"_hasShrinkwrap":false,"publish_time":1615834959519,"_cnpm_publish_time":1615834959519,"_cnpmcore_publish_time":"2021-12-15T21:09:56.868Z"},"1.3.687":{"name":"electron-to-chromium","version":"1.3.687","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.636.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b7402e0e287035d34070a2509574cb34ab70a6b1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.687","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c336184b7ab70427ffe2ee79eaeaedbc1ad8c374","size":10892,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.687.tgz","integrity":"sha512-IpzksdQNl3wdgkzf7dnA7/v10w0Utf1dF2L+B4+gKrloBrxCut+au+kky3PYvle3RMdSxZP+UiCZtLbcYRxSNQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.687_1615518153780_0.5265721560386853"},"_hasShrinkwrap":false,"publish_time":1615518154031,"_cnpm_publish_time":1615518154031,"_cnpmcore_publish_time":"2021-12-15T21:09:57.096Z"},"1.3.686":{"name":"electron-to-chromium","version":"1.3.686","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.635.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2b338e1387d0f13ad039d441b3fbea035843d570","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.686","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6c5bea31e463c45509b5a0c551b414bb4897cff0","size":10881,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.686.tgz","integrity":"sha512-SOJT3m00NX/gT3sD6E3PcZX6u3+zUmQq4+yp8QCKLOwf2ECnmh9eAY+eonhC/AAu5Gg2WrtUU2m7/+e85O0l6A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.686_1615489358888_0.10211762688977322"},"_hasShrinkwrap":false,"publish_time":1615489359068,"_cnpm_publish_time":1615489359068,"_cnpmcore_publish_time":"2021-12-15T21:09:57.704Z"},"1.3.685":{"name":"electron-to-chromium","version":"1.3.685","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.634.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"fad9f2a95a490691afd91d9d6717429003fcf867","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.685","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f636d17c9c232c925f8bbfbff4f86303da091ff9","size":10872,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.685.tgz","integrity":"sha512-C3oFZNkJ8lz85ADqr3hzpjBc2ciejMRN2SCd/D0hwcqpr6MGxfdN/j89VN6l+ERTuCUvhg0VYsf40Q4qTz4bhQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.685_1615431757600_0.4574810439623995"},"_hasShrinkwrap":false,"publish_time":1615431757957,"_cnpm_publish_time":1615431757957,"_cnpmcore_publish_time":"2021-12-15T21:09:57.970Z"},"1.3.684":{"name":"electron-to-chromium","version":"1.3.684","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.633.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"24f169d376a660d94b5ac60581abda1de4a157f1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.684","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"053fbb0a4b2d5c076dfa6e1d8ecd06a3075a558a","size":10859,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.684.tgz","integrity":"sha512-GV/vz2EmmtRSvfGSQ5A0Lucic//IRSDijgL15IgzbBEEnp4rfbxeUSZSlBfmsj7BQvE4sBdgfsvPzLCnp6L21w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.684_1615316557158_0.7383517189560105"},"_hasShrinkwrap":false,"publish_time":1615316557461,"_cnpm_publish_time":1615316557461,"_cnpmcore_publish_time":"2021-12-15T21:09:58.209Z"},"1.3.683":{"name":"electron-to-chromium","version":"1.3.683","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.632.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d0703af0ca0f902510f66ab3a34b7b39c30515a0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.683","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"2c9ab53ff5275cf3dd49278af714d0f8975204f7","size":10853,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.683.tgz","integrity":"sha512-8mFfiAesXdEdE0DhkMKO7W9U6VU/9T3VTWwZ+4g84/YMP4kgwgFtQgUxuu7FUMcvSeKSNhFQNU+WZ68BQTLT5A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.683_1615230159658_0.26797762536275216"},"_hasShrinkwrap":false,"publish_time":1615230159827,"_cnpm_publish_time":1615230159827,"_cnpmcore_publish_time":"2021-12-15T21:09:58.489Z"},"1.3.682":{"name":"electron-to-chromium","version":"1.3.682","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.631.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"3a89e3f2304df03718d8becf4259e8f7a3ca0562","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.682","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f4b5c8d4479df96b61e508a721d6c32c1262ef23","size":10844,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.682.tgz","integrity":"sha512-zok2y37qR00U14uM6qBz/3iIjWHom2eRfC2S1StA0RslP7x34jX+j4mxv80t8OEOHLJPVG54ZPeaFxEI7gPrwg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.682_1614999753912_0.34351440230839714"},"_hasShrinkwrap":false,"publish_time":1614999754124,"_cnpm_publish_time":1614999754124,"_cnpmcore_publish_time":"2021-12-15T21:09:58.724Z"},"1.3.681":{"name":"electron-to-chromium","version":"1.3.681","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.630.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e91c241d10f7dbf0d55baa218df9433fea9a8d8c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.681","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"facd915ae46a020e8be566a2ecdc0b9444439be9","size":10810,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.681.tgz","integrity":"sha512-W6uYvSUTHuyX2DZklIESAqx57jfmGjUkd7Z3RWqLdj9Mmt39ylhBuvFXlskQnvBHj0MYXIeQI+mjiwVddZLSvA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.681_1614884556397_0.03825928814107038"},"_hasShrinkwrap":false,"publish_time":1614884556971,"_cnpm_publish_time":1614884556971,"_cnpmcore_publish_time":"2021-12-15T21:09:59.020Z"},"1.3.680":{"name":"electron-to-chromium","version":"1.3.680","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.629.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d5ae639ffbaf28ff02395c7d30a59493f103fd21","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.680","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"88cc44bd2a85b46cf7521f714db57dd74d0cd488","size":10800,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.680.tgz","integrity":"sha512-XBACJT9RdpdWtoMXQPR8Be3ZtmizWWbxfw8cY2b5feUwiDO3FUl8qo4W2jXoq/WnnA3xBRqafu1XbpczqyUvlA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.680_1614826956465_0.8883596844028203"},"_hasShrinkwrap":false,"publish_time":1614826956648,"_cnpm_publish_time":1614826956648,"_cnpmcore_publish_time":"2021-12-15T21:09:59.243Z"},"1.3.679":{"name":"electron-to-chromium","version":"1.3.679","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.628.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2bd0b11f0bcb83d550e37bebdf090fff9d86e718","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.679","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"69b45bbf1e0bc2320cb1f3e65b9283e86c4d5e2f","size":10787,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.679.tgz","integrity":"sha512-PNF7JSPAEa/aV2nQLvflRcnIMy31EOuCY87Jbdz0KsUf8O/eFNGpuwgQn2DmyJkKzfQb0zrieanRGWvf/4H+BA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.679_1614798159543_0.06034394896559392"},"_hasShrinkwrap":false,"publish_time":1614798159746,"_cnpm_publish_time":1614798159746,"_cnpmcore_publish_time":"2021-12-15T21:09:59.442Z"},"1.3.678":{"name":"electron-to-chromium","version":"1.3.678","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.627.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"72e8d96e238cb98860822bda2d58b64d14b3437b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.678","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c7c6960463167126b7ed076fade14cac6223bfff","size":10784,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.678.tgz","integrity":"sha512-E5ha1pE9+aWWrT2fUD5wdPBWUnYtKnEnloewbtVyrkAs79HvodOiNO4rMR94+hKbxgMFQG4fnPQACOc1cfMfBg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.678_1614711759374_0.22057034357501704"},"_hasShrinkwrap":false,"publish_time":1614711759577,"_cnpm_publish_time":1614711759577,"_cnpmcore_publish_time":"2021-12-15T21:09:59.656Z"},"1.3.677":{"name":"electron-to-chromium","version":"1.3.677","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.626.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"06701ee4cc66a2d63a9b1d29dc4e95a7858f56ee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.677","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b5d586b0d1976c97cc7e95262677ac5944199513","size":10778,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.677.tgz","integrity":"sha512-Tcmk+oKQgpjcM+KYanlkd76ZtpzalkpUULnlJDP6vjHtR7UU564IM9Qv5DxqHZNBQjzXm6mkn7Y8bw2OoE3FmQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.677_1614668560976_0.14345703330073167"},"_hasShrinkwrap":false,"publish_time":1614668561220,"_cnpm_publish_time":1614668561220,"_cnpmcore_publish_time":"2021-12-15T21:09:59.937Z"},"1.3.676":{"name":"electron-to-chromium","version":"1.3.676","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.625.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"77f537e66de64a5d00c05b88c627712568728881","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.676","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"18b2336239b6cdc68c57ce96bf73daf80bab9eba","size":10770,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.676.tgz","integrity":"sha512-t0eEgYCP+XEbH/KwxWYZDY0XKwzmokDAsjFJ2rBstp2XuwuBCUZ+ni5qXI6XDRNkvDpVJcAOp2aJxkSkshKkmw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.676_1614625359976_0.7553239661720617"},"_hasShrinkwrap":false,"publish_time":1614625360128,"_cnpm_publish_time":1614625360128,"_cnpmcore_publish_time":"2021-12-15T21:10:00.208Z"},"1.3.675":{"name":"electron-to-chromium","version":"1.3.675","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.624.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ad3d825f273783223dd8cbe53cedac3776835b60","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.675","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"7ad29f98d7b48da581554eb28bb9a71fd5fd4956","size":10743,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.675.tgz","integrity":"sha512-GEQw+6dNWjueXGkGfjgm7dAMtXfEqrfDG3uWcZdeaD4cZ3dKYdPRQVruVXQRXtPLtOr5GNVVlNLRMChOZ611pQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.675_1614366158189_0.3053221511685693"},"_hasShrinkwrap":false,"publish_time":1614366158393,"_cnpm_publish_time":1614366158393,"_cnpmcore_publish_time":"2021-12-15T21:10:00.473Z"},"1.3.674":{"name":"electron-to-chromium","version":"1.3.674","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.623.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7160ec7c32ed53db1b590234eb0687f5c37bab2f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.674","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"d97feefdf1d9411fdc9d56d17e1b9d67b818e710","size":10740,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.674.tgz","integrity":"sha512-DBmEKRVYLZAoQSW+AmLcTF5Bpwhk4RUkobtzXVDlfPPYIlbsH3Jfg3QbBjAfFcRARzMIo4YiMhp3N+RnMuo1Eg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.674_1614279759046_0.5622926718544707"},"_hasShrinkwrap":false,"publish_time":1614279759244,"_cnpm_publish_time":1614279759244,"_cnpmcore_publish_time":"2021-12-15T21:10:00.739Z"},"1.3.673":{"name":"electron-to-chromium","version":"1.3.673","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.622.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2678219d44f647307865009fab10ed575978c531","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.673","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b4f81c930b388f962b7eba20d0483299aaa40913","size":10715,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.673.tgz","integrity":"sha512-ms+QR2ckfrrpEAjXweLx6kNCbpAl66DcW//3BZD4BV5KhUgr0RZRce1ON/9J3QyA3JO28nzgb5Xv8DnPr05ILg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.673_1614135757339_0.4153423915665788"},"_hasShrinkwrap":false,"publish_time":1614135757534,"_cnpm_publish_time":1614135757534,"_cnpmcore_publish_time":"2021-12-15T21:10:00.976Z"},"1.3.672":{"name":"electron-to-chromium","version":"1.3.672","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.621.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"20580688d8dc640d073d5236513ee0d517caff5b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.672","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3a6e335016dab4bc584d5292adc4f98f54541f6a","size":10711,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.672.tgz","integrity":"sha512-gFQe7HBb0lbOMqK2GAS5/1F+B0IMdYiAgB9OT/w1F4M7lgJK2aNOMNOM622aEax+nS1cTMytkiT0uMOkbtFmHw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.672_1614020558111_0.9360128648784893"},"_hasShrinkwrap":false,"publish_time":1614020558314,"_cnpm_publish_time":1614020558314,"_cnpmcore_publish_time":"2021-12-15T21:10:01.217Z"},"1.3.671":{"name":"electron-to-chromium","version":"1.3.671","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.620.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"83750f828cb7bec07c44a2d3b7c98feaff4dc91d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.671","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8feaed6eae42d279fa4611f58c42a5a1eb81b2a0","size":10699,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz","integrity":"sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.671_1613790155969_0.8207456614353299"},"_hasShrinkwrap":false,"publish_time":1613790156192,"_cnpm_publish_time":1613790156192,"_cnpmcore_publish_time":"2021-12-15T21:10:01.453Z"},"1.3.670":{"name":"electron-to-chromium","version":"1.3.670","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.619.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2520c144ceb0cd58fd8274bee706d4bfc0981a3c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.670","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b1560b9ab212ff77fc8197002e735b72882c31be","size":10686,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.670.tgz","integrity":"sha512-iiHQa72+3wbkPR0O8InsNbRwKcV6gBEKiUqPaJ4+TOwQkJQY4ku1sBNC+0ZSfANQ0nqr0SyRO3/Qr6S7Lct/IA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.670_1613761358346_0.43513488126682054"},"_hasShrinkwrap":false,"publish_time":1613761358536,"_cnpm_publish_time":1613761358536,"_cnpmcore_publish_time":"2021-12-15T21:10:01.680Z"},"1.3.669":{"name":"electron-to-chromium","version":"1.3.669","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.618.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5dc571d917fc330f468b7212ead1349d159b40b8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.669","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"ef9b63187b3f9821e2a064e04f616ea092282b41","size":10678,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.669.tgz","integrity":"sha512-VNj10fmGC6SbE7s4tKG7y2OopVXYoTIfjE1MetflPd77KmeRuHtkl+HYsfF00BGg5hyaorTUn6lTToEHaciOSw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.669_1613703753613_0.3248137538993563"},"_hasShrinkwrap":false,"publish_time":1613703753869,"_cnpm_publish_time":1613703753869,"_cnpmcore_publish_time":"2021-12-15T21:10:01.911Z"},"1.3.668":{"name":"electron-to-chromium","version":"1.3.668","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.617.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"155dd480d946c34b6ddf88f3c91573cd2f96e2b6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.668","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"87bab4d2863d865a6996b592db79f94e1cc5f768","size":10670,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.668.tgz","integrity":"sha512-TJzc4pxcplsWWS2hP01qQtwMIS+/3VLm4tkhsXbFwx3IIroXyidalrwcaJH+cNcrAdzSJ5xv0oeyGMS7d0i3kg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.668_1613674955611_0.5729510413905894"},"_hasShrinkwrap":false,"publish_time":1613674955749,"_cnpm_publish_time":1613674955749,"_cnpmcore_publish_time":"2021-12-15T21:10:02.276Z"},"1.3.667":{"name":"electron-to-chromium","version":"1.3.667","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.616.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e1a105823a861aae35210c42532211e40a029f48","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.667","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"18ca4f243ec163c3e354e506ba22ef46d31d925e","size":10666,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.667.tgz","integrity":"sha512-Ot1pPtAVb5nd7jeVF651zmfLFilRVFomlDzwXmdlWe5jyzOGa6mVsQ06XnAurT7wWfg5VEIY+LopbAdD/bpo5w=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.667_1613588556101_0.3441364719157842"},"_hasShrinkwrap":false,"publish_time":1613588556214,"_cnpm_publish_time":1613588556214,"_cnpmcore_publish_time":"2021-12-15T21:10:02.890Z"},"1.3.666":{"name":"electron-to-chromium","version":"1.3.666","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.615.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f5fcfefbb10a431da4f754a87dd4f7f3866e4e99","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.666","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"59f3ce1e45b860a0ebe439b72664354efbb8bc62","size":10655,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.666.tgz","integrity":"sha512-/mP4HFQ0fKIX4sXltG6kfcoGrfNDZwCIyWbH2SIcVaa9u7Rm0HKjambiHNg5OEruicTl9s1EwbERLwxZwk19aw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.666_1613502156655_0.4807564059078866"},"_hasShrinkwrap":false,"publish_time":1613502157014,"_cnpm_publish_time":1613502157014,"_cnpmcore_publish_time":"2021-12-15T21:10:03.135Z"},"1.3.665":{"name":"electron-to-chromium","version":"1.3.665","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.613.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2874c827e3d0b67a05620447f509329f603920aa","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.665","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6d0937376f6a919c0f289202c4be77790a6175e5","size":10651,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.665.tgz","integrity":"sha512-LIjx1JheOz7LM8DMEQ2tPnbBzJ4nVG1MKutsbEMLnJfwfVdPIsyagqfLp56bOWhdBrYGXWHaTayYkllIU2TauA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.665_1613415755345_0.5926514838974781"},"_hasShrinkwrap":false,"publish_time":1613415755529,"_cnpm_publish_time":1613415755529,"_cnpmcore_publish_time":"2021-12-15T21:10:03.364Z"},"1.3.664":{"name":"electron-to-chromium","version":"1.3.664","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.612.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b62a3f701c0833b5fffaef9e52aa16ac9f89bace","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.664","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8fb039e2fa8ef3ab2568308464a28425d4f6e2a3","size":10643,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.664.tgz","integrity":"sha512-yb8LrTQXQnh9yhnaIHLk6CYugF/An50T20+X0h++hjjhVfgSp1DGoMSYycF8/aD5eiqS4QwaNhiduFvK8rifRg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.664_1613185353392_0.690314835838681"},"_hasShrinkwrap":false,"publish_time":1613185353607,"_cnpm_publish_time":1613185353607,"_cnpmcore_publish_time":"2021-12-15T21:10:03.647Z"},"1.3.663":{"name":"electron-to-chromium","version":"1.3.663","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.611.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a7d1852a8079d8f4851c45bb567240538a4e7714","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.663","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"dd54adfd8d7f0e01b80d236c6e232efbaa0c686c","size":10640,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.663.tgz","integrity":"sha512-xkVkzHj6k3oRRGlmdgUCCLSLhtFYHDCTH7SeK+LJdJjnsLcrdbpr8EYmfMQhez3V/KPO5UScSpzQ0feYX6Qoyw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.663_1613070158328_0.9471654441800594"},"_hasShrinkwrap":false,"publish_time":1613070158782,"_cnpm_publish_time":1613070158782,"_cnpmcore_publish_time":"2021-12-15T21:10:03.898Z"},"1.3.662":{"name":"electron-to-chromium","version":"1.3.662","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.610.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"cfb265fdace8aeb2d68d1a85c8e417e5eaa3a7ac","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.662","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"43305bcf88a3340feb553b815d6fd7466659d5ee","size":10622,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.662.tgz","integrity":"sha512-IGBXmTGwdVGUVTnZ8ISEvkhDfhhD+CDFndG4//BhvDcEtPYiVrzoB+rzT/Y12OQCf5bvRCrVmrUbGrS9P7a6FQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.662_1612983763879_0.8085527898641633"},"_hasShrinkwrap":false,"publish_time":1612983764193,"_cnpm_publish_time":1612983764193,"_cnpmcore_publish_time":"2021-12-15T21:10:04.119Z"},"1.3.661":{"name":"electron-to-chromium","version":"1.3.661","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.609.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7d991b364a4001454288678e4fcdcca782c7ca7c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.661","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8603ec971b3e3b3d83389ac2bb64b9b07d7bb40a","size":10607,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.661.tgz","integrity":"sha512-INNzKoL9ceOpPCpF5J+Fp9AOHY1RegwKViohAyTzV3XbkuRUx04r4v8edsDbevsog8UuL0GvD/Qerr2HwVTlSA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.661_1612926154642_0.5083421885407566"},"_hasShrinkwrap":false,"publish_time":1612926154851,"_cnpm_publish_time":1612926154851,"_cnpmcore_publish_time":"2021-12-15T21:10:04.364Z"},"1.3.660":{"name":"electron-to-chromium","version":"1.3.660","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.608.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"aad981c90b987a06b52c00c03da76af87f53b0a7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.660","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"bfa8ce23735391cbd1c75c38f483e3179d0e0370","size":10601,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.660.tgz","integrity":"sha512-UOSKNfUBY8FDOSo4mfaUsN3KftlNLcYOg9v5apqLvNcWj+Ogy/i9SEDMZpfSVOeDkOcpu9iusucX6jxTWzqGLA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.660_1612897357840_0.4283397487109979"},"_hasShrinkwrap":false,"publish_time":1612897358048,"_cnpm_publish_time":1612897358048,"_cnpmcore_publish_time":"2021-12-15T21:10:04.615Z"},"1.3.659":{"name":"electron-to-chromium","version":"1.3.659","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.607.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b6b91b9f4bfa31a5384fd7e660b55f05836ce659","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.659","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"479eb1a80044ad3664ebd548e7b225fefe06a914","size":10597,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.659.tgz","integrity":"sha512-VPc1LcvuQYGjam6k7JcB6uJFTMo2YNlJ6rSbwbxApZQdow7X81kh/vDB6LB5B8DNmvkbKnpZkLmpKmnvoKA+Gw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.659_1612854158311_0.3131879833980473"},"_hasShrinkwrap":false,"publish_time":1612854158484,"_cnpm_publish_time":1612854158484,"_cnpmcore_publish_time":"2021-12-15T21:10:04.862Z"},"1.3.658":{"name":"electron-to-chromium","version":"1.3.658","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.606.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"356b7600f21efa4cba880e5b65faad84bd239a83","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.658","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"aac0f3d74e28cd805741b28a0d660ebff4cbdd44","size":10590,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.658.tgz","integrity":"sha512-1sRTaBVbn02sqadml7IchB1VxgRBcrJg55rlNa7dNszT0ZDDAM0/8NVHtbe0yCrOafLVB+lBzapWX1HpS+Knhg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.658_1612839757079_0.12535167821858195"},"_hasShrinkwrap":false,"publish_time":1612839757268,"_cnpm_publish_time":1612839757268,"_cnpmcore_publish_time":"2021-12-15T21:10:05.358Z"},"1.3.657":{"name":"electron-to-chromium","version":"1.3.657","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.604.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7240e20b080d8af5c337eb1a0467aca0baead1e8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.657","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a9c307f2612681245738bb8d36d997cbb568d481","size":10582,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.657.tgz","integrity":"sha512-/9ROOyvEflEbaZFUeGofD+Tqs/WynbSTbNgNF+/TJJxH1ePD/e6VjZlDJpW3FFFd3nj5l3Hd8ki2vRwy+gyRFw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.657_1612594960469_0.32609357286712415"},"_hasShrinkwrap":false,"publish_time":1612594960688,"_cnpm_publish_time":1612594960688,"_cnpmcore_publish_time":"2021-12-15T21:10:05.582Z"},"1.3.656":{"name":"electron-to-chromium","version":"1.3.656","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.603.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"18e0e796a2837b6bd48bc7b1d352503388dfc4b3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.656","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"73189277993bba6a327fe53addc2d5715b192c6b","size":10583,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.656.tgz","integrity":"sha512-NKfOW3P126lmdI7SebhoOulEt8oG6pCd7WV1crHawItX5OyTV/ENK42RRsuxWF00lH4AGCUVh6Gyc5VU9yFWpw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.656_1612580556924_0.30530661038903006"},"_hasShrinkwrap":false,"publish_time":1612580557122,"_cnpm_publish_time":1612580557122,"_cnpmcore_publish_time":"2021-12-15T21:10:05.818Z"},"1.3.655":{"name":"electron-to-chromium","version":"1.3.655","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.602.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"964f59c1554f286d49f0c8ccb0cdc895ee3a71e2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.655","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"e5ccf5c445ca131fea9d0698d08cc9c8ca01fa81","size":10568,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.655.tgz","integrity":"sha512-b+V6KreLR1SvNBY1WOZWsm5Dc/ZC/B5/E1m5TpUrWnEwrd1pJgKgsrLYtQYTDgdTj1/QoZE7qMPIeJ6hZwpsVA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.655_1612551760586_0.9090153204175775"},"_hasShrinkwrap":false,"publish_time":1612551760743,"_cnpm_publish_time":1612551760743,"_cnpmcore_publish_time":"2021-12-15T21:10:06.009Z"},"1.3.654":{"name":"electron-to-chromium","version":"1.3.654","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.601.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"68972a4760a4b978d99898ae7212270deb198dce","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.654","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"f1b82d59bdeafa65af75794356df54f92b41c4de","size":10567,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.654.tgz","integrity":"sha512-Zy2gc/c8KYFg2GkNr7Ruzh5tPEZpFm7EyXqZTFasm1YRDJtpyBRGaOuM0H3t6SuIP53qX4kNmtO9t0WjhBjE9A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.654_1612465361580_0.12616744106529065"},"_hasShrinkwrap":false,"publish_time":1612465361768,"_cnpm_publish_time":1612465361768,"_cnpmcore_publish_time":"2021-12-15T21:10:06.240Z"},"1.3.653":{"name":"electron-to-chromium","version":"1.3.653","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.600.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"48c0ee3b23027550aad5362a5326a82d1a8c7a1a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.653","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"1d98400eba330538a7fe169808c6bf9d83c44450","size":10555,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.653.tgz","integrity":"sha512-LehOhcl74u9fkV9Un6WahJ+Xh+0FZLCCDnKYis1Olx1DX2ugRww5PJicE65OG8yznMj8EOQZRcz6FSV1xKxqsA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.653_1612378959053_0.282586792513577"},"_hasShrinkwrap":false,"publish_time":1612378959286,"_cnpm_publish_time":1612378959286,"_cnpmcore_publish_time":"2021-12-15T21:10:06.849Z"},"1.3.652":{"name":"electron-to-chromium","version":"1.3.652","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.599.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"9a5456099ad28fdee54191a6a5f9daf7dbf9e053","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.652","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"9465d884d609acffd131ba71096de7bfabd63670","size":10547,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.652.tgz","integrity":"sha512-85J5D0Ksxjq2MIHfgwOURRej72UMlexbaa7t+oKTJan3Pa/RBE8vJ4/JzwaQjLCElPvd0XeLWi7+xYTVrq96aA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.652_1612335758648_0.2768037908287153"},"_hasShrinkwrap":false,"publish_time":1612335758803,"_cnpm_publish_time":1612335758803,"_cnpmcore_publish_time":"2021-12-15T21:10:07.051Z"},"1.3.651":{"name":"electron-to-chromium","version":"1.3.651","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.598.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"809a9054b1890d4e2a85e85df6062010a818fd44","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.651","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"aa6d6613133a41d558e115e7e668159fd32966ad","size":10533,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.651.tgz","integrity":"sha512-2gWRGUMZB/BGru4LOQ6w6mZmesBk4pLPvi64x48cL6fwUVBeOenBbnrclLjLsQ/NjG2TWHEnTycWJc3IgEl0vQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.651_1612321355474_0.26315551610423804"},"_hasShrinkwrap":false,"publish_time":1612321355583,"_cnpm_publish_time":1612321355583,"_cnpmcore_publish_time":"2021-12-15T21:10:07.268Z"},"1.3.650":{"name":"electron-to-chromium","version":"1.3.650","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.597.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e3bcce29e9534b901313a7d0d7b335ff5fc8f5c2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.650","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"24e821fff2ed61fd71fee092f2a0631b3c0c22a6","size":10516,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.650.tgz","integrity":"sha512-j6pRuNylFBbroG6NB8Lw/Im9oDY74s2zWHBP5TmdYg73cBuL6cz//SMgolVa0gIJk/DSL+kO7baJ1DSXW1FUZg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.650_1612206158634_0.957690349515488"},"_hasShrinkwrap":false,"publish_time":1612206158845,"_cnpm_publish_time":1612206158845,"_cnpmcore_publish_time":"2021-12-15T21:10:07.491Z"},"1.3.649":{"name":"electron-to-chromium","version":"1.3.649","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.596.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c447ed69dc0c2a576ec2d17700f44e3d6514cc3a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.649","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3aa8be052d4d268ede45d8e98d0cd60ffefad607","size":10500,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.649.tgz","integrity":"sha512-ojGDupQ3UMkvPWcTICe4JYe17+o9OLiFMPoduoR72Zp2ILt1mRVeqnxBEd6s/ptekrnsFU+0A4lStfBe/wyG/A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.649_1611946957135_0.6983734765543743"},"_hasShrinkwrap":false,"publish_time":1611946957380,"_cnpm_publish_time":1611946957380,"_cnpmcore_publish_time":"2021-12-15T21:10:07.695Z"},"1.3.648":{"name":"electron-to-chromium","version":"1.3.648","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.594.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a23d19ea4a8fbe38dfbec67bbe1c49b8303c4483","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.648","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b05926eca1843c04b283e682a1fc6c10af7e9dda","size":10498,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.648.tgz","integrity":"sha512-4POzwyQ80tkDiBwkxn7IpfzioimrjRSFX1sCQ3pLZsYJ5ERYmwzdq0hZZ3nFP7Z6GtmnSn3xwWDm8FPlMeOoEQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.648_1611860569225_0.7326299343785887"},"_hasShrinkwrap":false,"publish_time":1611860569420,"_cnpm_publish_time":1611860569420,"_cnpmcore_publish_time":"2021-12-15T21:10:07.931Z"},"1.3.647":{"name":"electron-to-chromium","version":"1.3.647","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.593.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d66993783c4ccba98fe36923cffbfec9743f4282","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.647","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8f1750ab7a5137f1a9a27f8f4ebdf550e08ae10b","size":10486,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.647.tgz","integrity":"sha512-Or2Nu8TjkmSywY9hk85K/Y6il28hchlonITz30fkC87qvSNupQl29O12BzDDDTnUFlo6kEIFL2QGSpkZDMxH8g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.647_1611802955764_0.8536471577164559"},"_hasShrinkwrap":false,"publish_time":1611802955945,"_cnpm_publish_time":1611802955945,"_cnpmcore_publish_time":"2021-12-15T21:10:08.141Z"},"1.3.646":{"name":"electron-to-chromium","version":"1.3.646","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.592.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2b95aa4d66f6904b05dd094ee3845a552d7c9aee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.646","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"a7dc089d6d83b6d6cc01f91de524e91f12e6ccfa","size":10478,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.646.tgz","integrity":"sha512-P+3q8ugIPezulqoBYaLoUsF0fT4YNpe+zEDmdDUDnHZUAeSbBjMbis+JjJp9duU8BdfWV3VXf27NTBcwhRTsAQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.646_1611774159975_0.6418987019683928"},"_hasShrinkwrap":false,"publish_time":1611774160158,"_cnpm_publish_time":1611774160158,"_cnpmcore_publish_time":"2021-12-15T21:10:08.436Z"},"1.3.645":{"name":"electron-to-chromium","version":"1.3.645","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.591.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a34cf0b286742046fce4ff36f086b763937055ee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.645","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c0b269ae2ecece5aedc02dd4586397d8096affb1","size":10464,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.645.tgz","integrity":"sha512-T7mYop3aDpRHIQaUYcmzmh6j9MAe560n6ukqjJMbVC6bVTau7dSpvB18bcsBPPtOSe10cKxhJFtlbEzLa0LL1g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.645_1611601358513_0.262744965639067"},"_hasShrinkwrap":false,"publish_time":1611601358684,"_cnpm_publish_time":1611601358684,"_cnpmcore_publish_time":"2021-12-15T21:10:08.807Z"},"1.3.644":{"name":"electron-to-chromium","version":"1.3.644","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.590.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"005c948bef5aacf811cbdd0531c9f4edbad4cf53","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.644","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"c89721733ec26b8d117275fb6b2acbeb3d45a6b6","size":10448,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.644.tgz","integrity":"sha512-N7FLvjDPADxad+OXXBuYfcvDvCBG0aW8ZZGr7G91sZMviYbnQJFxdSvUus4SJ0K7Q8dzMxE+Wx1d/CrJIIJ0sw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.644_1611385358029_0.0566832842991114"},"_hasShrinkwrap":false,"publish_time":1611385358221,"_cnpm_publish_time":1611385358221,"_cnpmcore_publish_time":"2021-12-15T21:10:09.342Z"},"1.3.643":{"name":"electron-to-chromium","version":"1.3.643","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.589.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c8a21c3d845028d4d51ea2c6ad31518b5c31f63a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.643","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"fc196e17d01f4d874ef2307b009c0cd993ebe1c7","size":10439,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.643.tgz","integrity":"sha512-TGomM4gj8adt/uqRgPbu9F0yhUVAR1deww5X0fvbQgpGr9suSMjLgc4IwQ9YKGkp1t03cDbZum20OfAkiTYjAg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.643_1611342156258_0.3803282486560233"},"_hasShrinkwrap":false,"publish_time":1611342156415,"_cnpm_publish_time":1611342156415,"_cnpmcore_publish_time":"2021-12-15T21:10:09.551Z"},"1.3.642":{"name":"electron-to-chromium","version":"1.3.642","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.588.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"54773fa58fbf9e378efa2993bd33129bcd9d6fbd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.642","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8b884f50296c2ae2a9997f024d0e3e57facc2b94","size":10432,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.642.tgz","integrity":"sha512-cev+jOrz/Zm1i+Yh334Hed6lQVOkkemk2wRozfMF4MtTR7pxf3r3L5Rbd7uX1zMcEqVJ7alJBnJL7+JffkC6FQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.642_1611082959105_0.8806338341247826"},"_hasShrinkwrap":false,"publish_time":1611082959336,"_cnpm_publish_time":1611082959336,"_cnpmcore_publish_time":"2021-12-15T21:10:09.803Z"},"1.3.641":{"name":"electron-to-chromium","version":"1.3.641","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.587.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1486c5a466e38f7a1332e521b1fb721c3f7a72a5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.641","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"03f14efd70a7971eff2efc947b3c1d0f717c82b9","size":10416,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.641.tgz","integrity":"sha512-b0DLhsHSHESC1I+Nx6n4w4Lr61chMd3m/av1rZQhS2IXTzaS5BMM5N+ldWdMIlni9CITMRM09m8He4+YV/92TA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.641_1610737356663_0.9245770476694906"},"_hasShrinkwrap":false,"publish_time":1610737356919,"_cnpm_publish_time":1610737356919,"_cnpmcore_publish_time":"2021-12-15T21:10:10.037Z"},"1.3.640":{"name":"electron-to-chromium","version":"1.3.640","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.586.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5922cf27da222948e8e2441f2b09679b5bb695ba","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.640","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"94e68c0ae79181a1d6fd1ed9a42b9790d51a1bca","size":10407,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.640.tgz","integrity":"sha512-cU6wQdXYzuSPzLdszsa4whStYfmU7CVNnG6c5z6/z9YlCOQ2Xh/uKB1gTxlIRr0ubgSg1/dZuSbUAoeESeQ3sQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.640_1610679756035_0.12068013231525199"},"_hasShrinkwrap":false,"publish_time":1610679756187,"_cnpm_publish_time":1610679756187,"_cnpmcore_publish_time":"2021-12-15T21:10:10.279Z"},"1.3.639":{"name":"electron-to-chromium","version":"1.3.639","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.585.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8f9b54df460394f574175864efe27289dd0eeee8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.639","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"0a27e3018ae3acf438a14a1dd4e41db4b8ab764e","size":10401,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.639.tgz","integrity":"sha512-bwl6/U6xb3d3CNufQU9QeO1L32ueouFwW4bWANSwdXR7LVqyLzWjNbynoKNfuC38QFB5Qn7O0l2KLqBkcXnC3Q=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.639_1610593356664_0.7325128216928298"},"_hasShrinkwrap":false,"publish_time":1610593356837,"_cnpm_publish_time":1610593356837,"_cnpmcore_publish_time":"2021-12-15T21:10:10.506Z"},"1.3.638":{"name":"electron-to-chromium","version":"1.3.638","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.584.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"c577b3f4d126a3c735628c1d93f970bde6d8799b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.638","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"28e2f430f0c42c977135e09e568496664ea29483","size":10398,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.638.tgz","integrity":"sha512-vbTdlXeu3pAtPt0/T3+HVyX9bu6Lx/iXUYSWBCCRDI+JQiq48m6o4BnZPLBy40+4E0dLbt/Ix9VIJ/06XztfoA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.638_1610578956408_0.5735524964336343"},"_hasShrinkwrap":false,"publish_time":1610578956639,"_cnpm_publish_time":1610578956639,"_cnpmcore_publish_time":"2021-12-15T21:10:10.738Z"},"1.3.637":{"name":"electron-to-chromium","version":"1.3.637","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.583.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"e54dfdaa12e96ad317102c94a6c36fc1c4d20f37","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.637","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"be46f77acc217cdecf633bbd25292f6a36cc689b","size":10384,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.637.tgz","integrity":"sha512-924WXYMYquYybc+7pNApGlhY2RWg3MY3he4BrZ5BUmM2n1MGBsrS+PZxrlo6UAsWuNl4NE66fqFdwsWkBUGgkA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.637_1610506955241_0.15650867120318668"},"_hasShrinkwrap":false,"publish_time":1610506960950,"_cnpm_publish_time":1610506960950,"_cnpmcore_publish_time":"2021-12-15T21:10:10.939Z"},"1.3.636":{"name":"electron-to-chromium","version":"1.3.636","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.582.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"518f57c168b0772736c05835257905c842817728","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.636","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"6980bd90813a9fb744e43f5e848f16cea4930058","size":10361,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.636.tgz","integrity":"sha512-Adcvng33sd3gTjNIDNXGD1G4H6qCImIy2euUJAQHtLNplEKU5WEz5KRJxupRNIIT8sD5oFZLTKBWAf12Bsz24A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.636_1610391759553_0.4753091305744124"},"_hasShrinkwrap":false,"publish_time":1610391759694,"_cnpm_publish_time":1610391759694,"_cnpmcore_publish_time":"2021-12-15T21:10:11.139Z"},"1.3.635":{"name":"electron-to-chromium","version":"1.3.635","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.581.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"66083d8f6b6b4f5f3b20bc7b58ec8f1f5403a04d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.635","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"8d1591eeca6b257d380061a2c04f0b3cc6c9e33b","size":10340,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.635.tgz","integrity":"sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.635_1610132560683_0.170372686820228"},"_hasShrinkwrap":false,"publish_time":1610132560881,"_cnpm_publish_time":1610132560881,"_cnpmcore_publish_time":"2021-12-15T21:10:11.356Z"},"1.3.634":{"name":"electron-to-chromium","version":"1.3.634","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.579.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"66b50809f97ddc9bbf525527e13422c4a8b067cf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.634","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"82ea400f520f739c4f6ff00c1f7524827a917d25","size":10337,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.634.tgz","integrity":"sha512-QPrWNYeE/A0xRvl/QP3E0nkaEvYUvH3gM04ZWYtIa6QlSpEetRlRI1xvQ7hiMIySHHEV+mwDSX8Kj4YZY6ZQAw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.634_1609815758652_0.6316371228127595"},"_hasShrinkwrap":false,"publish_time":1609815758837,"_cnpm_publish_time":1609815758837,"_cnpmcore_publish_time":"2021-12-15T21:10:11.559Z"},"1.3.633":{"name":"electron-to-chromium","version":"1.3.633","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.578.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"58c5b11bfb0d479f50746e8c9d161db54bd84ec3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.633","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"16dd5aec9de03894e8d14a1db4cda8a369b9b7fe","size":10171,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.633.tgz","integrity":"sha512-bsVCsONiVX1abkWdH7KtpuDAhsQ3N3bjPYhROSAXE78roJKet0Y5wznA14JE9pzbwSZmSMAW6KiKYf1RvbTJkA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.633_1608750157902_0.30565932515695393"},"_hasShrinkwrap":false,"publish_time":1608750158091,"_cnpm_publish_time":1608750158091,"_cnpmcore_publish_time":"2021-12-15T21:10:11.764Z"},"1.3.632":{"name":"electron-to-chromium","version":"1.3.632","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.577.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"53dee4153091ece41154711bd4cfac6b4059acb1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.632","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"3b1d89fe5065dd6a65a1dafc25bbe6f218ca9326","size":10157,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.632.tgz","integrity":"sha512-LkaEH9HHr9fodmm3txF4nFMyHN3Yr50HcpD/DBHpLCxzM9doV8AV0er6aBWva4IDs2aA9kGguces0rp+WKL7rg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.632_1608663757843_0.5088373431329194"},"_hasShrinkwrap":false,"publish_time":1608663758031,"_cnpm_publish_time":1608663758031,"_cnpmcore_publish_time":"2021-12-15T21:10:11.963Z"},"1.3.631":{"name":"electron-to-chromium","version":"1.3.631","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.576.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"ac1b1844f991220c65876743e9bdccd3416ce55e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.631","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"b28ebc7bfb348bb0aede2fae8888d775ddb6f5ee","size":10155,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.631.tgz","integrity":"sha512-mPEG/52142po0XK1jQkZtbMmp38MZtQ3JDFItYxV65WXyhxDYEQ54tP4rb93m0RbMlZqQ+4zBw2N7UumSgGfbA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.631_1608606157000_0.7861518447387765"},"_hasShrinkwrap":false,"publish_time":1608606157213,"_cnpm_publish_time":1608606157213,"_cnpmcore_publish_time":"2021-12-15T21:10:12.377Z"},"1.3.630":{"name":"electron-to-chromium","version":"1.3.630","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.575.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"01fbac6565460d925af6476d1daf268ea336d1db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.630","_nodeVersion":"10.15.3","_npmVersion":"6.14.9","dist":{"shasum":"102e930466e53ab7fde6009c2d50b8a4574b543e","size":10150,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.630.tgz","integrity":"sha512-HSTsvqOrR3kWsoekKu0EOQXR/YOncKs3HAys9lysvIS2ec/mlfV1ZoLHSx00semK+PscVJwqcvBN4ayGPs++fA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.630_1608577357841_0.9394560597880515"},"_hasShrinkwrap":false,"publish_time":1608577358037,"_cnpm_publish_time":1608577358037,"_cnpmcore_publish_time":"2021-12-15T21:10:12.700Z"},"1.3.629":{"name":"electron-to-chromium","version":"1.3.629","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.574.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"7315dbb56115ca6a1ecfd61cbff0fb9a66ee6b36","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.629","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a08d13b64d90e3c77ec5b9bffa3efbc5b4a00969","size":10129,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.629.tgz","integrity":"sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.629_1608231762403_0.8695835991852399"},"_hasShrinkwrap":false,"publish_time":1608231762675,"_cnpm_publish_time":1608231762675,"_cnpmcore_publish_time":"2021-12-15T21:10:12.945Z"},"1.3.628":{"name":"electron-to-chromium","version":"1.3.628","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.573.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"229e99690fb0e96412e18a30eb11811528c0fb63","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.628","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"be5a14ddf3a455de876274c84de0926439a287a7","size":10123,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.628.tgz","integrity":"sha512-fmhO4YGo/kapy+xL9Eq/cZwDASaTHZu3psIFYo4yc+RY1LzbZr84xjKlDImDrlrmWhOxsrDi98nX097U/xK/cQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.628_1608145363574_0.3093990050666384"},"_hasShrinkwrap":false,"publish_time":1608145363750,"_cnpm_publish_time":1608145363750,"_cnpmcore_publish_time":"2021-12-15T21:10:13.196Z"},"1.3.627":{"name":"electron-to-chromium","version":"1.3.627","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.572.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"512bf10d7c3ea4f6634b0ff966acdaaae84f9f62","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.627","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4acdbbbbe31eb605fba8380063fd9c8a7e5ca4a0","size":10118,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.627.tgz","integrity":"sha512-O5IVRS4sCxP2+vECAp7uHkaI8V+dKYpuCyBcLn+hqVAOy/RONd8zx+6eH7TuWSTBYs/oUrzBXkNMZuVsQd58kQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.627_1608058961259_0.04390526216135404"},"_hasShrinkwrap":false,"publish_time":1608058961385,"_cnpm_publish_time":1608058961385,"_cnpmcore_publish_time":"2021-12-15T21:10:13.370Z"},"1.3.626":{"name":"electron-to-chromium","version":"1.3.626","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.571.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"642e32bfd798a2467fbc71e646cb1ad943ae5444","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.626","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"48acdf322be07feb2c1330ba05e4bf6327f721a3","size":10106,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.626.tgz","integrity":"sha512-7CanEvJx74EnvjHu1X8gf93KieyxvFLnqOXAH/ddjWD4RrUZYqdg3pykrQ/7t6SLI7DTsp4tfQXEfzeK5t6oAw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.626_1607972563020_0.3925601395842806"},"_hasShrinkwrap":false,"publish_time":1607972563251,"_cnpm_publish_time":1607972563251,"_cnpmcore_publish_time":"2021-12-15T21:10:13.573Z"},"1.3.625":{"name":"electron-to-chromium","version":"1.3.625","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.570.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f289e005f40132a3257b7b921db2073f58be3ddc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.625","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a7bd18da4dc732c180b2e95e0e296c0bf22f3bd6","size":10094,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.625.tgz","integrity":"sha512-CsLk/r0C9dAzVPa9QF74HIXduxaucsaRfqiOYvIv2PRhvyC6EOqc/KbpgToQuDVgPf3sNAFZi3iBu4vpGOwGag=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.625_1607756559911_0.9135165859878172"},"_hasShrinkwrap":false,"publish_time":1607756560119,"_cnpm_publish_time":1607756560119,"_cnpmcore_publish_time":"2021-12-15T21:10:13.813Z"},"1.3.624":{"name":"electron-to-chromium","version":"1.3.624","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.569.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8f8ca587669d44a8d8e60a176760775d41f84212","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.624","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0ed5d2930ab37c4ec977ab58def2cda9c446e1c3","size":10080,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.624.tgz","integrity":"sha512-o7j+CRwsXXj3180EeT6fnOOCyhdeBCmcjQLfe0ObpSH1N0PSylrQ3ibBfAZ39Y28YQ+gKKmU2xSSggdARpjuDg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.624_1607742157693_0.5580869475566821"},"_hasShrinkwrap":false,"publish_time":1607742157961,"_cnpm_publish_time":1607742157961,"_cnpmcore_publish_time":"2021-12-15T21:10:14.017Z"},"1.3.623":{"name":"electron-to-chromium","version":"1.3.623","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.568.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"656fea49463b282ac864300c47ba208f49273a40","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.623","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"b61ba1d94b27031554ea2768bb9b823501a918a0","size":10047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.623.tgz","integrity":"sha512-CgbWTyPmJ4f9pqtqR+HPL3O0ay6BRhnpFD52TqBB2K8kTAcmAar2e93Vo1q651E4vnCHuTDuZDdbj0sTMP2QQw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.623_1607713361687_0.653578853375443"},"_hasShrinkwrap":false,"publish_time":1607713361969,"_cnpm_publish_time":1607713361969,"_cnpmcore_publish_time":"2021-12-15T21:10:14.215Z"},"1.3.622":{"name":"electron-to-chromium","version":"1.3.622","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.567.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"838a68f37178dfb1f8260791572a2b808d9f6502","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.622","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9726bd2e67a5462154750ce9701ca6af07d07877","size":10039,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.622.tgz","integrity":"sha512-AJT0Fm1W0uZlMVVkkJrcCVvczDuF8tPm3bwzQf5WO8AaASB2hwTRP7B8pU5rqjireH+ib6am8+hH5/QkXzzYKw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.622_1607626960672_0.811680709757586"},"_hasShrinkwrap":false,"publish_time":1607626960855,"_cnpm_publish_time":1607626960855,"_cnpmcore_publish_time":"2021-12-15T21:10:14.419Z"},"1.3.621":{"name":"electron-to-chromium","version":"1.3.621","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.566.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"a9a82b214f628f811fc89e040157f1693dc11584","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.621","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0bbe2100ef0b28f88d0b1101fbdf433312f69be0","size":10030,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.621.tgz","integrity":"sha512-FeIuBzArONbAmKmZIsZIFGu/Gc9AVGlVeVbhCq+G2YIl6QkT0TDn2HKN/FMf1btXEB9kEmIuQf3/lBTVAbmFOg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.621_1607540560408_0.6374278538376985"},"_hasShrinkwrap":false,"publish_time":1607540560707,"_cnpm_publish_time":1607540560707,"_cnpmcore_publish_time":"2021-12-15T21:10:14.652Z"},"1.3.620":{"name":"electron-to-chromium","version":"1.3.620","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.565.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"345521ecc33caca3c17775af4acc0f7b51ad70ad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.620","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"c6f36a7e398acc9d7d12743a6f58d536fbc58700","size":10024,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.620.tgz","integrity":"sha512-YbgWXUR2Mu+Fp6rm3GZ5YJdNo8SgZKLUTNSl2PNvdOcM8OIz07jRJnRkIaV9vdszFv9UUuGChh19w9qSuoLJgw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.620_1607454159935_0.2933319212043426"},"_hasShrinkwrap":false,"publish_time":1607454160168,"_cnpm_publish_time":1607454160168,"_cnpmcore_publish_time":"2021-12-15T21:10:14.883Z"},"1.3.619":{"name":"electron-to-chromium","version":"1.3.619","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.564.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b20a2da5ef25a3e0a1fcf003c2d8c9241396f0ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.619","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4dc529ae802f5c9c31e7eea830144340539b62b4","size":10016,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.619.tgz","integrity":"sha512-WFGatwtk7Fw0QcKCZzfGD72hvbcXV8kLY8aFuj0Ip0QRnOtyLYMsc+wXbSjb2w4lk1gcAeNU1/lQ20A+tvuypQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.619_1607410959381_0.33310874742622043"},"_hasShrinkwrap":false,"publish_time":1607410959518,"_cnpm_publish_time":1607410959518,"_cnpmcore_publish_time":"2021-12-15T21:10:15.494Z"},"1.3.618":{"name":"electron-to-chromium","version":"1.3.618","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.563.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6da5afbf9e875651c6553abeaba467481dd233b0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.618","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"33b65cc7cc8d7ce2b438a36afb50efb9bfa99d3a","size":10006,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.618.tgz","integrity":"sha512-D1U1Ij3stBQIIJObhg4zdE0X9znJsztNYzvoEehzuEKSgwP2xeOau+TLOP1Gp0wTf/2ffAYn0ntZwNAGsLCIOA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.618_1607396556196_0.9424368223803576"},"_hasShrinkwrap":false,"publish_time":1607396556362,"_cnpm_publish_time":1607396556362,"_cnpmcore_publish_time":"2021-12-15T21:10:15.717Z"},"1.3.617":{"name":"electron-to-chromium","version":"1.3.617","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.562.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"03f2e3052b4996c96d4f03dfc6bc159b30994877","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.617","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4192fa4db846c6ad51fffe3a06e71727e9699a74","size":10006,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.617.tgz","integrity":"sha512-yHXyI0fHnU0oLxdu21otLYpW3qwkbo8EBTpqeS9w14fwNjFy65SG6unrS3Gg+wX1JKWlAFCcNt13fG0nsCo/1A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.617_1607367761643_0.726505076666986"},"_hasShrinkwrap":false,"publish_time":1607367761954,"_cnpm_publish_time":1607367761954,"_cnpmcore_publish_time":"2021-12-15T21:10:16.347Z"},"1.3.616":{"name":"electron-to-chromium","version":"1.3.616","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.561.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"afa3b5c2bf3b7db64a93c81d5ae90f502fed6f50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.616","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"de63d1c79bb8eb61168774df0c11c9e1af69f9e8","size":9998,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.616.tgz","integrity":"sha512-CI8L38UN2BEnqXw3/oRIQTmde0LiSeqWSRlPA42ZTYgJQ8fYenzAM2Z3ni+jtILTcrs5aiXZCGJ96Pm+3/yGyQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.616_1607108557835_0.3977732419279578"},"_hasShrinkwrap":false,"publish_time":1607108558155,"_cnpm_publish_time":1607108558155,"_cnpmcore_publish_time":"2021-12-15T21:10:16.526Z"},"1.3.615":{"name":"electron-to-chromium","version":"1.3.615","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.560.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"187c293360f6a9f9ff3dc51d5a6dbc57d51e24b9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.615","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"50f523be4a04449410e9f3a694490814e602cd54","size":9990,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.615.tgz","integrity":"sha512-fNYTQXoUhNc6RmHDlGN4dgcLURSBIqQCN7ls6MuQ741+NJyLNRz8DxAC+pZpOKfRs6cfY0lv2kWdy8Oxf9j4+A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.615_1607022162666_0.6891115544564992"},"_hasShrinkwrap":false,"publish_time":1607022162808,"_cnpm_publish_time":1607022162808,"_cnpmcore_publish_time":"2021-12-15T21:10:16.710Z"},"1.3.614":{"name":"electron-to-chromium","version":"1.3.614","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.559.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"93d9bdb22b26b2900193bfcddba224590d9a6063","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.614","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"ff359e8d2249e2ce859a4c2bc34c22bd2e2eb0a2","size":9976,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.614.tgz","integrity":"sha512-JMDl46mg4G+n6q/hAJkwy9eMTj5FJjsE+8f/irAGRMLM4yeRVbMuRrdZrbbGGOrGVcZc4vJPjUpEUWNb/fA6hg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.614_1606935759373_0.43949062255356797"},"_hasShrinkwrap":false,"publish_time":1606935759574,"_cnpm_publish_time":1606935759574,"_cnpmcore_publish_time":"2021-12-15T21:10:16.914Z"},"1.3.613":{"name":"electron-to-chromium","version":"1.3.613","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.558.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"13196ab0eb3d8b1017804c54f55dbf77fffa70fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.613","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"5ad7ec1e19d28c81edb6d61b9d4990d1c9716182","size":9971,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.613.tgz","integrity":"sha512-c3gkahddiUalk7HLhTC7PsKzPZmovYFtgh+g3rZJ+dGokk4n4dzEoOBnoV8VU8ptvnGJMhrjM/lyXKSltqf2hQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.613_1606878157655_0.8633425099951997"},"_hasShrinkwrap":false,"publish_time":1606878157879,"_cnpm_publish_time":1606878157879,"_cnpmcore_publish_time":"2021-12-15T21:10:17.481Z"},"1.3.612":{"name":"electron-to-chromium","version":"1.3.612","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.557.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f7b3e0e629a2d662ba3a3f47a5d30516b85292e1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.612","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4a49864b9de694403a69d5a9f439cbceca543e48","size":9947,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.612.tgz","integrity":"sha512-CdrdX1B6mQqxfw+51MPWB5qA6TKWjza9f5voBtUlRfEZEwZiFaxJLrhFI8zHE9SBAuGt4h84rQU6Ho9Bauo1LA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.612_1606791755623_0.4748668966266114"},"_hasShrinkwrap":false,"publish_time":1606791755796,"_cnpm_publish_time":1606791755796,"_cnpmcore_publish_time":"2021-12-15T21:10:17.715Z"},"1.3.611":{"name":"electron-to-chromium","version":"1.3.611","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.556.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6aa59c905139f164c57dcf88e18f55fc3400045d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.611","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"43a25c07ae05f9555335908abc46c89898f5afb7","size":9950,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.611.tgz","integrity":"sha512-YhqTzCXtEO2h0foGLGS60ortd6yY/yUQhqDEp1VWG3DIyHvckFFyaRwR41M0/M3m7Yb8Exqh+nzyb2TuxaoMTw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.611_1606762959341_0.6349038292716935"},"_hasShrinkwrap":false,"publish_time":1606762959538,"_cnpm_publish_time":1606762959538,"_cnpmcore_publish_time":"2021-12-15T21:10:18.037Z"},"1.3.610":{"name":"electron-to-chromium","version":"1.3.610","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.555.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"56415f5dc900e7b63d9cb318f4c911f09d147229","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.610","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"1254eb394acd220a836ea1f203f8cded4e487052","size":9947,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.610.tgz","integrity":"sha512-eFDC+yVQpEhtlapk4CYDPfV9ajF9cEof5TBcO49L1ETO+aYogrKWDmYpZyxBScMNe8Bo/gJamH4amQ4yyvXg4g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.610_1606503758906_0.5953527292182799"},"_hasShrinkwrap":false,"publish_time":1606503759021,"_cnpm_publish_time":1606503759021,"_cnpmcore_publish_time":"2021-12-15T21:10:18.524Z"},"1.3.609":{"name":"electron-to-chromium","version":"1.3.609","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.554.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"bca87de14601a97be2a58918e547ab83fcfa972f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.609","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"938735afa300ebf4eaec7e3fff96b7f3d74ac5f0","size":9941,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.609.tgz","integrity":"sha512-kcmRWmlHsUKKLfsSKSf7VqeTX4takM5ndjVTM3et3qpDCceITYI1DixvIfSDIngALoaTnpoMXD3SXSMpzHkYKA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.609_1606446157300_0.8571465994039988"},"_hasShrinkwrap":false,"publish_time":1606446157505,"_cnpm_publish_time":1606446157505,"_cnpmcore_publish_time":"2021-12-15T21:10:18.762Z"},"1.3.608":{"name":"electron-to-chromium","version":"1.3.608","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.553.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"999b34ef1fe9eb37de71b6a33860c5e26c1cb938","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.608","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e1f962beeaa008698fb89b7e5387535251610eb4","size":9932,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.608.tgz","integrity":"sha512-dZsqCe7WgOcFse1QxIrm3eR+ebF13f0HfzM5QW9WtP1XVsQVrl/6R3DjexfVdupfwaS6znEDcP0NTBlJii7sOA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.608_1606417357756_0.12796720726848543"},"_hasShrinkwrap":false,"publish_time":1606417357931,"_cnpm_publish_time":1606417357931,"_cnpmcore_publish_time":"2021-12-15T21:10:19.017Z"},"1.3.607":{"name":"electron-to-chromium","version":"1.3.607","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.552.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d493ae9a7efc59c557f3e65f51a78fe5ede27108","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.607","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"1bff13f1cf89f2fee0d244b8c64a7138f80f3a3b","size":9928,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.607.tgz","integrity":"sha512-h2SYNaBnlplGS0YyXl8oJWokfcNxVjJANQfMCsQefG6OSuAuNIeW+A8yGT/ci+xRoBb3k2zq1FrOvkgoKBol8g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.607_1606244559405_0.667123777585201"},"_hasShrinkwrap":false,"publish_time":1606244559704,"_cnpm_publish_time":1606244559704,"_cnpmcore_publish_time":"2021-12-15T21:10:19.310Z"},"1.3.606":{"name":"electron-to-chromium","version":"1.3.606","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.551.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5ca2aee998a01ba547e2f5a75fdefd88ba528427","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.606","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"6ef2655d9a7c1b447dfdd6344657d00461a65e26","size":9920,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.606.tgz","integrity":"sha512-+/2yPHwtNf6NWKpaYt0KoqdSZ6Qddt6nDfH/pnhcrHq9hSb23e5LFy06Mlf0vF2ykXvj7avJ597psqcbKnG5YQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.606_1606201358854_0.08066992825269637"},"_hasShrinkwrap":false,"publish_time":1606201359101,"_cnpm_publish_time":1606201359101,"_cnpmcore_publish_time":"2021-12-15T21:10:19.898Z"},"1.3.605":{"name":"electron-to-chromium","version":"1.3.605","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.550.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d78554915e3e000f9e8a950c134de4e255983c79","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.605","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bcc0b72f252ee2c51792b1f2b8707957fc707db5","size":9916,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.605.tgz","integrity":"sha512-PDZlEh6qelLaFLXYuIvB0aeqNoq7JS7i7aSHFds/ZnHosxyrTZftD8o84K9OwZWR+tnQFwoL76Yd5ROAhIWojQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.605_1606186956042_0.8855741539454649"},"_hasShrinkwrap":false,"publish_time":1606186956244,"_cnpm_publish_time":1606186956244,"_cnpmcore_publish_time":"2021-12-15T21:10:20.136Z"},"1.3.604":{"name":"electron-to-chromium","version":"1.3.604","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.549.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8ca4b8a41c5185342a10331c7858bf9653e21d94","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.604","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"285da30e38a71e2b9d28ce3a792ec60235c63b7c","size":9906,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.604.tgz","integrity":"sha512-Mk5ODhvz+ZaQpVFXbu51wGW94P3CnkJIDkEQGxXMl6Ix6R0PG4IFWz83WbqFEZjN1UksoTsmmzKY5SmUrEvNJQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.604_1606158159714_0.17271921616592567"},"_hasShrinkwrap":false,"publish_time":1606158159911,"_cnpm_publish_time":1606158159911,"_cnpmcore_publish_time":"2021-12-15T21:10:20.373Z"},"1.3.603":{"name":"electron-to-chromium","version":"1.3.603","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.548.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"49b252dd3593a71d97741e7055b653fd914b466b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.603","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"1b71bec27fb940eccd79245f6824c63d5f7e8abf","size":9896,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.603.tgz","integrity":"sha512-J8OHxOeJkoSLgBXfV9BHgKccgfLMHh+CoeRo6wJsi6m0k3otaxS/5vrHpMNSEYY4MISwewqanPOuhAtuE8riQQ=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.603_1605841357649_0.5467097348189855"},"_hasShrinkwrap":false,"publish_time":1605841357852,"_cnpm_publish_time":1605841357852,"_cnpmcore_publish_time":"2021-12-15T21:10:20.608Z"},"1.3.602":{"name":"electron-to-chromium","version":"1.3.602","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.547.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"891786aba62cc8b8f91040fa84145e22a5620b0b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.602","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a176db985a9826c9a3fbf614d054fc42c5c9f478","size":9887,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.602.tgz","integrity":"sha512-+JbC10U8vpKAqAtrEqORdzaWewRgEj5DY+QQNyP/dxDTshPqqgpjrvt6smewKS/5F3vT5prYgg7/VTxb5FROjw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.602_1605812558641_0.8692677959738375"},"_hasShrinkwrap":false,"publish_time":1605812558810,"_cnpm_publish_time":1605812558810,"_cnpmcore_publish_time":"2021-12-15T21:10:20.832Z"},"1.3.601":{"name":"electron-to-chromium","version":"1.3.601","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.546.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"2aa3d6cec34ed0982604bb61e1eeaa335821df50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.601","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"881824eaef0b2f97c89e1abb5835fdd224997d34","size":9871,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.601.tgz","integrity":"sha512-ctRyXD9y0mZu8pgeNwBUhLP3Guyr5YuqkfLKYmpTwYx7o9JtCEJme9JVX4xBXPr5ZNvr/iBXUvHLFEVJQThATg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.601_1605769359029_0.004673969053572424"},"_hasShrinkwrap":false,"publish_time":1605769359265,"_cnpm_publish_time":1605769359265,"_cnpmcore_publish_time":"2021-12-15T21:10:21.102Z"},"1.3.600":{"name":"electron-to-chromium","version":"1.3.600","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.545.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5fef1c6436a180257da136e7e8ccb0045eb45fb0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.600","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"eb6aa7233ca1fbf0fa9b5943c0f1061b54a433bf","size":9846,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.600.tgz","integrity":"sha512-QmdzrDk4eOoqkhld+XflF6znZHMFN120EfLdXgFP2TzvQuD6EABwKIjOIopx5hvVOIb1ELUPkEgs/rXo0iiXbw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.600_1605754955844_0.8904414905099656"},"_hasShrinkwrap":false,"publish_time":1605754956006,"_cnpm_publish_time":1605754956006,"_cnpmcore_publish_time":"2021-12-15T21:10:21.341Z"},"1.3.599":{"name":"electron-to-chromium","version":"1.3.599","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.544.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"52dbb6394f7c0abd26c724428931ee6481314b6e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.599","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"3fbb004733f3c0dcf59934c8644ddf800b94443a","size":9829,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.599.tgz","integrity":"sha512-u6VGpFsIzSCNrWJb1I72SUypz3EGoBaiEgygoMkd0IOcGR3WF3je5VTx9OIRI9Qd8UOMHinLImyJFkYHTq6nsg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.599_1605726158783_0.023248523269390198"},"_hasShrinkwrap":false,"publish_time":1605726158933,"_cnpm_publish_time":1605726158933,"_cnpmcore_publish_time":"2021-12-15T21:10:21.561Z"},"1.3.598":{"name":"electron-to-chromium","version":"1.3.598","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.543.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"1afd031a426d360cc130f447c4abccde44464e23","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.598","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"8f757018902ab6190323a8c5f6124d854893a35b","size":9828,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.598.tgz","integrity":"sha512-G5Ztk23/ubLYVPxPXnB1uu105uzIPd4xB/D8ld8x1GaSC9+vU9NZL16nYZya8H77/7CCKKN7dArzJL3pBs8N7A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.598_1605639789718_0.9168984041186334"},"_hasShrinkwrap":false,"publish_time":1605639789906,"_cnpm_publish_time":1605639789906,"_cnpmcore_publish_time":"2021-12-15T21:10:21.890Z"},"1.3.597":{"name":"electron-to-chromium","version":"1.3.597","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.541.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f19f8472411d508a9e840e8e8d054c30c93c7834","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.597","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0d30fd4c0f5437149c28a6044c4e119357ae56aa","size":9811,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.597.tgz","integrity":"sha512-VJI21MucKaqyFw0oe3j9BIg+nDF4MHzUZAmUwZzrxho+s8zPCD13Fds07Rgu+MTtAadO4tYTKFdAUksKYUyIJw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.597_1605582156019_0.0259469321766701"},"_hasShrinkwrap":false,"publish_time":1605582156195,"_cnpm_publish_time":1605582156195,"_cnpmcore_publish_time":"2021-12-15T21:10:22.092Z"},"1.3.596":{"name":"electron-to-chromium","version":"1.3.596","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.540.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"8b7209b5b5e0a9690c004f019408d2806842c964","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.596","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"c7ed98512c7ff36ddcbfed9e54e6355335c35257","size":9793,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.596.tgz","integrity":"sha512-nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.596_1605337358270_0.8246168769792592"},"_hasShrinkwrap":false,"publish_time":1605337358432,"_cnpm_publish_time":1605337358432,"_cnpmcore_publish_time":"2021-12-15T21:10:22.306Z"},"1.3.595":{"name":"electron-to-chromium","version":"1.3.595","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.539.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0eb48824c26e1b6ced2a26c790316a468b9c63e8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.595","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e8a9e7c6919963419f892ea981d7b3438ccb834d","size":9786,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.595.tgz","integrity":"sha512-JpaBIhdBkF9FLG7x06ONfe0f5bxPrxRcq0X+Sc8vsCt+OPWIzxOD+qM71NEHLGbDfN9Q6hbtHRv4/dnvcOxo6g=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.595_1605236555143_0.9317181691724592"},"_hasShrinkwrap":false,"publish_time":1605236555621,"_cnpm_publish_time":1605236555621,"_cnpmcore_publish_time":"2021-12-15T21:10:22.544Z"},"1.3.594":{"name":"electron-to-chromium","version":"1.3.594","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.538.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"62ede35d07476f53a9bfa9ced05b4ecbbcf648d9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.594","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e945aaa38f53d7d97ecc983cc85aa3335b0d3893","size":9771,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.594.tgz","integrity":"sha512-mEax1P0CcoZJtXQU7OA0dO5nHiAQWw8gRGWKhnUyPA9bJW0B/JGiaQB+vtK66Ovm6U9qPxe2iXbO1L+f4jJAiw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.594_1605207759275_0.8755097878210814"},"_hasShrinkwrap":false,"publish_time":1605207759500,"_cnpm_publish_time":1605207759500,"_cnpmcore_publish_time":"2021-12-15T21:10:22.741Z"},"1.3.593":{"name":"electron-to-chromium","version":"1.3.593","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.537.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"258a7a50bbaf7fa8866c981b72c9602012d9c3d4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.593","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"947ccf6dc8e013e2b053d2463ecd1043c164fcef","size":9767,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.593.tgz","integrity":"sha512-GvO7G1ZxvffnMvPCr4A7+iQPVuvpyqMrx2VWSERAjG+pHK6tmO9XqYdBfMIq9corRyi4bNImSDEiDvIoDb8HrA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.593_1605121356767_0.6998832810512321"},"_hasShrinkwrap":false,"publish_time":1605121357008,"_cnpm_publish_time":1605121357008,"_cnpmcore_publish_time":"2021-12-15T21:10:22.927Z"},"1.3.592":{"name":"electron-to-chromium","version":"1.3.592","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.536.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4836838bd5659023a00ab59d1b217fdc96de4c38","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.592","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4621521b223bf6e5469373528321e185d3c24670","size":9758,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.592.tgz","integrity":"sha512-kGNowksvqQiPb1pUSQKpd8JFoGPLxYOwduNRCqCxGh/2Q1qE2JdmwouCW41lUzDxOb/2RIV4lR0tVIfboWlO9A=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.592_1604977357440_0.7886997207128523"},"_hasShrinkwrap":false,"publish_time":1604977357606,"_cnpm_publish_time":1604977357606,"_cnpmcore_publish_time":"2021-12-15T21:10:23.131Z"},"1.3.591":{"name":"electron-to-chromium","version":"1.3.591","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.535.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"4a0203e4ccb9499e5489f10cbe69fd3ba72a2328","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.591","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a18892bf1acb93f7b6e4da402705d564bc235017","size":9747,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.591.tgz","integrity":"sha512-ol/0WzjL4NS4Kqy9VD6xXQON91xIihDT36sYCew/G/bnd1v0/4D+kahp26JauQhgFUjrdva3kRSo7URcUmQ+qw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.591_1604718154920_0.7822835553378615"},"_hasShrinkwrap":false,"publish_time":1604718155092,"_cnpm_publish_time":1604718155092,"_cnpmcore_publish_time":"2021-12-15T21:10:23.356Z"},"1.3.590":{"name":"electron-to-chromium","version":"1.3.590","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.534.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"b0ac22a29292aef1a6817d3c7a7a1e5e660fcbbb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.590","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"3b5c93b58cfa06a85e082df6715f362e17bf5315","size":9733,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.590.tgz","integrity":"sha512-76/kAJffe8VUXvEVu677KZuQ92rD1HHn1WO7vjn5atJN/2n71jPgLJ2qs7jKg/00i1xmdR91ZNTg1VIQAxVOIw=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.590_1604689358712_0.32298810534718747"},"_hasShrinkwrap":false,"publish_time":1604689358812,"_cnpm_publish_time":1604689358812,"_cnpmcore_publish_time":"2021-12-15T21:10:23.552Z"},"1.3.589":{"name":"electron-to-chromium","version":"1.3.589","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.532.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"fd3a0ced3f99b3953ea69f95a50a863e6f23befd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.589","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bd26183ed8697dde6ac19acbc16a3bf33b1f8220","size":9725,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.589.tgz","integrity":"sha512-rQItBTFnol20HaaLm26UgSUduX7iGerwW7pEYX17MB1tI6LzFajiLV7iZ7LVcUcsN/7HrZUoCLrBauChy/IqEg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.589_1604602957184_0.5798821818503332"},"_hasShrinkwrap":false,"publish_time":1604602957504,"_cnpm_publish_time":1604602957504,"_cnpmcore_publish_time":"2021-12-15T21:10:23.780Z"},"1.3.588":{"name":"electron-to-chromium","version":"1.3.588","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.531.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"64d7cbb1d0858465dbcfbd23da68423833ddfe95","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.588","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"c6515571737bfb42678115a5eaa818384593a9a5","size":9725,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.588.tgz","integrity":"sha512-0zr+ZfytnLeJZxGgmEpPTcItu5Mm4A5zHPZXLfHcGp0mdsk95rmD7ePNewYtK1yIdLbk8Z1U2oTRRfOtR4gbYg=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.588_1604516557377_0.8286147573320086"},"_hasShrinkwrap":false,"publish_time":1604516557620,"_cnpm_publish_time":1604516557620,"_cnpmcore_publish_time":"2021-12-15T21:10:23.981Z"},"1.3.587":{"name":"electron-to-chromium","version":"1.3.587","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.530.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"236ffc6a3af1fe2d711f057f7e32fb54873772c8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.587","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"de570df7320eb259c0511f284c2d6008094edbf7","size":9719,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.587.tgz","integrity":"sha512-8XFNxzNj0R8HpTQslWAw6UWpGSuOKSP3srhyFHVbGUGb8vTHckZGCyWi+iQlaXJx5DNeTQTQLd6xN11WSckkmA=="},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.587_1604458955238_0.5456927309190716"},"_hasShrinkwrap":false,"publish_time":1604458955407,"_cnpm_publish_time":1604458955407,"_cnpmcore_publish_time":"2021-12-15T21:10:24.239Z"},"1.3.586":{"name":"electron-to-chromium","version":"1.3.586","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.529.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"22092a06586bd634a8061fe2fa7c26d2de4a86c8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.586","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"1484f59b2f820f5f3278f0c6ead71d05b19a1311","size":9710,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.586.tgz","integrity":"sha512-or8FCbQCRlPZHkOoqBULOI9hzTiStVIQqDLgAPt8pzY+swTrW+89vsqd24Zn+Iv4guAJLxRBD6OR5AmbpabGDA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.586_1604372558402_0.7260357229253722"},"_hasShrinkwrap":false,"publish_time":1604372558532,"_cnpm_publish_time":1604372558532,"_cnpmcore_publish_time":"2021-12-15T21:10:24.467Z"},"1.3.585":{"name":"electron-to-chromium","version":"1.3.585","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.527.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"cfedde21d741a367c8a539758e1d423cc5ab2f27","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.585","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"71cdb722c73488b9475ad1c572cf43a763ef9081","size":9694,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.585.tgz","integrity":"sha512-xoeqjMQhgHDZM7FiglJAb2aeOxHZWFruUc3MbAGTgE7GB8rr5fTn1Sdh5THGuQtndU3GuXlu91ZKqRivxoCZ/A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.585_1604088420636_0.15074412304775708"},"_hasShrinkwrap":false,"publish_time":1604088420818,"_cnpm_publish_time":1604088420818,"_cnpmcore_publish_time":"2021-12-15T21:10:24.650Z"},"1.3.584":{"name":"electron-to-chromium","version":"1.3.584","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.524.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"0a91a908d49b61fa8ccf66d7dd240445b5025d21","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.584","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"506cf7ba5895aafa8241876ab028654b61fd9ceb","size":9670,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.584.tgz","integrity":"sha512-NB3DzrTzJFhWkUp+nl2KtUtoFzrfGXTir2S+BU4tXGyXH9vlluPuFpE3pTKeH7+PY460tHLjKzh6K2+TWwW+Ww=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.584_1603798426122_0.5088333788908173"},"_hasShrinkwrap":false,"publish_time":1603798426289,"_cnpm_publish_time":1603798426289,"_cnpmcore_publish_time":"2021-12-15T21:10:24.868Z"},"1.3.583":{"name":"electron-to-chromium","version":"1.3.583","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.521.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"5c4e50ead879883aab0a60648b4e09e062ff657e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.583","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"47a9fde74740b1205dba96db2e433132964ba3ee","size":9607,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.583.tgz","integrity":"sha512-L9BwLwJohjZW9mQESI79HRzhicPk1DFgM+8hOCfGgGCFEcA3Otpv7QK6SGtYoZvfQfE3wKLh0Hd5ptqUFv3gvQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.583_1603396955194_0.3564490611657145"},"_hasShrinkwrap":false,"publish_time":1603396955366,"_cnpm_publish_time":1603396955366,"_cnpmcore_publish_time":"2021-12-15T21:10:25.069Z"},"1.3.582":{"name":"electron-to-chromium","version":"1.3.582","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.520.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d08c5959955d3aaae33efe7642b8af0bfcdd7d7b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.582","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"1adfac5affce84d85b3d7b3dfbc4ade293a6ffc4","size":9546,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.582.tgz","integrity":"sha512-0nCJ7cSqnkMC+kUuPs0YgklFHraWGl/xHqtZWWtOeVtyi+YqkoAOMGuZQad43DscXCQI/yizcTa3u6B5r+BLww=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.582_1602820973144_0.02953832215311558"},"_hasShrinkwrap":false,"publish_time":1602820973306,"_cnpm_publish_time":1602820973306,"_cnpmcore_publish_time":"2021-12-15T21:10:25.253Z"},"1.3.581":{"name":"electron-to-chromium","version":"1.3.581","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.519.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"21e21a8d9eacb382a5eba94cf15b59ccb9b346c7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.581","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"7f796fe92cdc18f5013769dc6f45f4536315a183","size":9546,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.581.tgz","integrity":"sha512-ALORbI23YkYJoVJWusSdmTq8vXH3TLFzniILE47uZkZOim135ZhoTCM7QlIuvmK78As5kLdANfy7kDIQvJ+iPw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.581_1602792157454_0.13106033579330378"},"_hasShrinkwrap":false,"publish_time":1602792157716,"_cnpm_publish_time":1602792157716,"_cnpmcore_publish_time":"2021-12-15T21:10:25.487Z"},"1.3.580":{"name":"electron-to-chromium","version":"1.3.580","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.518.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"6d9d565a159e65565567ac605766b93efe86533c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.580","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"eb27873cfa012c43c53c9e9129038b8fd7cb964f","size":9543,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.580.tgz","integrity":"sha512-5flHTbRpptO6h3lQUG4zdSAxryAS3PrZOkLpLS0DL5/y2LBf+l9HJ8X6UBorNs1QRBrMR7u/QvkdK+GlekW1kQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.580_1602734547213_0.7918593191269556"},"_hasShrinkwrap":false,"publish_time":1602734547376,"_cnpm_publish_time":1602734547376,"_cnpmcore_publish_time":"2021-12-15T21:10:25.715Z"},"1.3.579":{"name":"electron-to-chromium","version":"1.3.579","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.517.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"f86a6a9e64e9ce05fda9b968ce1d4d8b3c46a118","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.579","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"58bf17499de6edf697e1442017d8569bce0d301a","size":9542,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.579.tgz","integrity":"sha512-9HaGm4UDxCtcmIqWWdv79pGgpRZWTqr+zg6kxp0MelSHfe1PNjrI8HXy1HgTSy4p0iQETGt8/ElqKFLW008BSA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.579_1602648149820_0.25225986647195153"},"_hasShrinkwrap":false,"publish_time":1602648149964,"_cnpm_publish_time":1602648149964,"_cnpmcore_publish_time":"2021-12-15T21:10:25.891Z"},"1.3.578":{"name":"electron-to-chromium","version":"1.3.578","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.516.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"d31a01dd516771ef47e93a7ba94883306071e4c3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.578","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e6671936f4571a874eb26e2e833aa0b2c0b776e0","size":9543,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz","integrity":"sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.578_1602043353998_0.6275256377236014"},"_hasShrinkwrap":false,"publish_time":1602043354168,"_cnpm_publish_time":1602043354168,"_cnpmcore_publish_time":"2021-12-15T21:10:26.080Z"},"1.3.577":{"name":"electron-to-chromium","version":"1.3.577","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.516.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"17d13de1cab7d8be99f5d95bd5d211d1ad939bae","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.577","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9885f3f72c6e3367010b461ff6f2d9624a929720","size":9526,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.577.tgz","integrity":"sha512-dSb64JQSFif/pD8mpVAgSFkbVi6YHbK6JeEziwNNmXlr/Ne2rZtseFK5SM7JoWSLf6gP0gVvRGi4/2ZRhSX/rA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.577_1601956976388_0.033657940422188615"},"_hasShrinkwrap":false,"publish_time":1601956976546,"_cnpm_publish_time":1601956976546,"_cnpmcore_publish_time":"2021-12-15T21:10:26.332Z"},"1.3.576":{"name":"electron-to-chromium","version":"1.3.576","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.514.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.8.4"},"gitHead":"82b97896b1c30eaa52a107982041259bb851923c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.576","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"2e70234484e03d7c7e90310d7d79fd3775379c34","size":9529,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.576.tgz","integrity":"sha512-uSEI0XZ//5ic+0NdOqlxp0liCD44ck20OAGyLMSymIWTEAtHKVJi6JM18acOnRgUgX7Q65QqnI+sNncNvIy8ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.576_1601380952377_0.9751561666042949"},"_hasShrinkwrap":false,"publish_time":1601380952560,"_cnpm_publish_time":1601380952560,"_cnpmcore_publish_time":"2021-12-15T21:10:26.554Z"},"1.3.575":{"name":"electron-to-chromium","version":"1.3.575","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.514.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"abb2b6e13a302611732fb25acfdfb978b86ba969","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.575","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"57065cfad7b977a817dba47b28e7eb4dbce3fc37","size":9515,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.575.tgz","integrity":"sha512-031VrjcilnE8bXivDGhEeuGjMZrjTAeyAKm3XWPY9SvGYE6Hn8003gCqoNszFu6lh1v0gDx5hrM0VE1cPSMUkQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.575_1601352152957_0.10761253873773913"},"_hasShrinkwrap":false,"publish_time":1601352153078,"_cnpm_publish_time":1601352153078,"_cnpmcore_publish_time":"2021-12-15T21:10:26.801Z"},"1.3.574":{"name":"electron-to-chromium","version":"1.3.574","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.513.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bc26d5df408bbdd4ef19030168b41cd4a90013d7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.574","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bdd87f62fe70165e5c862a0acf0cee9889e23aa3","size":9513,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.574.tgz","integrity":"sha512-kF8Bfe1h8X1pPwlw6oRoIXj0DevowviP6fl0wcljm+nZjy/7+Fos4THo1N/7dVGEJlyEqK9C8qNnbheH+Eazfw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.574_1601294551054_0.5252892567088365"},"_hasShrinkwrap":false,"publish_time":1601294551210,"_cnpm_publish_time":1601294551210,"_cnpmcore_publish_time":"2021-12-15T21:10:27.028Z"},"1.3.573":{"name":"electron-to-chromium","version":"1.3.573","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.513.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"62d8e137a88947ec425cc14522c7dd13afb1304b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.573","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"6a21e13ee894eb441677333d5fe9fa3a449689a1","size":9512,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.573.tgz","integrity":"sha512-oypaNmexr8w0m2GX67fGLQ0Xgsd7uXz7GcwaHZ9eW3ZdQ8uA2+V/wXmLdMTk3gcacbqQGAN7CXWG3fOkfKYftw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.573_1601078550017_0.14378446673355483"},"_hasShrinkwrap":false,"publish_time":1601078550222,"_cnpm_publish_time":1601078550222,"_cnpmcore_publish_time":"2021-12-15T21:10:27.274Z"},"1.3.572":{"name":"electron-to-chromium","version":"1.3.572","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.513.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2d3cc699f2730956fa39d216728569ec1eaf8307","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.572","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"62d87dfe32ca1f6b9a0f76917d24f66e94e19c01","size":9491,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.572.tgz","integrity":"sha512-TKqdEukCCl7JC20SwEoWTbtnGt4YjfHWAv4tcNky0a9qGo0WdM+Lrd60tps+nkaJCmktKBJjr99fLtEBU1ipWQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.572_1601006555679_0.5675902758064553"},"_hasShrinkwrap":false,"publish_time":1601006556039,"_cnpm_publish_time":1601006556039,"_cnpmcore_publish_time":"2021-12-15T21:10:27.475Z"},"1.3.571":{"name":"electron-to-chromium","version":"1.3.571","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.512.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"35ecd2676c281f3c48850be6313bf745906897fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.571","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e57977f1569f8326ae2a7905e26f3943536ba28f","size":9491,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.571.tgz","integrity":"sha512-UYEQ2Gtc50kqmyOmOVtj6Oqi38lm5yRJY3pLuWt6UIot0No1L09uu6Ja6/1XKwmz/p0eJFZTUZi+khd1PV1hHA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.571_1600833749825_0.44439259185730484"},"_hasShrinkwrap":false,"publish_time":1600833749941,"_cnpm_publish_time":1600833749941,"_cnpmcore_publish_time":"2021-12-15T21:10:27.705Z"},"1.3.570":{"name":"electron-to-chromium","version":"1.3.570","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.511.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8ea4dccce0b64b9270364cbe7300756d0d92e583","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.570","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"3f5141cc39b4e3892a276b4889980dabf1d29c7f","size":9507,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.570.tgz","integrity":"sha512-Y6OCoVQgFQBP5py6A/06+yWxUZHDlNr/gNDGatjH8AZqXl8X0tE4LfjLJsXGz/JmWJz8a6K7bR1k+QzZ+k//fg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.570_1600243358487_0.0625408944267738"},"_hasShrinkwrap":false,"publish_time":1600243358663,"_cnpm_publish_time":1600243358663,"_cnpmcore_publish_time":"2021-12-15T21:10:27.897Z"},"1.3.569":{"name":"electron-to-chromium","version":"1.3.569","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.510.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b08e5ff11c42ec4b535d3325f944f3f0951f2fb3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.569","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"d486ff0ca537a1e52285000214500555c20ce36b","size":9508,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.569.tgz","integrity":"sha512-HViXDebvp9yx3GHjNmMEzfl7RhE1N+r+4iHmRAswpwWTtf/UaYi4QGSfjOhYn5MACiONjh9+XwZzHA6NccAEtQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.569_1600228957456_0.18517973053258685"},"_hasShrinkwrap":false,"publish_time":1600228957783,"_cnpm_publish_time":1600228957783,"_cnpmcore_publish_time":"2021-12-15T21:10:28.107Z"},"1.3.568":{"name":"electron-to-chromium","version":"1.3.568","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.510.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5c386d9305b5820bb8b53e05ebd418a9b58dedb5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.568","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0fa28cd3e5cbd9e8c66f72309eef0646f65a5b66","size":9478,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.568.tgz","integrity":"sha512-j9MlEwgTHVW/lq93Hw8yhzA886oLjDm3Hz7eDkWP2v4fzLVuqOWhpNluziSnmR/tBqgoYldagbLknrdg+B7Tlw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.568_1600142562612_0.48738617223750347"},"_hasShrinkwrap":false,"publish_time":1600142562856,"_cnpm_publish_time":1600142562856,"_cnpmcore_publish_time":"2021-12-15T21:10:28.339Z"},"1.3.567":{"name":"electron-to-chromium","version":"1.3.567","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.509.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"71cd952938befb6aef39f8081d703bc4f125e3dd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.567","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"7a404288952ac990e447a7a86470d460ea953b8f","size":9476,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.567.tgz","integrity":"sha512-1aKkw0Hha1Bw9JA5K5PT5eFXC/TXbkJvUfNSNEciPUMgSIsRJZM1hF2GUEAGZpAbgvd8En21EA+Lv820KOhvqA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.567_1599883355311_0.631038530847637"},"_hasShrinkwrap":false,"publish_time":1599883355478,"_cnpm_publish_time":1599883355478,"_cnpmcore_publish_time":"2021-12-15T21:10:28.589Z"},"1.3.566":{"name":"electron-to-chromium","version":"1.3.566","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.508.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6a1a0d248e3e44dff4eb9f6d7724b223eb493f64","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.566","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e373876bb63e5c9bbcbe1b48cbb2db000f79bf88","size":9475,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.566.tgz","integrity":"sha512-V0fANdGN7waOE0tvCDhjf1vqPRevG3eo0asYm42c4t1qmZSunlnUuWQDxglUi9wDpbKQlGIttMJ+2DYpRwvYRA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.566_1599840147670_0.5256662535591827"},"_hasShrinkwrap":false,"publish_time":1599840148007,"_cnpm_publish_time":1599840148007,"_cnpmcore_publish_time":"2021-12-15T21:10:28.788Z"},"1.3.565":{"name":"electron-to-chromium","version":"1.3.565","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.508.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a67afd000de4082c0e23cdaa4a391ed722d46f52","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.565","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"8511797ab2b66b767e1aef4eb17d636bf01a2c72","size":9455,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.565.tgz","integrity":"sha512-me5dGlHFd8Q7mKhqbWRLIYnKjw4i0fO6hmW0JBxa7tM87fBfNEjWokRnDF7V+Qme/9IYpwhfMn+soWs40tXWqg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.565_1599796980627_0.5164644670649037"},"_hasShrinkwrap":false,"publish_time":1599796980755,"_cnpm_publish_time":1599796980755,"_cnpmcore_publish_time":"2021-12-15T21:10:29.021Z"},"1.3.564":{"name":"electron-to-chromium","version":"1.3.564","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.507.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5495f7c226df45046d5176897d014e64f9ed93ce","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.564","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e9c319ae437b3eb8bbf3e3bae4bead5a21945961","size":9455,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.564.tgz","integrity":"sha512-fNaYN3EtKQWLQsrKXui8mzcryJXuA0LbCLoizeX6oayG2emBaS5MauKjCPAvc29NEY4FpLHIUWiP+Y0Bfrs5dg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.564_1599566543125_0.8355627269617272"},"_hasShrinkwrap":false,"publish_time":1599566543258,"_cnpm_publish_time":1599566543258,"_cnpmcore_publish_time":"2021-12-15T21:10:29.220Z"},"1.3.563":{"name":"electron-to-chromium","version":"1.3.563","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.507.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"98b32d91cdadda99111539104d298e24780b4552","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.563","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9da4e4f0d76c4b221784cc9ca81a8464e8180408","size":9448,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.563.tgz","integrity":"sha512-JkEjRFmuSegdTBCPG+RS1zw9csObHoN4el+X9EfEALO0UT7us8swxspJx7cRsrMkjd8bmmRTAd0xuUhvvb5DLg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.563_1599537748013_0.3501302168020106"},"_hasShrinkwrap":false,"publish_time":1599537748209,"_cnpm_publish_time":1599537748209,"_cnpmcore_publish_time":"2021-12-15T21:10:29.425Z"},"1.3.562":{"name":"electron-to-chromium","version":"1.3.562","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.506.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a4a45db55676780d2069b6a922d2f2e3c83f2384","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.562","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"79c20277ee1c8d0173a22af00e38433b752bc70f","size":9448,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.562.tgz","integrity":"sha512-WhRe6liQ2q/w1MZc8mD8INkenHivuHdrr4r5EQHNomy3NJux+incP6M6lDMd0paShP3MD0WGe5R1TWmEClf+Bg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.562_1599192148705_0.7213507485528845"},"_hasShrinkwrap":false,"publish_time":1599192148839,"_cnpm_publish_time":1599192148839,"_cnpmcore_publish_time":"2021-12-15T21:10:29.721Z"},"1.3.561":{"name":"electron-to-chromium","version":"1.3.561","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.505.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fc03719123fc762533c501670367b4ab024593b1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.561","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"90411a8f45a227ee3cf9219297b2515b5a5359e5","size":9440,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.561.tgz","integrity":"sha512-f9ESwg7KGKqNzfhJ8QRXBEZA/FpiWohHC/xob/Jk7BwUoKdI2xEhp36Y31AJwc5GygPwoMo/4W3ne7IWncW9Zg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.561_1599163347451_0.29142974847288006"},"_hasShrinkwrap":false,"publish_time":1599163347590,"_cnpm_publish_time":1599163347590,"_cnpmcore_publish_time":"2021-12-15T21:10:29.918Z"},"1.3.560":{"name":"electron-to-chromium","version":"1.3.560","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.504.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b5666de076e69271dca44a2d0cc653eefc6d4759","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.560","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"6c3f61fe50324770b75705300e9f98f29312ea8d","size":9440,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.560.tgz","integrity":"sha512-0cEFfOA3sNXfSxo0FIClBhrLVSe/QO9LBiqmmYPm3N/IYyt41NRTa2EhvOMWAOKpjd91t/rq062yhnJzfVMKkQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.560_1599120159249_0.764897649145647"},"_hasShrinkwrap":false,"publish_time":1599120159401,"_cnpm_publish_time":1599120159401,"_cnpmcore_publish_time":"2021-12-15T21:10:30.132Z"},"1.3.559":{"name":"electron-to-chromium","version":"1.3.559","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.503.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"29ddda973fea899e09584267b75bf46eb47aba39","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.559","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"698e231046e9c7438a42f310373c2d5ba76ea1de","size":9418,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.559.tgz","integrity":"sha512-CQChkWNny3Tp8StVV2t/6Yegl7BwgR3Qk4gJ09lffK87IkHdNBy0exo9CBxAA8Mv6ihwWOuM0Pp0gTQc2Y+NTQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.559_1599105762473_0.7639817751689619"},"_hasShrinkwrap":false,"publish_time":1599105762699,"_cnpm_publish_time":1599105762699,"_cnpmcore_publish_time":"2021-12-15T21:10:30.329Z"},"1.3.558":{"name":"electron-to-chromium","version":"1.3.558","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.502.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5983b1fc0f044b058b7c69d7c3f6d106af18fc06","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.558","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a329d3139cb33e8652a7e7db4c5ae26e294b9f60","size":9416,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.558.tgz","integrity":"sha512-r6th6b/TU2udqVoUDGWHF/z2ACJVnEei0wvWZf/nt+Qql1Vxh60ZYPhQP46j4D73T/Jou7hl4TqQfxben+qJTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.558_1599033748531_0.9852871541285637"},"_hasShrinkwrap":false,"publish_time":1599033748679,"_cnpm_publish_time":1599033748679,"_cnpmcore_publish_time":"2021-12-15T21:10:30.784Z"},"1.3.557":{"name":"electron-to-chromium","version":"1.3.557","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.501.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"935614af52e5f089a58aa3715de8008c0ffd4a74","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.557","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"00cafeed4397a6a9d1036911e434bc7404dc5e7c","size":9414,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.557.tgz","integrity":"sha512-M2p3nWulBqSEIisykYUVYnaSuRikHvxv8Wf209/Vg/sjrOew12hBQv2JvNGy+i+eDeJU9uQ3dbUbCCQ/CkudEg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.557_1598976149875_0.08935110049554473"},"_hasShrinkwrap":false,"publish_time":1598976150123,"_cnpm_publish_time":1598976150123,"_cnpmcore_publish_time":"2021-12-15T21:10:31.002Z"},"1.3.556":{"name":"electron-to-chromium","version":"1.3.556","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.500.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2b5071a9f276d3ffd6a3e4196df03cd6f4f4334b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.556","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"d2a8fed6b93051c5c27d182c43c7bc4d88b77afb","size":9388,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.556.tgz","integrity":"sha512-g5cGpg6rOCXxyfaLCQIWz9Fx+raFfbZ6sc4QLfvvaiCERBzY6YD6rh5d12QN++bEF1Tm9osYnxP37lbN/92j4A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.556_1598932946906_0.5152374751615043"},"_hasShrinkwrap":false,"publish_time":1598932947049,"_cnpm_publish_time":1598932947049,"_cnpmcore_publish_time":"2021-12-15T21:10:31.244Z"},"1.3.555":{"name":"electron-to-chromium","version":"1.3.555","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.499.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7dbbbc8cc1302d5366038ebba5bfb01729052033","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.555","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a096716ff77cf8da9a608eb628fd6927869503d2","size":9387,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.555.tgz","integrity":"sha512-/55x3nF2feXFZ5tdGUOr00TxnUjUgdxhrn+eCJ1FAcoAt+cKQTjQkUC5XF4frMWE1R5sjHk+JueuBalimfe5Pg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.555_1598673743884_0.6039909294935628"},"_hasShrinkwrap":false,"publish_time":1598673744066,"_cnpm_publish_time":1598673744066,"_cnpmcore_publish_time":"2021-12-15T21:10:31.477Z"},"1.3.554":{"name":"electron-to-chromium","version":"1.3.554","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.499.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cbd434b9c2869427c996cfbcaa2f978e99be1e04","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.554","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"11d0619b927a25f300b787ad7ee1ece91384dde9","size":9347,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.554.tgz","integrity":"sha512-Vtz2dVH5nMtKK4brahmgScwFS8PBnpA4VObYXtlsqN8ZpT9IFelv0Rpflc1+NIILjGVaj6vEiXQbhrs3Pl8O7g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.554_1598601746163_0.3793810602409493"},"_hasShrinkwrap":false,"publish_time":1598601746326,"_cnpm_publish_time":1598601746326,"_cnpmcore_publish_time":"2021-12-15T21:10:31.723Z"},"1.3.553":{"name":"electron-to-chromium","version":"1.3.553","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.498.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0dc192aa46021145c7de1b33018cf27f79bfd50f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.553","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"c4693d8660470a3aa830907890e446a9f3b26376","size":9347,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.553.tgz","integrity":"sha512-wi/hoMuTGK6OJoLOHqmXFA9BWOQGF2nInCfk+/Owhd4VVfuenKE2LZr9TtFCmwyda2SE9hG+sRnqRCwhYgFeIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.553_1598587347695_0.8981526129133943"},"_hasShrinkwrap":false,"publish_time":1598587347811,"_cnpm_publish_time":1598587347811,"_cnpmcore_publish_time":"2021-12-15T21:10:31.962Z"},"1.3.552":{"name":"electron-to-chromium","version":"1.3.552","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.497.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5d0ef548271b64c81c1e3317e23d04e93af39dd9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.552","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"6a50736f155f9666501839c8e134ea28a5c80b84","size":9348,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.552.tgz","integrity":"sha512-8K28xz8WRBZw/tmP7W3bTC3M5RI58QyS4O7uX7m2zxLKniMO79CNg5wkuRw2Qya621Cuqa3pCGs3FHZptltB1Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.552_1598558546684_0.00800957016454662"},"_hasShrinkwrap":false,"publish_time":1598558546823,"_cnpm_publish_time":1598558546823,"_cnpmcore_publish_time":"2021-12-15T21:10:32.176Z"},"1.3.551":{"name":"electron-to-chromium","version":"1.3.551","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.496.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2f782b1178c5790b38aebabfc3bbf4da5a11b21e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.551","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a94d243a4ca90705189bd4a5eca4e0f56b745a4f","size":9347,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.551.tgz","integrity":"sha512-11qcm2xvf2kqeFO5EIejaBx5cKXsW1quAyv3VctCMYwofnyVZLs97y6LCekss3/ghQpr7PYkSO3uId5FmxZsdw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.551_1598544144846_0.2953135207388866"},"_hasShrinkwrap":false,"publish_time":1598544145011,"_cnpm_publish_time":1598544145011,"_cnpmcore_publish_time":"2021-12-15T21:10:32.759Z"},"1.3.550":{"name":"electron-to-chromium","version":"1.3.550","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.496.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dc266b01aba04f631dca6d0f4719e63aba2a075c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.550","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bf9bbb78182aac0fe2d23d3bd1483dde4483f512","size":9317,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.550.tgz","integrity":"sha512-MWDHoJsSieBaJ6mObvi3V0eKZufR1iMJl56VIGdXCgFHyCUbVDGm2IMXUNjDxgbGbKa3tA5+zJmHuBQqRxGiLA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.550_1598500947213_0.6665179156029577"},"_hasShrinkwrap":false,"publish_time":1598500947523,"_cnpm_publish_time":1598500947523,"_cnpmcore_publish_time":"2021-12-15T21:10:33.014Z"},"1.3.549":{"name":"electron-to-chromium","version":"1.3.549","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.495.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7c4008dc0a412e7078ac0171d51c49dd1320d875","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.549","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bf500c8eb75a7286a895e34f41aa144384ac613b","size":9318,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.549.tgz","integrity":"sha512-q09qZdginlqDH3+Y1P6ch5UDTW8nZ1ijwMkxFs15J/DAWOwqolIx8HZH1UP0vReByBigk/dPlU22xS1MaZ+kpQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.549_1598443344586_0.10960368111577345"},"_hasShrinkwrap":false,"publish_time":1598443344870,"_cnpm_publish_time":1598443344870,"_cnpmcore_publish_time":"2021-12-15T21:10:33.235Z"},"1.3.548":{"name":"electron-to-chromium","version":"1.3.548","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.495.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"92d261230942ddd30e82ae3381d8984a98a0c524","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.548","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"b1bda6b24f7a1c1fa6250bb039a0bbed148f26f2","size":9309,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.548.tgz","integrity":"sha512-Xf4m3GFwCEcQ+4W45IHeZ6enPC1i+8/3aaXz8Pcd2VkNLULP0DMvoP7aKv2tQ+M/CH2SC7Qlm4S6DpzZUS2w1Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.548_1598414558944_0.21437361815507217"},"_hasShrinkwrap":false,"publish_time":1598414559114,"_cnpm_publish_time":1598414559114,"_cnpmcore_publish_time":"2021-12-15T21:10:33.457Z"},"1.3.547":{"name":"electron-to-chromium","version":"1.3.547","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.494.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e71c2239248e522e02c6c8b18177125a44df5f98","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.547","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"47c4f2e976dfa314c95be056a396e1c3d6d92b4f","size":9311,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.547.tgz","integrity":"sha512-iIgTRpp3EZ6YE31zxBYHlWjODIF7RY4FaRuGpk2dnpwQL5wAL8iAGRPXkFgtK2mNQn1tEV6EFnSsk2DZVf2xuw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.547_1598400144934_0.512382201760538"},"_hasShrinkwrap":false,"publish_time":1598400145059,"_cnpm_publish_time":1598400145059,"_cnpmcore_publish_time":"2021-12-15T21:10:33.650Z"},"1.3.546":{"name":"electron-to-chromium","version":"1.3.546","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.494.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"764b9f543c654ea098cb3735cc5abfd3d2a25788","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.546","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"058c8f2f1a64f71127e7993b60ff4be85aa9bab4","size":9291,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.546.tgz","integrity":"sha512-AArbawRpcPhhfnm2nhmEonHcaEmmgulPI4c+bhaTbWHGzJRhgSoar1+1NQWC554fMjgxnoYC2Mrshjb3D3zSaQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.546_1598385752654_0.2991005680063741"},"_hasShrinkwrap":false,"publish_time":1598385752818,"_cnpm_publish_time":1598385752818,"_cnpmcore_publish_time":"2021-12-15T21:10:33.848Z"},"1.3.545":{"name":"electron-to-chromium","version":"1.3.545","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.493.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"188f86e2263800c43f5f45ef14fd5d2294d4a8dd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.545","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"d9add694c78554b8c00bc6e6fc929d5ccd7d1b99","size":9289,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.545.tgz","integrity":"sha512-+0R/i17u5E1cwF3g0W8Niq3UUKTUMyyT4kLkutZUHG8mDNvFsAckK3HIanzGVtixe3b6rknD8k7gHiR6nKFkgg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.545_1598328152593_0.13327162370584777"},"_hasShrinkwrap":false,"publish_time":1598328152749,"_cnpm_publish_time":1598328152749,"_cnpmcore_publish_time":"2021-12-15T21:10:34.057Z"},"1.3.544":{"name":"electron-to-chromium","version":"1.3.544","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.492.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d09125b3b0a84c224703048ac0ae14cab87f7a2a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.544","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"ac1f7d319f6060f3d6d122261d542ec77eb1427e","size":9291,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.544.tgz","integrity":"sha512-jx6H7M1db76Q/dI3MadZC4qwNTvpiq8tdYEJswxexrIm5bH+LKRdg+VAteMF1tJJbBLrcuogE9N3nxT3Dp1gag=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.544_1598198563518_0.49787815467190955"},"_hasShrinkwrap":false,"publish_time":1598198563722,"_cnpm_publish_time":1598198563722,"_cnpmcore_publish_time":"2021-12-15T21:10:34.265Z"},"1.3.543":{"name":"electron-to-chromium","version":"1.3.543","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.491.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a9e563c1b3bbadf6fb95d6f2ec15c1a7e1ef5339","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.543","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"71296bce656b21b56be78a5a973ebd82dbb61a03","size":9266,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.543.tgz","integrity":"sha512-PFbVI7G3e2fXSCFa+tgYAlyWNnUJZo4JtpJHYJ/DuB32opR6lzNJoH2LuR392Zr+nmw9jK5LZd+kvdcJDoj/fA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.543_1598169754821_0.8557103035133453"},"_hasShrinkwrap":false,"publish_time":1598169755023,"_cnpm_publish_time":1598169755023,"_cnpmcore_publish_time":"2021-12-15T21:10:34.441Z"},"1.3.542":{"name":"electron-to-chromium","version":"1.3.542","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.490.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4ed0a34a729593f324205b99be08e5e58ff8009d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.542","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0a48ff708646a54189ecbbed88a49d73dd14ce8c","size":9267,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.542.tgz","integrity":"sha512-9Wm4o9h2CE/h4PDBkE5Ff2ha4frgltV/BgVCwFK8Tc9DKF19xJK85zA82JFah0/+oe8SU3rYRWtlYZH58pC6Ng=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.542_1598112293765_0.4475408492673223"},"_hasShrinkwrap":false,"publish_time":1598112293879,"_cnpm_publish_time":1598112293879,"_cnpmcore_publish_time":"2021-12-15T21:10:34.631Z"},"1.3.541":{"name":"electron-to-chromium","version":"1.3.541","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.489.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1e8c39353770fb2d87915afcf2f15d995b252cf4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.541","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bffc28d861b601084962fdbd00112e394d8947d7","size":9260,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.541.tgz","integrity":"sha512-xfne2L0+Jpi+0orn8PK0V9TKgpFHiwhckBONdro2hhgXUJe6bEMtNdQdDNjQIGUxkXESa8TfCraS4X9CMPxVOQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.541_1598097753382_0.9690610165031674"},"_hasShrinkwrap":false,"publish_time":1598097753606,"_cnpm_publish_time":1598097753606,"_cnpmcore_publish_time":"2021-12-15T21:10:34.825Z"},"1.3.540":{"name":"electron-to-chromium","version":"1.3.540","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.489.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"84ed813af62b12c1b963f325ac7a6cd19c6547a3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.540","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4e4c08d8c12bbd32cf090e143c0d546f017f9d43","size":9244,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.540.tgz","integrity":"sha512-IoGiZb8SMqTtkDYJtP8EtCdvv3VMtd1QoTlypO2RUBxRq/Wk0rU5IzhzhMckPaC9XxDqUvWsL0XKOBhTiYVN3w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.540_1597982554692_0.1794768356582359"},"_hasShrinkwrap":false,"publish_time":1597982554796,"_cnpm_publish_time":1597982554796,"_cnpmcore_publish_time":"2021-12-15T21:10:35.032Z"},"1.3.539":{"name":"electron-to-chromium","version":"1.3.539","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.488.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c2a1d981e9a286e1cc8c26f02cc08377109363f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.539","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9952fb0bf3fb4295282e7df35f6e7a2a8b89d3fd","size":9244,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.539.tgz","integrity":"sha512-rM0LWDIstdqfaRUADZetNrL6+zd/0NBmavbMEhBXgc2u/CC1d1GaDyN5hho29fFvBiOVFwrSWZkzmNcZnCEDog=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.539_1597852970170_0.880669997143787"},"_hasShrinkwrap":false,"publish_time":1597852970398,"_cnpm_publish_time":1597852970398,"_cnpmcore_publish_time":"2021-12-15T21:10:35.245Z"},"1.3.538":{"name":"electron-to-chromium","version":"1.3.538","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.487.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e8eb8890f71f80771772f711e64ca6564f4fa437","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.538","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"15226638ee9db5d8e74f4c860cef6078d8e1e871","size":9247,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.538.tgz","integrity":"sha512-rlyYXLlOoZkJuvY4AJXUpP7CHRVtwZz311HPVoEO1UHo/kqDCsP1pNas0A9paZuPEiYGdLwrjllF2hs69NEaTw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.538_1597838550520_0.6782056276602875"},"_hasShrinkwrap":false,"publish_time":1597838550644,"_cnpm_publish_time":1597838550644,"_cnpmcore_publish_time":"2021-12-15T21:10:35.689Z"},"1.3.537":{"name":"electron-to-chromium","version":"1.3.537","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.487.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cd4f4ce3c717806076fda4affdafb95779103058","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.537","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"dfe595f5283d3113df897158810e40f6c2355283","size":9240,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.537.tgz","integrity":"sha512-v1jGX46P9vq1XvCBFJ7T7rHd2kMuSrCHnYvO0TqNoURYt7VoxCnqo5+W84s0jlnq0iQUPk5H2D01RfL4ENe2CA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.537_1597809748359_0.6150867086761118"},"_hasShrinkwrap":false,"publish_time":1597809748533,"_cnpm_publish_time":1597809748533,"_cnpmcore_publish_time":"2021-12-15T21:10:35.915Z"},"1.3.536":{"name":"electron-to-chromium","version":"1.3.536","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.486.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a258de98a99f67f416507b8c704c1e9a090f4e87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.536","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"78a4ff753111283489f3b6ad19664902245ab876","size":9241,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.536.tgz","integrity":"sha512-aU16nvH8/zNNeFIQ7H2SKRQlJ/srw7mCn/JDj2ImWUA7Lk2+3zJFpDGJNP2qRxPAZsC+qgnlgNTYIvT6EOdJFQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.536_1597780949201_0.15922504252566827"},"_hasShrinkwrap":false,"publish_time":1597780949356,"_cnpm_publish_time":1597780949356,"_cnpmcore_publish_time":"2021-12-15T21:10:36.125Z"},"1.3.535":{"name":"electron-to-chromium","version":"1.3.535","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.485.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d6242fe5665110477bebe1a1807e25a18f6614be","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.535","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"e31ee048de6f9c8d92bd25d4e3d1a92bedbe5cb2","size":9237,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.535.tgz","integrity":"sha512-5k7WGdl1ZnbcU97acUnY/UXu6bCMDnKCAnEc1N0xNToPvMCp99PEvh5K3xNr4ZUVCf2FuratM++NgOxCtbtXzA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.535_1597766549801_0.7886899492333079"},"_hasShrinkwrap":false,"publish_time":1597766550025,"_cnpm_publish_time":1597766550025,"_cnpmcore_publish_time":"2021-12-15T21:10:36.334Z"},"1.3.534":{"name":"electron-to-chromium","version":"1.3.534","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.485.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"54bd5a3f99c6549ea93b8031c3abbf8672a63590","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.534","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"fc7af8518dd00a5b22a24aed3f116b5d097e2330","size":9229,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.534.tgz","integrity":"sha512-7x2S3yUrspNHQOoPk+Eo+iHViSiJiEGPI6BpmLy1eT2KRNGCkBt/NUYqjfXLd1DpDCQp7n3+LfA1RkbG+LqTZQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.534_1597723352728_0.2463024099181943"},"_hasShrinkwrap":false,"publish_time":1597723352827,"_cnpm_publish_time":1597723352827,"_cnpmcore_publish_time":"2021-12-15T21:10:36.587Z"},"1.3.533":{"name":"electron-to-chromium","version":"1.3.533","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.484.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ed797af3ec813edaa5947c518b1ac7429969600b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.533","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"d7e5ca4d57e9bc99af87efbe13e7be5dde729b0f","size":9229,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz","integrity":"sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.533_1597291350341_0.04367250745901119"},"_hasShrinkwrap":false,"publish_time":1597291350557,"_cnpm_publish_time":1597291350557,"_cnpmcore_publish_time":"2021-12-15T21:10:36.814Z"},"1.3.532":{"name":"electron-to-chromium","version":"1.3.532","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.484.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7dace43cc6090c53541fd69058f6533c58c31342","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.532","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"281efb8b8588ec8a105db8829c39dd2ad178b1f3","size":9225,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.532.tgz","integrity":"sha512-6PYzSCIa/Q2PImAHYLrvKPxuwFqDcvCzRT9w26Szd9psPa9et/t4TzgjaoX7wkBIfkhhgRQWwHWeUHOM4cJdRw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.532_1597262549832_0.7284375424216938"},"_hasShrinkwrap":false,"publish_time":1597262549927,"_cnpm_publish_time":1597262549927,"_cnpmcore_publish_time":"2021-12-15T21:10:37.020Z"},"1.3.531":{"name":"electron-to-chromium","version":"1.3.531","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.483.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f3a642d63719079c2399bb38969d7d91d83eae87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.531","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"fe432e23c306f7b3579506de9ca63703ef086b9d","size":9227,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.531.tgz","integrity":"sha512-cRdM9noPSUvZ2TCJByhFL78amPMjNZlGJG27EPuJZK0CwWzBfj3ei7hJh0hNsjvgC0BayRW8Bc06DTCELcMC9Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.531_1597233757434_0.4471877234088186"},"_hasShrinkwrap":false,"publish_time":1597233757637,"_cnpm_publish_time":1597233757637,"_cnpmcore_publish_time":"2021-12-15T21:10:37.247Z"},"1.3.530":{"name":"electron-to-chromium","version":"1.3.530","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.483.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d7372581fdeec7549401c4d8ea69fb36a07ea770","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.530","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9b1033f5221cece94eeb3ec98db27227177fd196","size":9221,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.530.tgz","integrity":"sha512-jnKBqvkXyxo6Tr245YyghzSMjmrA+uzQn+rwLjd3n+Y3sad0eWPzAXfa2lDwSikQu0I5reYacZjmQjCRH9VQdg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.530_1597204951310_0.474390807763974"},"_hasShrinkwrap":false,"publish_time":1597204951428,"_cnpm_publish_time":1597204951428,"_cnpmcore_publish_time":"2021-12-15T21:10:37.447Z"},"1.3.529":{"name":"electron-to-chromium","version":"1.3.529","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.482.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fd7e8d6789fa2f210390b571ab7e53ac37386a50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.529","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"a7eed559bc848a7c8d95026be7d8929e3f9af169","size":9220,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.529.tgz","integrity":"sha512-n3sriLldqNyjBlosbnPftjCY+m1dVOY307I1Y0HaHAqDGe3hRvK7ksJwWd+qs599ybR4jobCo1+7zXM9GyNMSA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.529_1597132961322_0.47465777307625334"},"_hasShrinkwrap":false,"publish_time":1597132961469,"_cnpm_publish_time":1597132961469,"_cnpmcore_publish_time":"2021-12-15T21:10:37.665Z"},"1.3.528":{"name":"electron-to-chromium","version":"1.3.528","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.481.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"72befc94a6cdeb3e31e936d6404c379cb2695ff2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.528","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"9d815a1ab50d2e90755116fd6e02c3c5bdddf7db","size":9199,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.528.tgz","integrity":"sha512-PEwLXeD679xF6+hYL32QBMzpyEr/H2v/K2v8N0ANkVvSrw2kblSgM7xmLYvzQTUy9d6V5SeV89lbwFqpatNqmw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.528_1597118551650_0.6547244879294045"},"_hasShrinkwrap":false,"publish_time":1597118551742,"_cnpm_publish_time":1597118551742,"_cnpmcore_publish_time":"2021-12-15T21:10:37.872Z"},"1.3.527":{"name":"electron-to-chromium","version":"1.3.527","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.480.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"218ced6dc0d0baba1b0fdbdb5c631b553ee6416e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.527","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"5f59202c066c77a13e6cb0869852ef784e8f2089","size":9201,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.527.tgz","integrity":"sha512-ZlB9ySKOnS4g2Ja/TWDz4Q79NZhKV+Vsgntg85zLN08t+QsN1hK/zeDrcqwysSfbfGRVtvai6QYMczeNNUUgUA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.527_1597089749687_0.2652694492482106"},"_hasShrinkwrap":false,"publish_time":1597089749853,"_cnpm_publish_time":1597089749853,"_cnpmcore_publish_time":"2021-12-15T21:10:38.130Z"},"1.3.526":{"name":"electron-to-chromium","version":"1.3.526","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.480.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8c0c3fcb8fbd48993253408724a309d7b1e20311","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.526","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"0e004899edf75afc172cce1b8189aac5dca646aa","size":9198,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.526.tgz","integrity":"sha512-HiroW5ZbGwgT8kCnoEO8qnGjoTPzJxduvV/Vv/wH63eo2N6Zj3xT5fmmaSPAPUM05iN9/5fIEkIg3owTtV6QZg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.526_1596859350244_0.02025153690884185"},"_hasShrinkwrap":false,"publish_time":1596859350370,"_cnpm_publish_time":1596859350370,"_cnpmcore_publish_time":"2021-12-15T21:10:38.312Z"},"1.3.525":{"name":"electron-to-chromium","version":"1.3.525","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.479.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8eefb4ce756891754a07c273fa2f013a48e7867b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.525","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"bc74080a3fd651b54627ee1fd94972e7c4d38fa8","size":9198,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.525.tgz","integrity":"sha512-Cni4AhdgdPOH4ZOY0tqgdF+7tF378o4qVRJFq8wxY/asLIVICMAHxfXPfdlivnf6B3Hdg1CI8yuFJ9Wo5kNeSg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.525_1596830551625_0.8165550441805307"},"_hasShrinkwrap":false,"publish_time":1596830551798,"_cnpm_publish_time":1596830551798,"_cnpmcore_publish_time":"2021-12-15T21:10:38.512Z"},"1.3.524":{"name":"electron-to-chromium","version":"1.3.524","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.478.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"129abc597d7b088436d0ab35b76b04c705777201","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.524","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"dd49646594466192de35956a5369bb20d616aa78","size":9196,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.524.tgz","integrity":"sha512-ZUvklIBkfXQyA6IeiEss1nfKRICcdB5afAGZAaPGaExdfrkpUu/WWVO+X7QpNnphaVMllXnAcvKnVPdyM+DCPQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.524_1596772949346_0.3445751216564199"},"_hasShrinkwrap":false,"publish_time":1596772949502,"_cnpm_publish_time":1596772949502,"_cnpmcore_publish_time":"2021-12-15T21:10:38.725Z"},"1.3.523":{"name":"electron-to-chromium","version":"1.3.523","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.477.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"aa269a0d83445350c4c2ab6688f576ba83218b98","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.523","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"494080b318ba929614eebd04405b94c359ea9333","size":9197,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.523.tgz","integrity":"sha512-D4/3l5DpciddD92IDRtpLearQSGzly8FwBJv+nITvLH8YJrFabpDFe4yuiOJh2MS4/EsXqyQTXyw1toeYPtshQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.523_1596700948148_0.5946845488867836"},"_hasShrinkwrap":false,"publish_time":1596700948400,"_cnpm_publish_time":1596700948400,"_cnpmcore_publish_time":"2021-12-15T21:10:38.993Z"},"1.3.522":{"name":"electron-to-chromium","version":"1.3.522","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.477.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"da9a5cbb5dd89a07be8e772f5ef3266dece9d62a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.522","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"4a6485ad187ffd31913bba0747d0e36405f405d6","size":9172,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.522.tgz","integrity":"sha512-67V62Z4CFOiAtox+o+tosGfVk0QX4DJgH609tjT8QymbJZVAI/jWnAthnr8c5hnRNziIRwkc9EMQYejiVz3/9Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.522_1596686550949_0.38951557635034284"},"_hasShrinkwrap":false,"publish_time":1596686551059,"_cnpm_publish_time":1596686551059,"_cnpmcore_publish_time":"2021-12-15T21:10:39.667Z"},"1.3.521":{"name":"electron-to-chromium","version":"1.3.521","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.476.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"72c63f63cb8d72d751f3c64edf1ad89a85c030f5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.521","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"67216aa87e5e17b2fe065f07ec8880b3fec8dae1","size":9174,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.521.tgz","integrity":"sha512-7/Cf5jUuAfLRY8SjfRES/6+9BDvmHAB2YQotCAaXK0IEacpjoSlyosPoC4s7lfb7vIOBubXvsssu8+8qaRGjcg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.521_1596643349383_0.25183178692107333"},"_hasShrinkwrap":false,"publish_time":1596643349559,"_cnpm_publish_time":1596643349559,"_cnpmcore_publish_time":"2021-12-15T21:10:39.931Z"},"1.3.520":{"name":"electron-to-chromium","version":"1.3.520","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.476.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5677f3b69b3691d6748ddd2e1b8c3296716069ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.520","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"dfda0a14a4aed785cbddfdb505ea122f75978392","size":9169,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.520.tgz","integrity":"sha512-q6H9E1sXDCjRHP+X06vcP+N0ki8ZvYoRPZfKnDuiRX10WWXxEHzKFVf4O9rBFMpuPtR3M+2KAdJnugJoBBp3Rw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.520_1596600150437_0.01890550804134805"},"_hasShrinkwrap":false,"publish_time":1596600150540,"_cnpm_publish_time":1596600150540,"_cnpmcore_publish_time":"2021-12-15T21:10:40.268Z"},"1.3.519":{"name":"electron-to-chromium","version":"1.3.519","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.475.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ae211ec269a02d5e07d20c6e50f9599f029ce81e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.519","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"d1da9c8a8a96ee7f60c32b2ca2593533a970c210","size":9167,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.519.tgz","integrity":"sha512-2r/p/9YOjIpX10KxcH1HcAGz1oadSD9Cwwotoek8wNJx/SRpklea14qdAMzCTTZlIezvsJ8sNsBQN05bJ/ZjhA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.519_1596571349783_0.7442451857817884"},"_hasShrinkwrap":false,"publish_time":1596571350189,"_cnpm_publish_time":1596571350189,"_cnpmcore_publish_time":"2021-12-15T21:10:40.633Z"},"1.3.518":{"name":"electron-to-chromium","version":"1.3.518","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.475.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fec3f46170971836b7cabc1794e4a09ced0a68f8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.518","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"c54ee9cf1a7bafd6e482a1a6cceac86448d941e8","size":9122,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.518.tgz","integrity":"sha512-IspiwXYDKZMxo+qc3Vof4WtwbG9BMDbJfati8PYj7uS4DJmJ67pwjCKZxlTBSAuCZSMcbRnj2Xz2H14uiKT7bQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.518_1596513749411_0.7070899639765293"},"_hasShrinkwrap":false,"publish_time":1596513749614,"_cnpm_publish_time":1596513749614,"_cnpmcore_publish_time":"2021-12-15T21:10:40.839Z"},"1.3.517":{"name":"electron-to-chromium","version":"1.3.517","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.474.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d7d7ea1f5d11d3a9ff43bb02598dbc64766895e3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.517","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"891995c711f748db14946b86661db7a5c87a16c3","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.517.tgz","integrity":"sha512-8wucrMsmXxeBxaM3TPg+YiwIJwPd1IZMudOj1XytmkP3UPXRagMhO9vo4nzzbSWeq91N1zhfUhJW2u9/MVhPxw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.517_1596484952015_0.9953356628063816"},"_hasShrinkwrap":false,"publish_time":1596484952295,"_cnpm_publish_time":1596484952295,"_cnpmcore_publish_time":"2021-12-15T21:10:41.074Z"},"1.3.516":{"name":"electron-to-chromium","version":"1.3.516","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.473.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7efaf2920fe425665dcc341d0e2f2a42e523718f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.516","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"03ec071b061e462b786bf7e7ce226fd7ab7cf1f6","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.516.tgz","integrity":"sha512-WDM5AAQdOrvLqSX8g3Zd5AujBXfMxf96oeZkff0U2HF5op3tjShE+on2yay3r1UD4M9I3p0iHpAS4+yV8U8A9A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.516_1596225748455_0.08416276664916689"},"_hasShrinkwrap":false,"publish_time":1596225748632,"_cnpm_publish_time":1596225748632,"_cnpmcore_publish_time":"2021-12-15T21:10:41.318Z"},"1.3.515":{"name":"electron-to-chromium","version":"1.3.515","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.472.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f220fcb9c6ea6f7093a91e35797588bd164dd375","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.515","_nodeVersion":"10.15.3","_npmVersion":"6.14.7","dist":{"shasum":"96683d2c2be9bf83f6cca75d504a7b443d763c08","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.515.tgz","integrity":"sha512-C9h2yLQwNSK/GTtWQsA9O6mLKv0ubmiAQgmz1HvHnAIH8g5Sje1shWxcooumbGiwgqvZ9yrTYULe4seMTgMYqQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.515_1596168150766_0.3406912532073907"},"_hasShrinkwrap":false,"publish_time":1596168150896,"_cnpm_publish_time":1596168150896,"_cnpmcore_publish_time":"2021-12-15T21:10:41.512Z"},"1.3.514":{"name":"electron-to-chromium","version":"1.3.514","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.471.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2ff9637473abdddfcfcc3b9afe1ba3787d890e59","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.514","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"107499c28cb3c09fe6a863c19fc2202d5d9e8e41","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.514.tgz","integrity":"sha512-8vb8zKIeGlZigeDzNWWthmGeLzo5CC43Lc+CZshMs7UXFVMPNLtXJGa/txedpu3OJFrXXVheBwp9PqOJJlHQ8w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.514_1596081748783_0.750880711595945"},"_hasShrinkwrap":false,"publish_time":1596081748945,"_cnpm_publish_time":1596081748945,"_cnpmcore_publish_time":"2021-12-15T21:10:41.716Z"},"1.3.513":{"name":"electron-to-chromium","version":"1.3.513","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.470.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6c49ff8843c3c6e02d7a787e580377c5fbc871e1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.513","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d556da1e7d3142d209e2950bab4bf1c9b5fd75c9","size":9122,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.513.tgz","integrity":"sha512-4Mr0dfgKqe0VD6kq6FkdPmLIcJuEVsA6c6zfcs3rBb+eHEALYNI+KDhZYbzwyd+bbDuwha2Q44RHrB0I+bnXBw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.513_1596052949959_0.7595475762093191"},"_hasShrinkwrap":false,"publish_time":1596052950165,"_cnpm_publish_time":1596052950165,"_cnpmcore_publish_time":"2021-12-15T21:10:41.914Z"},"1.3.512":{"name":"electron-to-chromium","version":"1.3.512","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.469.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"805ef76e11c2df16ad96b71c1766314b377210b0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.512","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"620e6731c693ddaaf3750f23dde7f7c4347b7327","size":9122,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.512.tgz","integrity":"sha512-y02hdFg7c4jTfREcXf4fRhHLt7BzofMgd7JAKY+u9i62E0D1eIpLQPFo5/eboZL0bIVY9YHZA53+vCGNFREOXA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.512_1596009750788_0.39493551567898555"},"_hasShrinkwrap":false,"publish_time":1596009750910,"_cnpm_publish_time":1596009750910,"_cnpmcore_publish_time":"2021-12-15T21:10:42.118Z"},"1.3.511":{"name":"electron-to-chromium","version":"1.3.511","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.468.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"65242635ca1b73bfccb02610ee8208515ac00d48","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.511","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6955fecebff3aff62feb0d3504dc4d6e472da845","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.511.tgz","integrity":"sha512-Y/co9UDCXut3C+0gsCqHoR63rHvW7ajkudRQ0wjqe8REuzHS4aNK1EsThnyT4LesGOUU8pxTaV1MDOWPisD+gg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.511_1595995349751_0.4056829719603843"},"_hasShrinkwrap":false,"publish_time":1595995349919,"_cnpm_publish_time":1595995349919,"_cnpmcore_publish_time":"2021-12-15T21:10:42.620Z"},"1.3.510":{"name":"electron-to-chromium","version":"1.3.510","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.467.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5127040529980c46404005ffa1fadb9d046d1d29","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.510","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"dee781ff8b595c0deb60172b75d50b6889757eda","size":9121,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.510.tgz","integrity":"sha512-sLtGB0znXdmo6lM8hy5wTVo+fLqvIuO8hEpgc0DvPmFZqvBu/WB7AarEwhxVKjf3rVbws/rC8Xf+AlsOb36lJQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.510_1595908958956_0.3047517820561332"},"_hasShrinkwrap":false,"publish_time":1595908959106,"_cnpm_publish_time":1595908959106,"_cnpmcore_publish_time":"2021-12-15T21:10:42.980Z"},"1.3.509":{"name":"electron-to-chromium","version":"1.3.509","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.466.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e0c0d7ca289c536d97b42426eaab550d38086d5a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.509","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"830fcb89cd66dc2984d18d794973b99e3f00584c","size":9116,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.509.tgz","integrity":"sha512-cN4lkjNRuTG8rtAqTOVgwpecEC2kbKA04PG6YijcKGHK/kD0xLjiqExcAOmLUwtXZRF8cBeam2I0VZcih919Ug=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.509_1595664150171_0.05081098767596637"},"_hasShrinkwrap":false,"publish_time":1595664150268,"_cnpm_publish_time":1595664150268,"_cnpmcore_publish_time":"2021-12-15T21:10:43.276Z"},"1.3.508":{"name":"electron-to-chromium","version":"1.3.508","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.465.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0b00511834a9a46b161748c599eeeee93c9d5704","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.508","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6db2f904d0c41ad03fb57cc21ed9f4d3790a434b","size":9114,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.508.tgz","integrity":"sha512-JPXIRsWJXjo/nfXbJseylDejBG/rDu3rs854+HoS3mLxSfqdiDXi/sW9XB8rCGnZcfIYGwft/5VSgRiFAeA1bg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.508_1595649756981_0.24717884519690303"},"_hasShrinkwrap":false,"publish_time":1595649757146,"_cnpm_publish_time":1595649757146,"_cnpmcore_publish_time":"2021-12-15T21:10:43.522Z"},"1.3.507":{"name":"electron-to-chromium","version":"1.3.507","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.464.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3fcba942918a89e6353a1558f7fc5865f0eb5919","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.507","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"cda0bd5727acf6535d908b88e01348281e957c37","size":9108,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.507.tgz","integrity":"sha512-Kfij/d4KvPHpgWVY/lXTwrq/k6zlBhcYOxoi6M7qDx1SPb+Wu+o0dt3yaIbFLXXGJDnOeFHaSHurA/9UlZsQ8w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.507_1595635351959_0.8488952672533829"},"_hasShrinkwrap":false,"publish_time":1595635352101,"_cnpm_publish_time":1595635352101,"_cnpmcore_publish_time":"2021-12-15T21:10:43.772Z"},"1.3.506":{"name":"electron-to-chromium","version":"1.3.506","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.464.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"64298204859b1efd1eaa83844dbc6bb0a9c80b1e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.506","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"74bd3e1fb31285b3247f165d4958da74d70ae4e4","size":9089,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.506.tgz","integrity":"sha512-k0PHtv4gD6KJu1k6lp8pvQOe12uZriOwS2x66Vnxkq0NOBucsNrItOj/ehomvcZ3S4K1ueqUCv+fsLhXBs6Zyw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.506_1595563352453_0.5995999194873052"},"_hasShrinkwrap":false,"publish_time":1595563352563,"_cnpm_publish_time":1595563352563,"_cnpmcore_publish_time":"2021-12-15T21:10:43.968Z"},"1.3.505":{"name":"electron-to-chromium","version":"1.3.505","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.463.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d2443a41f7b4712fc04e05eff226050090599dd5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.505","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0e55edbdfc13700b6742a73c81c0af7d0d71364f","size":9087,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.505.tgz","integrity":"sha512-Aunrp3HWtmdiJLIl+IPSFtEvJ/4Q9a3eKaxmzCthaZF1gbTbpHUTCU2zOVnFPH7r/AD7zQXyuFidYXzSHXBdsw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.505_1595505752815_0.5728242962471677"},"_hasShrinkwrap":false,"publish_time":1595505753185,"_cnpm_publish_time":1595505753185,"_cnpmcore_publish_time":"2021-12-15T21:10:44.166Z"},"1.3.504":{"name":"electron-to-chromium","version":"1.3.504","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.463.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c7f2087ea2d1d679966182c7837845ed38e5dd38","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.504","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"54d6288202f8453053c006eb862e2e3b7bc867a5","size":9067,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.504.tgz","integrity":"sha512-yOXnuPaaLAIZUVuXHYDCo3EeaiEfbFgYWCPH1tBMp+jznCq/zQYKnf6HmkKBmLJ0VES81avl18JZO1lx/XAHOw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.504_1595419341088_0.9829281164341395"},"_hasShrinkwrap":false,"publish_time":1595419341245,"_cnpm_publish_time":1595419341245,"_cnpmcore_publish_time":"2021-12-15T21:10:44.366Z"},"1.3.503":{"name":"electron-to-chromium","version":"1.3.503","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.463.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b30213d2b59b4d5cbbfc7ab66bf7eca6a43c3667","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.503","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"3b2fc07b7e3ea0262c395984579ddabee1c9e0cd","size":9068,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.503.tgz","integrity":"sha512-Rh4+JP+5a+HeCg+77/BOLKzA6pLf8WZMd+DqiduEWCPyvSdY6KWzfkZXa2JRxrLO/aaB1YjTXenQdamZYzWfUw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.503_1595404950707_0.6496010410380122"},"_hasShrinkwrap":false,"publish_time":1595404950849,"_cnpm_publish_time":1595404950849,"_cnpmcore_publish_time":"2021-12-15T21:10:44.979Z"},"1.3.502":{"name":"electron-to-chromium","version":"1.3.502","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.462.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"86cf26e6d9afc543572f7b71d18add33d46816df","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.502","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6a55e993ef60a01fbdc2152ef5e47ee00c885c98","size":9069,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.502.tgz","integrity":"sha512-TIeXOaHAvfP7FemGUtAJxStmOc1YFGWFNqdey/4Nk41L9b1nMmDVDGNMIWhZJvOfJxix6Cv5FGEnBK+yvw3UTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.502_1595304149171_0.7422731901547182"},"_hasShrinkwrap":false,"publish_time":1595304149410,"_cnpm_publish_time":1595304149410,"_cnpmcore_publish_time":"2021-12-15T21:10:45.192Z"},"1.3.501":{"name":"electron-to-chromium","version":"1.3.501","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.461.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"116e6d66ef4c015a551515e7e08a9c1b98c2aed3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.501","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"faa17a2cb0105ee30d5e1ca87eae7d8e85dd3175","size":9067,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.501.tgz","integrity":"sha512-tyzuKaV2POw2mtqBBzQGNBojMZzH0MRu8bT8T/50x+hWeucyG/9pkgAATy+PcM2ySNM9+8eG2VllY9c6j4i+bg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.501_1595145748213_0.37542011230219097"},"_hasShrinkwrap":false,"publish_time":1595145748525,"_cnpm_publish_time":1595145748525,"_cnpmcore_publish_time":"2021-12-15T21:10:45.393Z"},"1.3.500":{"name":"electron-to-chromium","version":"1.3.500","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.461.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"403c1cb841589d9aa0cc858b8d6be254c3ce57e8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.500","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ac082dd2279251b14f1a7f6af6fd16655cf3eb7b","size":9060,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.500.tgz","integrity":"sha512-Zz8BZh4Ssb/rZBaicqpi+GOQ0uu3y+24+MxBLCk0UYt8EGoZRP4cYzYHHwXGZfrSbCU4VDjbWN+Tg+TPgOUX6Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.500_1595044948097_0.4889473256414847"},"_hasShrinkwrap":false,"publish_time":1595044948298,"_cnpm_publish_time":1595044948298,"_cnpmcore_publish_time":"2021-12-15T21:10:45.601Z"},"1.3.499":{"name":"electron-to-chromium","version":"1.3.499","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.460.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"323388af34be382e43555ab55bf8a76de9171cb8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.499","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"06949f19877dafa42915e57dfeb4c1cfb86a8649","size":9060,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.499.tgz","integrity":"sha512-y7FwtQm/8xuLMnYQfBQDYzCpNn+VkSnf4c3Km5TWMNXg7JA5RQBuxmcLaKdDVcIK0K5xGIa7TlxpRt4BdNxNoA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.499_1594958554785_0.5214071351802512"},"_hasShrinkwrap":false,"publish_time":1594958554986,"_cnpm_publish_time":1594958554986,"_cnpmcore_publish_time":"2021-12-15T21:10:45.876Z"},"1.3.498":{"name":"electron-to-chromium","version":"1.3.498","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.459.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"893d03a6b0bda7daee09b094f6ec6aa0ee2029f2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.498","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fd7188c8a49d6d0b5df1df55a1f1a4bf2c177457","size":9027,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.498.tgz","integrity":"sha512-W1hGwaQEU8j9su2jeAr3aabkPuuXw+j8t73eajGAkEJWbfWiwbxBwQN/8Qmv2qCy3uCDm2rOAaZneYQM8VGC4w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.498_1594800149592_0.36604623588456686"},"_hasShrinkwrap":false,"publish_time":1594800149722,"_cnpm_publish_time":1594800149722,"_cnpmcore_publish_time":"2021-12-15T21:10:46.077Z"},"1.3.497":{"name":"electron-to-chromium","version":"1.3.497","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.459.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"93ffc0ce56620ee16742b43ad7223f96748c5588","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.497","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"de00f2f2f44c258c4577fbfbd5124b94c18bfa44","size":9018,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.497.tgz","integrity":"sha512-sPdW5bUDZwiFtoonuZCUwRGzsZmKzcLM0bMVhp6SMCfUG+B3faENLx3cE+o+K0Jl+MPuNA9s9cScyFjOlixZpQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.497_1594699348976_0.5787053069704253"},"_hasShrinkwrap":false,"publish_time":1594699349108,"_cnpm_publish_time":1594699349108,"_cnpmcore_publish_time":"2021-12-15T21:10:46.263Z"},"1.3.496":{"name":"electron-to-chromium","version":"1.3.496","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.458.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dd3a5147c60d390a374b4561d8560c4a89a0fa30","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.496","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"3f43d32930481d82ad3663d79658e7c59a58af0b","size":9017,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.496.tgz","integrity":"sha512-TXY4mwoyowwi4Lsrq9vcTUYBThyc1b2hXaTZI13p8/FRhY2CTaq5lK+DVjhYkKiTLsKt569Xes+0J5JsVXFurQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.496_1594368145798_0.21963279559778082"},"_hasShrinkwrap":false,"publish_time":1594368145943,"_cnpm_publish_time":1594368145943,"_cnpmcore_publish_time":"2021-12-15T21:10:46.513Z"},"1.3.495":{"name":"electron-to-chromium","version":"1.3.495","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.458.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"25ea8035b1e5ed0512f1489c033d413ba1d6e3c4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.495","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7c8284119bcd2c27e5968f2054296e57318dcc21","size":8999,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.495.tgz","integrity":"sha512-cIPX+4Y3RH/+SoqYd168Rx//CnjsZSdF3XTUhwMf3dwYuTfvWIgmmy6s1ipptGaOA+scH2Vj57Mc9fqp/ho22Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.495_1594353750440_0.5481647314584042"},"_hasShrinkwrap":false,"publish_time":1594353750596,"_cnpm_publish_time":1594353750596,"_cnpmcore_publish_time":"2021-12-15T21:10:46.733Z"},"1.3.494":{"name":"electron-to-chromium","version":"1.3.494","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.457.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"40892289625a6d3f894e27be2a8173f45aa7dc51","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.494","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0d2dba65b69d696c5b71abb37552ff055fb32a5c","size":9001,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.494.tgz","integrity":"sha512-EOZuaDT3L1sCIMAVN5J0nGuGWVq5dThrdl0d8XeDYf4MOzbXqZ19OLKesN8TZj0RxtpYjqHpiw/fR6BKWdMwYA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.494_1594281747530_0.6010606170121069"},"_hasShrinkwrap":false,"publish_time":1594281747623,"_cnpm_publish_time":1594281747623,"_cnpmcore_publish_time":"2021-12-15T21:10:46.996Z"},"1.3.493":{"name":"electron-to-chromium","version":"1.3.493","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.457.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8c42e3d23bd282cfe905d5a94071bbe1bb72e55c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.493","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"825d4335d053db27dafa72619ba9bae06f79f791","size":8989,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.493.tgz","integrity":"sha512-XI8utnmn79O57cYTS0Y2smVmxwQvVisp7T/5mHHrUnY6yVXaglssFFxiHmSAIBil3c5XmhCqkhcS9j237zj83A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.493_1594267350102_0.7695215463699296"},"_hasShrinkwrap":false,"publish_time":1594267350337,"_cnpm_publish_time":1594267350337,"_cnpmcore_publish_time":"2021-12-15T21:10:47.188Z"},"1.3.492":{"name":"electron-to-chromium","version":"1.3.492","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.456.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9a0c84fb29a34d4a1f6c45f55e6c766b8e8cc492","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.492","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"bde16082a05a124266e5ecc9cf0ce53d137f2919","size":8992,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.492.tgz","integrity":"sha512-AD6v9Y2wN0HuoRH4LwCmlSHjkKq51D1U52bTuvM5uPzisbHVm3Hms15c42TBFLewxnSqxAynK/tbeaUi4Rnjqw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.492_1594195347503_0.723433781466877"},"_hasShrinkwrap":false,"publish_time":1594195347698,"_cnpm_publish_time":1594195347698,"_cnpmcore_publish_time":"2021-12-15T21:10:47.394Z"},"1.3.491":{"name":"electron-to-chromium","version":"1.3.491","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.456.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9569c4c9c7ee5fccaa9270bbd925d55bebb99ea0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.491","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"47aae23ae953c2ecb2298e176844cfd79c29b238","size":8972,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.491.tgz","integrity":"sha512-8pXN6BlIgdggFhgeAw7zYdlWl4dyAA+EYBkbwXZdqShz2SaCGsPwrGTNHsigIR9V9O8ZOswahXSspCsXgDHFrA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.491_1594180954094_0.30042205673324873"},"_hasShrinkwrap":false,"publish_time":1594180954271,"_cnpm_publish_time":1594180954271,"_cnpmcore_publish_time":"2021-12-15T21:10:47.614Z"},"1.3.490":{"name":"electron-to-chromium","version":"1.3.490","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.455.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"13329c1816727b2cf438b5c9c941f0d5999eb517","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.490","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"12aa776c493e66ba21536512fc317bdda6d04cd4","size":8970,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.490.tgz","integrity":"sha512-jKJF1mKXrQkT0ZiuJ/oV63Q02hAeWz0GGt/z6ryc518uCHtMyS9+wYAysZtBQ8rsjqFPAYXV4TIz5GQ8xyubPA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.490_1594123345686_0.3184838250013242"},"_hasShrinkwrap":false,"publish_time":1594123345820,"_cnpm_publish_time":1594123345820,"_cnpmcore_publish_time":"2021-12-15T21:10:48.178Z"},"1.3.489":{"name":"electron-to-chromium","version":"1.3.489","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.455.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"aca944ac1ba5809120b6f3c899f3d788ec0ba746","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.489","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6e87ed17744c85629ca6f567e5bc7ebe67652f57","size":8944,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.489.tgz","integrity":"sha512-1FfqjT+IXbs/H9bGJwRIyQQqOXIo7mOVUnv8s7nb2ff01fD0Z8dn1YjKovLDCFe4900Dal2uutR0YzXN5ldqEQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.489_1594094548952_0.31610618057132744"},"_hasShrinkwrap":false,"publish_time":1594094549066,"_cnpm_publish_time":1594094549066,"_cnpmcore_publish_time":"2021-12-15T21:10:48.403Z"},"1.3.488":{"name":"electron-to-chromium","version":"1.3.488","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.454.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"59ee6952562f782eaaf2bca75e590cfe5ac705f4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.488","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9226229f5fbc825959210e81e0bb3e63035d1c06","size":8945,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.488.tgz","integrity":"sha512-NReBdOugu1yl8ly+0VDtiQ6Yw/1sLjnvflWq0gvY1nfUXU2PbA+1XAVuEb7ModnwL/MfUPjby7e4pAFnSHiy6Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.488_1593835353071_0.4238410591464534"},"_hasShrinkwrap":false,"publish_time":1593835353186,"_cnpm_publish_time":1593835353186,"_cnpmcore_publish_time":"2021-12-15T21:10:48.656Z"},"1.3.487":{"name":"electron-to-chromium","version":"1.3.487","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.453.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3b96e04deba970dab1127adf160f8cf3950a3882","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.487","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"8075e6ea33ee2e79a2dfb2a2467033f014017258","size":8940,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.487.tgz","integrity":"sha512-m4QS3IDShxauFfYFpnEzRCcUI55oKB9acEnHCuY/hSCZMz9Pz2KJj+UBnGHxRxS/mS1aphqOQ5wI6gc3yDZ7ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.487_1593777745815_0.7830916475491367"},"_hasShrinkwrap":false,"publish_time":1593777745984,"_cnpm_publish_time":1593777745984,"_cnpmcore_publish_time":"2021-12-15T21:10:48.848Z"},"1.3.486":{"name":"electron-to-chromium","version":"1.3.486","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.453.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b962ded6097287ad7ddc7acd60d76c2065a542ee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.486","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"90856e6c9f488079225cf5a0b4d4af6c241e0965","size":8916,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.486.tgz","integrity":"sha512-fmnACh6Jiuagm9tAfEZNe6QrwvOYAC5y0BwzoEOGCsbqriKOCaafXf3lsIvL55xa75Jmg4oboI7f5tMuoXrjNg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.486_1593763347621_0.7375735880131569"},"_hasShrinkwrap":false,"publish_time":1593763347786,"_cnpm_publish_time":1593763347786,"_cnpmcore_publish_time":"2021-12-15T21:10:49.080Z"},"1.3.485":{"name":"electron-to-chromium","version":"1.3.485","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.452.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4e23d475b23e46c150270b06c93900abc0a9e636","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.485","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ee67ba44fbe0dddc9dd439af532e593f6c8baaa6","size":8918,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.485.tgz","integrity":"sha512-Qclz/MFjp6H1oMd1U1AWCWqT8DW/SaN7lUb6ejh03bD6lBoN2X8W2xhXfsU4rdjf7TWReb0ZOGxo6MjsFiEgzQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.485_1593748949663_0.12355381231111107"},"_hasShrinkwrap":false,"publish_time":1593748949816,"_cnpm_publish_time":1593748949816,"_cnpmcore_publish_time":"2021-12-15T21:10:49.328Z"},"1.3.484":{"name":"electron-to-chromium","version":"1.3.484","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.451.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1eba1c6a9328a3424e4e2429dbeafc3901fe8a3b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.484","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"75f5a1eee5fe3168758b7c2cf375ae73c1ccf5e6","size":8916,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.484.tgz","integrity":"sha512-esh5mmjAGl6HhAaYgHlDZme+jCIc+XIrLrBTwxviE+pM64UBmdLUIHLlrPzJGbit7hQI1TR/oGDQWCvQZ5yrFA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.484_1593662554710_0.8600840285486349"},"_hasShrinkwrap":false,"publish_time":1593662554876,"_cnpm_publish_time":1593662554876,"_cnpmcore_publish_time":"2021-12-15T21:10:49.561Z"},"1.3.483":{"name":"electron-to-chromium","version":"1.3.483","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.450.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a6d26a18ee4226a390c6022d4b0a2ed53850fcf5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.483","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9269e7cfc1c8e72709824da171cbe47ca5e3ca9e","size":8901,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.483.tgz","integrity":"sha512-+05RF8S9rk8S0G8eBCqBRBaRq7+UN3lDs2DAvnG8SBSgQO3hjy0+qt4CmRk5eiuGbTcaicgXfPmBi31a+BD3lg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.483_1593072154134_0.6877893758181852"},"_hasShrinkwrap":false,"publish_time":1593072154279,"_cnpm_publish_time":1593072154279,"_cnpmcore_publish_time":"2021-12-15T21:10:49.734Z"},"1.3.482":{"name":"electron-to-chromium","version":"1.3.482","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.449.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fc587f393f233e51f1568f98a5518d2b9559d49c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.482","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a7bcead342aba2e051305695402bb746ffa836ed","size":8899,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.482.tgz","integrity":"sha512-iRK2JHR6Q3x20Pkl1Rf+gzalOwmVG+PF2J9BHiVOCPotloQmDSG6dT+Vtf2D+3JT3fpzoDNdtHgGuRO6OAUlhQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.482_1593057752975_0.8973151342863446"},"_hasShrinkwrap":false,"publish_time":1593057753097,"_cnpm_publish_time":1593057753097,"_cnpmcore_publish_time":"2021-12-15T21:10:49.957Z"},"1.3.481":{"name":"electron-to-chromium","version":"1.3.481","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.448.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"486eb8f95117cdddd64e21bacfadf67692dc1f64","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.481","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0d59e72a0aaeb876b43fb1d6e84bf0dfc99617e8","size":8889,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.481.tgz","integrity":"sha512-q2PeCP2PQXSYadDo9uNY+uHXjdB9PcsUpCVoGlY8TZOPHGlXdevlqW9PkKeqCxn2QBkGB8b6AcMO++gh8X82bA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.481_1592884953818_0.9349684637043867"},"_hasShrinkwrap":false,"publish_time":1592884954019,"_cnpm_publish_time":1592884954019,"_cnpmcore_publish_time":"2021-12-15T21:10:50.148Z"},"1.3.480":{"name":"electron-to-chromium","version":"1.3.480","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.447.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0b9b1d103b29f55d24ef20e6644eaa9228a01aca","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.480","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"190ae45074578349a4c4f336fba29e76b20e9ef5","size":8880,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.480.tgz","integrity":"sha512-wnuUfQCBMAdzu5Xe+F4FjaRK+6ToG6WvwG72s8k/3E6b+hoGVYGiQE7JD1NhiCMcqF3+wV+c2vAnaLGRSSWVqA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.480_1592640148371_0.5949242230902647"},"_hasShrinkwrap":false,"publish_time":1592640148606,"_cnpm_publish_time":1592640148606,"_cnpmcore_publish_time":"2021-12-15T21:10:50.340Z"},"1.3.479":{"name":"electron-to-chromium","version":"1.3.479","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.446.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4f1c9b10fb89e627338504689557f1b432b63744","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.479","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9f3c4db5be1ba219281f708d3abf47c04830fccf","size":8879,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.479.tgz","integrity":"sha512-yQleB+7Pf5rkSNaFwdYqbLFKc8cbQbKCJrAjS5gMgHYKrvgiK7i5f4nFihkBc0Hc+56ldKqq+WQMXfb+Aj4xOA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.479_1592625754854_0.11032463108017554"},"_hasShrinkwrap":false,"publish_time":1592625755027,"_cnpm_publish_time":1592625755027,"_cnpmcore_publish_time":"2021-12-15T21:10:50.534Z"},"1.3.478":{"name":"electron-to-chromium","version":"1.3.478","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.445.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fa695d1b80aed41bf7051945bf5d1cc81bd79b46","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.478","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"cfa0f2f0d3012463438a3bc81f50f2d109aca450","size":8855,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.478.tgz","integrity":"sha512-pt9GUDD52uEO9ZXWcG4UuW/HwE8T+a8iFP7K2qqWrHB5wUxbbvCIXGBVpQDDQwSR766Nn4AkmLYxOUNd4Ji5Dw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.478_1592539352795_0.2769829051684758"},"_hasShrinkwrap":false,"publish_time":1592539353011,"_cnpm_publish_time":1592539353011,"_cnpmcore_publish_time":"2021-12-15T21:10:50.743Z"},"1.3.477":{"name":"electron-to-chromium","version":"1.3.477","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.444.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9d3b887ac38551a9447bf7333012db05037a7fde","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.477","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7e6b931d0c1a2572101a6e9a835128c50fd49323","size":8855,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.477.tgz","integrity":"sha512-81p6DZ/XmHDD7O0ITJMa7ESo9bSCfE+v3Fny3MIYR0y77xmhoriu2ShNOLXcPS4eowF6dkxw6d2QqxTkS3DjBg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.477_1592467351100_0.6223567435551522"},"_hasShrinkwrap":false,"publish_time":1592467351369,"_cnpm_publish_time":1592467351369,"_cnpmcore_publish_time":"2021-12-15T21:10:50.978Z"},"1.3.476":{"name":"electron-to-chromium","version":"1.3.476","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.444.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3d4cae7efcd7ea971a919540eaf673bb97194930","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.476","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e3f36a239da7fbc5c8419c26409973ad00cc34a3","size":8844,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.476.tgz","integrity":"sha512-oJUEW++zbjB5C0BIAH0ksGH92S/yxPauJ1smD2M9DmEqB4SeU4MmJg6avyDGW+qusBDHoqy+e5Vq+fGhArP9Iw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.476_1592452948532_0.5295698016922761"},"_hasShrinkwrap":false,"publish_time":1592452948762,"_cnpm_publish_time":1592452948762,"_cnpmcore_publish_time":"2021-12-15T21:10:51.169Z"},"1.3.475":{"name":"electron-to-chromium","version":"1.3.475","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.443.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"233c599aa263fbc1c3c1ca52ba227c1b6c0aaf3f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.475","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"67688cc82c342f39594a412286e975eda45d8412","size":8847,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.475.tgz","integrity":"sha512-vcTeLpPm4+ccoYFXnepvkFt0KujdyrBU19KNEO40Pnkhta6mUi2K0Dn7NmpRcNz7BvysnSqeuIYScP003HWuYg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.475_1592366549471_0.9755528972014935"},"_hasShrinkwrap":false,"publish_time":1592366549643,"_cnpm_publish_time":1592366549643,"_cnpmcore_publish_time":"2021-12-15T21:10:51.354Z"},"1.3.474":{"name":"electron-to-chromium","version":"1.3.474","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.442.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3d2ca9513f21fff007a1f76d7475f73dd5916683","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.474","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"161af012e11f96795eade84bf03b8ddc039621b9","size":8845,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.474.tgz","integrity":"sha512-fPkSgT9IBKmVJz02XioNsIpg0WYmkPrvU1lUJblMMJALxyE7/32NGvbJQKKxpNokozPvqfqkuUqVClYsvetcLw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.474_1592280159314_0.7009275295147868"},"_hasShrinkwrap":false,"publish_time":1592280159440,"_cnpm_publish_time":1592280159440,"_cnpmcore_publish_time":"2021-12-15T21:10:51.643Z"},"1.3.473":{"name":"electron-to-chromium","version":"1.3.473","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.1.0","electron-releases":"^3.441.0","nyc":"^15.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"22ef2cab47ac98aa3251d84b1540624dd6f4284d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.473","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d0cd5fe391046fb70674ec98149f0f97609d29b8","size":8805,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.473.tgz","integrity":"sha512-smevlzzMNz3vMz6OLeeCq5HRWEj2AcgccNPYnAx4Usx0IOciq9DU36RJcICcS09hXoY7t7deRfVYKD14IrGb9A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.473_1592064136963_0.10346010364770297"},"_hasShrinkwrap":false,"publish_time":1592064137110,"_cnpm_publish_time":1592064137110,"_cnpmcore_publish_time":"2021-12-15T21:10:51.853Z"},"1.3.472":{"name":"electron-to-chromium","version":"1.3.472","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.441.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bda83df55ffad2fc357e2df07519d682fa325c89","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.472","_nodeVersion":"12.18.0","_npmVersion":"6.14.4","dist":{"shasum":"b56229cf4e73cb0b511d15eb2c3bbdcff22de0af","size":8801,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.472.tgz","integrity":"sha512-mDk+Q3dWiZo/v6x+1/vU/RdbPI5pMuylg9b1Y2qs+DAomAudcSBlAVZsNm6JuEh9JKIR2rg/eWYmxUVBKIbiOg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.472_1592050123734_0.5103926704542607"},"_hasShrinkwrap":false,"publish_time":1592050123893,"_cnpm_publish_time":1592050123893,"_cnpmcore_publish_time":"2021-12-15T21:10:52.044Z"},"1.3.470":{"name":"electron-to-chromium","version":"1.3.470","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.441.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"92af6012e9ca2002da4bfdd03209c2a0558c5dfb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.470","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"07ccfd481b96709f4ac20bb74bccf59705a41ced","size":8766,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.470.tgz","integrity":"sha512-SQzHdpUUmTSiIYwMFZ3P3271VdRxfdHqh2GoBA7sqeaz4SN3UlTA22fC+r9BHu8FpB0oI7f8pAxzm75O/kBc3w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.470_1592020955865_0.650029862566228"},"_hasShrinkwrap":false,"publish_time":1592020955996,"_cnpm_publish_time":1592020955996,"_cnpmcore_publish_time":"2021-12-15T21:10:52.248Z"},"1.3.469":{"name":"electron-to-chromium","version":"1.3.469","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.440.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"61509c21c3c45d5ec365074891a1ebe4757e83fd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.469","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"05a06ec9c915127ed6c9f5b657cd1d7e11a3f944","size":8768,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.469.tgz","integrity":"sha512-O9JM6ZsFhS0uy0S2Y3G8EoNfqio3srdxCuwuJh8tKgQKa6rf7je/xQ3TIoiEaEtpf2/qFFLAGt/xB4MjuUZqRw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.469_1591963350803_0.8374022979393134"},"_hasShrinkwrap":false,"publish_time":1591963351072,"_cnpm_publish_time":1591963351072,"_cnpmcore_publish_time":"2021-12-15T21:10:52.442Z"},"1.3.468":{"name":"electron-to-chromium","version":"1.3.468","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.440.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"21d13976b062faa9083b5a6e89b5c163335a7707","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.468","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7ff3e162e4ca91fd972c67dd51b00e7e421ceba2","size":8765,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.468.tgz","integrity":"sha512-+KAppdklzPd5v8nLOvtDiD/S67mCT9gFRAvngYe8zuFy9azHhT9vWWH6WEPPCcyjQ1JMYVgqbN29yZ0paqxsEw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.468_1591934561152_0.8868519475943915"},"_hasShrinkwrap":false,"publish_time":1591934561273,"_cnpm_publish_time":1591934561273,"_cnpmcore_publish_time":"2021-12-15T21:10:53.008Z"},"1.3.467":{"name":"electron-to-chromium","version":"1.3.467","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.439.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"31070f10229d33187ffce625aa43f762038c877e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.467","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"84eeb332134d49f0e49b88588824e56b20af9e27","size":8763,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.467.tgz","integrity":"sha512-U+QgsL8TZDU/n+rDnYDa3hY5uy3C4iry9mrJS0PNBBGwnocuQ+aHSfgY44mdlaK9744X5YqrrGUvD9PxCLY1HA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.467_1591848160441_0.9574627809013563"},"_hasShrinkwrap":false,"publish_time":1591848160586,"_cnpm_publish_time":1591848160586,"_cnpmcore_publish_time":"2021-12-15T21:10:53.198Z"},"1.3.466":{"name":"electron-to-chromium","version":"1.3.466","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.438.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9c5a81569b83e4f51a2e983d3233c37e4f991433","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.466","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"89f716db3afc4bb482ea2aaaa16c4808f89f762a","size":8759,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.466.tgz","integrity":"sha512-eieqkoM2hCkZZRhETKyCouMziDV3l4XEKHRLuzcHG+HV+P7PeODU/z9HAmBgMQkzvHg2DoyQhfIDmmeguLZT/Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.466_1591761759656_0.4260404037894532"},"_hasShrinkwrap":false,"publish_time":1591761759751,"_cnpm_publish_time":1591761759751,"_cnpmcore_publish_time":"2021-12-15T21:10:53.382Z"},"1.3.465":{"name":"electron-to-chromium","version":"1.3.465","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.437.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6ab8ba8e7ee2a3d32a5e0db004ed1b7a375ecb7d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.465","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d692e5c383317570c2bd82092a24a0308c6ccf29","size":8752,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.465.tgz","integrity":"sha512-K/lUeT3NLAsJ5SHRDhK3/zd0tw7OUllYD8w+fTOXm6ljCPsp2qq+vMzxpLo8u1M27ZjZAjRbsA6rirvne2nAMQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.465_1591646562531_0.4942132733602802"},"_hasShrinkwrap":false,"publish_time":1591646562668,"_cnpm_publish_time":1591646562668,"_cnpmcore_publish_time":"2021-12-15T21:10:53.617Z"},"1.3.464":{"name":"electron-to-chromium","version":"1.3.464","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.436.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4f12143989966b6f1de5964dad37bad64419bf4b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.464","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fe13feaa08f6f865d3c89d5d72e54c194f463aa5","size":8754,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.464.tgz","integrity":"sha512-Oo+0+CN9d2z6FToQW6Hwvi9ez09Y/usKwr0tsDsyg43a871zVJCi1nR0v03djLbRNcaCKjtrnVf2XJhTxEpPCg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.464_1591473758351_0.7552387867737198"},"_hasShrinkwrap":false,"publish_time":1591473758526,"_cnpm_publish_time":1591473758526,"_cnpmcore_publish_time":"2021-12-15T21:10:53.814Z"},"1.3.463":{"name":"electron-to-chromium","version":"1.3.463","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.436.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e7dd8387af92fef2131f9b0afae06ed4d91c5db3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.463","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"bae89d8c2c69b4be32f80221fe49ab5786fab368","size":8741,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.463.tgz","integrity":"sha512-mAqvpG0efJXV9BGXPVjFdBFiqmawGoIc+c8T2uXYEvbV1/261PaOT0EzZ9dKW4IdGiHXQGSKnnOU86QhJ+5JcA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.463_1591416157134_0.26930771151641286"},"_hasShrinkwrap":false,"publish_time":1591416157350,"_cnpm_publish_time":1591416157350,"_cnpmcore_publish_time":"2021-12-15T21:10:54.034Z"},"1.3.462":{"name":"electron-to-chromium","version":"1.3.462","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.435.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1b6acd7ef07a36a1cbce4d3362c511146f4404b0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.462","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"82087404c20ed664963ececab23337ac7a150e21","size":8739,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.462.tgz","integrity":"sha512-HST/xWLOeA0LGUhxBqvcPDDUGHjB6rn99VBgPWmaHv+zqwXgOaZO5RnRcd5owjRE7nh+z1c0SwcK8qP8o7sofg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.462_1591344170590_0.09422370156033888"},"_hasShrinkwrap":false,"publish_time":1591344170793,"_cnpm_publish_time":1591344170793,"_cnpmcore_publish_time":"2021-12-15T21:10:54.276Z"},"1.3.461":{"name":"electron-to-chromium","version":"1.3.461","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.435.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5fc5b3c1798ad6ae95bf728b7329e37b299f92c8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.461","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9e87f8209b2a4918800839ac9a5fb4ff07a2600d","size":8739,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.461.tgz","integrity":"sha512-+mqXoHkp30WofnhiHNuy5KXBeOx6Jtqpgz42F/NHSTk0/GA1g5plDY0Cwy0A31NVs5V3rfskK18gKy6x2rElUw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.461_1591329775112_0.41987100392091814"},"_hasShrinkwrap":false,"publish_time":1591329775230,"_cnpm_publish_time":1591329775230,"_cnpmcore_publish_time":"2021-12-15T21:10:54.475Z"},"1.3.460":{"name":"electron-to-chromium","version":"1.3.460","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.434.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8f439184b7a4924de222795a15fd4e15f95b933e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.460","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"729496dec8d03917b927fa998735796d9fb52964","size":8741,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.460.tgz","integrity":"sha512-9nOPN0KoGUim2cDV2I1JWoWnxfC9o8z0ictsPnpNPhJD8NVZVW8DDacyrmIobwgY6Xaxn0TgVuUYXXmov8mPGg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.460_1591300955553_0.37253591034429556"},"_hasShrinkwrap":false,"publish_time":1591300955682,"_cnpm_publish_time":1591300955682,"_cnpmcore_publish_time":"2021-12-15T21:10:54.745Z"},"1.3.459":{"name":"electron-to-chromium","version":"1.3.459","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.434.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f6ff0298d921c12c1d2175ea78eb914189f25121","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.459","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"49a43d78f60b5bf42312b636f3af43c695e0c652","size":8728,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.459.tgz","integrity":"sha512-aN3Z89qEYIwVjzGi9SrcTjjopRZ3STUA6xTufS0fxZy8xOO2iqVw8rYKdT32CHgOKHOYj5KGmz3n6xUKE4QJiQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.459_1591243354036_0.10621076103155569"},"_hasShrinkwrap":false,"publish_time":1591243354169,"_cnpm_publish_time":1591243354169,"_cnpmcore_publish_time":"2021-12-15T21:10:54.976Z"},"1.3.458":{"name":"electron-to-chromium","version":"1.3.458","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.433.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d1b0a3124543cdbf796cb2665d299a6b78875642","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.458","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"4ef179f9a0f1d8a658180c09b21bf73edddfc5eb","size":8728,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.458.tgz","integrity":"sha512-OjRkb0igW0oKE2QbzS7vBYrm7xjW/KRTtIj0OGGx57jr/YhBiKb7oZvdbaojqjfCb/7LbnwsbMbdsYjthdJbAw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.458_1591156968548_0.07418301172459918"},"_hasShrinkwrap":false,"publish_time":1591156968795,"_cnpm_publish_time":1591156968795,"_cnpmcore_publish_time":"2021-12-15T21:10:55.413Z"},"1.3.457":{"name":"electron-to-chromium","version":"1.3.457","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.432.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5ea2ddf7aecf9c55b134eec0e634faf4bad5de4f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.457","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f5662ce9f940df446a01ba27c739c83099631f1b","size":8704,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.457.tgz","integrity":"sha512-sirUGpEXQ91HpWByW1Q9XMeL/0RQHS8AhNdkYSlfS184i6ukHO12wiJECyVKnDqTt/YuETQX4C6VOrCGGDmlOA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.457_1591128172711_0.5943848434559444"},"_hasShrinkwrap":false,"publish_time":1591128172864,"_cnpm_publish_time":1591128172864,"_cnpmcore_publish_time":"2021-12-15T21:10:55.650Z"},"1.3.456":{"name":"electron-to-chromium","version":"1.3.456","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.432.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6709f05d9381b522c972de95d8ff2a8cb5277c3e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.456","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"5125bce136b04a8e39473696509e83038f679cbd","size":8677,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.456.tgz","integrity":"sha512-jaVZ9+8HG2qvEN7c9r5EVguvhtevITJou4L10XuqoiZUoXIMF5qLG1pB9raP3WFcME4exDZRq1b6qyCA+u5Vew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.456_1591070557176_0.17306807831410742"},"_hasShrinkwrap":false,"publish_time":1591070557427,"_cnpm_publish_time":1591070557427,"_cnpmcore_publish_time":"2021-12-15T21:10:55.874Z"},"1.3.455":{"name":"electron-to-chromium","version":"1.3.455","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.431.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"19f1aa4c60f2f262e06c26a85bf8bb063fd76628","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.455","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fd65a3f5db6ffa83eb7c84f16ea9b1b7396f537d","size":8675,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.455.tgz","integrity":"sha512-4lwnxp+ArqOX9hiLwLpwhfqvwzUHFuDgLz4NTiU3lhygUzWtocIJ/5Vix+mWVNE2HQ9aI1k2ncGe5H/0OktMvA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.455_1590840156195_0.5848159366473014"},"_hasShrinkwrap":false,"publish_time":1590840156326,"_cnpm_publish_time":1590840156326,"_cnpmcore_publish_time":"2021-12-15T21:10:56.181Z"},"1.3.454":{"name":"electron-to-chromium","version":"1.3.454","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.431.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ce38c1fc83ace9c7b42b4aa43868dd682c876232","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.454","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9bf7db2cfa90b48a64a1f13111d667bacfcae618","size":8633,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.454.tgz","integrity":"sha512-2ODSCBwHsdB8T6csLaAbXIMYtrhu8oN1c5gS+/C2OqdfF35aXhDsnu8p+d7crbOpVXZnUza8I/Xl31mzkfnxGg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.454_1590811355911_0.09416116935895413"},"_hasShrinkwrap":false,"publish_time":1590811356104,"_cnpm_publish_time":1590811356104,"_cnpmcore_publish_time":"2021-12-15T21:10:56.369Z"},"1.3.453":{"name":"electron-to-chromium","version":"1.3.453","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.430.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ac3cb57103e8b3a6f5e0a8cb71594a255acc9fe6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.453","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"758a8565a64b7889b27132a51d2abb8b135c9d01","size":8635,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.453.tgz","integrity":"sha512-IQbCfjJR0NDDn/+vojTlq7fPSREcALtF8M1n01gw7nQghCtfFYrJ2dfhsp8APr8bANoFC8vRTFVXMOGpT0eetw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.453_1590552155633_0.9058497825485075"},"_hasShrinkwrap":false,"publish_time":1590552155773,"_cnpm_publish_time":1590552155773,"_cnpmcore_publish_time":"2021-12-15T21:10:56.592Z"},"1.3.452":{"name":"electron-to-chromium","version":"1.3.452","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.429.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8cdf8abf1c85fac11d53f86ec811e363be859328","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.452","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ef6877702722471aa044a2429336cd450629934d","size":8635,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.452.tgz","integrity":"sha512-IdbjgCEqDvcU/1kUQa6C49I2NZOY3SBmU9Eus7mdFdJJBqn0Lg1Epfi/T4nqVcxTNBEGhcjwMhY1EysMBsXZrw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.452_1590465755133_0.08519661622797292"},"_hasShrinkwrap":false,"publish_time":1590465755226,"_cnpm_publish_time":1590465755226,"_cnpmcore_publish_time":"2021-12-15T21:10:56.796Z"},"1.3.451":{"name":"electron-to-chromium","version":"1.3.451","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.428.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ee66824dcc1da8d3f7141a9faf6ffdf7e6865e11","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.451","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0c075af3e2f06d706670bde0279432802ca8c83f","size":8635,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.451.tgz","integrity":"sha512-2fvco0F2bBIgqzO8GRP0Jt/91pdrf9KfZ5FsmkYkjERmIJG585cFeFZV4+CO6oTmU3HmCTgfcZuEa7kW8VUh3A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.451_1590148965219_0.9541030498265219"},"_hasShrinkwrap":false,"publish_time":1590148965356,"_cnpm_publish_time":1590148965356,"_cnpmcore_publish_time":"2021-12-15T21:10:56.992Z"},"1.3.450":{"name":"electron-to-chromium","version":"1.3.450","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.428.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dbef1ff95fc96903d706574418bad5edb3649269","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.450","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ce783bbea201902e33d95cb776be6d8f4e9825e5","size":8603,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.450.tgz","integrity":"sha512-m6iTlzM12aBf0W8E+Lhj8tUsO5bsYXzGkQ7x4VEqLLwziFN5uecajjOKJaIR25xrHYwnwHteHy1yzJ+mN6QTWA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.450_1590134554153_0.637301631148574"},"_hasShrinkwrap":false,"publish_time":1590134554266,"_cnpm_publish_time":1590134554266,"_cnpmcore_publish_time":"2021-12-15T21:10:57.181Z"},"1.3.449":{"name":"electron-to-chromium","version":"1.3.449","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.427.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d2ac5841fbd54765a2461a832fa059b8390498af","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.449","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a9cc945eba23cb484c4511a2dd50bd765d4b6b61","size":8604,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.449.tgz","integrity":"sha512-TZ+zHInrMiKC3bxIcR5QPZOozAFv0iwuuBir7k9cZSbZPI2JZq7PZYSSQSwh02cBIjj7bYWmYFvN6/l4P4sXBQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.449_1590120155401_0.9558814709586365"},"_hasShrinkwrap":false,"publish_time":1590120155602,"_cnpm_publish_time":1590120155602,"_cnpmcore_publish_time":"2021-12-15T21:10:57.440Z"},"1.3.448":{"name":"electron-to-chromium","version":"1.3.448","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.426.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1b8b84fc992b1f5315f5a96ce9a7250466b730ff","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.448","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"682831ecf3ce505231978f7c795a2813740cae7c","size":8600,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.448.tgz","integrity":"sha512-WOr3SrZ55lUFYugA6sUu3H3ZoxVIH5o3zTSqYS+2DOJJP4hnHmBiD1w432a2YFW/H2G5FIxE6DB06rv+9dUL5g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.448_1590033755138_0.24535127197202589"},"_hasShrinkwrap":false,"publish_time":1590033755274,"_cnpm_publish_time":1590033755274,"_cnpmcore_publish_time":"2021-12-15T21:10:57.681Z"},"1.3.447":{"name":"electron-to-chromium","version":"1.3.447","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.425.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1231132864c257222200075113b812e972687472","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.447","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"48372c3eaaf6daccad4f8fa598bdcc455dfe5ff1","size":8604,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.447.tgz","integrity":"sha512-aXQTgDBUfSejZkwrFIQZ/jJOOevQE9ROsvIs4aSib+l4FknL4qUxGWjCySu4msJFHwVKo9fkX+8bIGSHQp/vTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.447_1590004955257_0.9818664222165083"},"_hasShrinkwrap":false,"publish_time":1590004955374,"_cnpm_publish_time":1590004955374,"_cnpmcore_publish_time":"2021-12-15T21:10:57.878Z"},"1.3.446":{"name":"electron-to-chromium","version":"1.3.446","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.424.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b67acd167ccb47d8e621551ebd19712c7aa32318","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.446","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"12c336bc858e04d6b614a488f32f2dd89561601f","size":8604,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.446.tgz","integrity":"sha512-CLQaFuvkKqR9FD2G3cJrr1fV7DRMXiAKWLP2F8cxtvvtzAS7Tubt0kF47/m+uE61kiT+I7ZEn7HqLnmWdOhmuA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.446_1589947355185_0.05385151682464251"},"_hasShrinkwrap":false,"publish_time":1589947355321,"_cnpm_publish_time":1589947355321,"_cnpmcore_publish_time":"2021-12-15T21:10:58.066Z"},"1.3.445":{"name":"electron-to-chromium","version":"1.3.445","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.423.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a50a42fcd0ea7858f66b3b5664d30cf8286c7916","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.445","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ce2a2989864d233eeb80437b13069dbca900cd00","size":8603,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.445.tgz","integrity":"sha512-utucmBYnRyjO3GCsgn7vwTJyDWIyftZW5vuGoxHj2Mnt6yF/alOq1ZGqBGNVZs/vKvgfNZu56y5xpn37i3n0ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.445_1589918557498_0.0719483448136018"},"_hasShrinkwrap":false,"publish_time":1589918557633,"_cnpm_publish_time":1589918557633,"_cnpmcore_publish_time":"2021-12-15T21:10:58.286Z"},"1.3.444":{"name":"electron-to-chromium","version":"1.3.444","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.422.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3733718bca39515a9718ad786bbf64783e33447b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.444","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d1010f69eecd06595d12f1ceff05f4b66f36c29a","size":8601,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.444.tgz","integrity":"sha512-FtEGg/wRKT765QehmpRqMDaUbRam03Y3brE+6nUfoxCr9XgyEl+zAgN4+EraOJeyTGTGh27u7Mdx5Hl9qAhJPQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.444_1589904154166_0.9907519280745039"},"_hasShrinkwrap":false,"publish_time":1589904154303,"_cnpm_publish_time":1589904154303,"_cnpmcore_publish_time":"2021-12-15T21:10:58.487Z"},"1.3.443":{"name":"electron-to-chromium","version":"1.3.443","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.422.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e1561a523d6cf5eed9d0a879a8d2b12dc764a1b6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.443","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b01c8933e820a728afc5dde7dd535c53ff55ab11","size":8572,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.443.tgz","integrity":"sha512-ty0LEroTap/xfMy31oQ3XX+Q377QvWvJaha2cmuXcbmBiX2EIB5SNDQ0hp8lhvxj63WG0zOgm/4MQ/oUBdfQqg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.443_1589875357427_0.955147813840793"},"_hasShrinkwrap":false,"publish_time":1589875357522,"_cnpm_publish_time":1589875357522,"_cnpmcore_publish_time":"2021-12-15T21:10:58.680Z"},"1.3.442":{"name":"electron-to-chromium","version":"1.3.442","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.421.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ebb48001bb60af36e1d334e93f5222ce36eab3cb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.442","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"62f96e0529f40a214a97411b57f27c4f080f0aa2","size":8571,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.442.tgz","integrity":"sha512-3OjmbnD9+LyWzh9o3rjC7LNIkcDHjKyHM6Xt0G/+7gHGCaEIwvWYi8TrNA8feNnuGmvI9WKu289PFMQGMLHAig=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.442_1589860953119_0.4558176356164556"},"_hasShrinkwrap":false,"publish_time":1589860953241,"_cnpm_publish_time":1589860953241,"_cnpmcore_publish_time":"2021-12-15T21:10:58.940Z"},"1.3.441":{"name":"electron-to-chromium","version":"1.3.441","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.420.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"28c7d1ec1f68f03d9671e74471bd1967d5b8033e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.441","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"094f71b992dca5bc96b798cfbaf37dc76302015a","size":8573,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.441.tgz","integrity":"sha512-leBfJwLuyGs1jEei2QioI+PjVMavmUIvPYidE8dCCYWLAq0uefhN3NYgDNb8WxD3uiUNnJ3ScMXg0upSlwySzQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.441_1589601761965_0.8677982995211047"},"_hasShrinkwrap":false,"publish_time":1589601762225,"_cnpm_publish_time":1589601762225,"_cnpmcore_publish_time":"2021-12-15T21:10:59.141Z"},"1.3.440":{"name":"electron-to-chromium","version":"1.3.440","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.419.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fb6b79416646e6fe833b26af6b1b5a310c06e332","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.440","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"acb0c54601041be819ddb9d5bc8a9cdd178eee96","size":8568,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.440.tgz","integrity":"sha512-u9bpcu+utUAINuWs0wePodhJTfD5mGcl56lUcTExdObJp6FvE/XlrawuhTf2WRMt8SXGet8IpKbrMGg2pC/FWQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.440_1589572952963_0.3984300846409128"},"_hasShrinkwrap":false,"publish_time":1589572953166,"_cnpm_publish_time":1589572953166,"_cnpmcore_publish_time":"2021-12-15T21:10:59.359Z"},"1.3.438":{"name":"electron-to-chromium","version":"1.3.438","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.418.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"557fb8adaebe27b7ba0a36090a1f69d89051032e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.438","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"56051a9b148842fec813b113e8070ae892a85920","size":8540,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.438.tgz","integrity":"sha512-QKMcpfA/fCOnqFHsZvKr2haQQb3eXkDI17zT+4hHxJJThyN5nShcG6q1VR8vRiE/2GCJM+0p3PzinYknkdsBYg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.438_1589515358182_0.03765300753366496"},"_hasShrinkwrap":false,"publish_time":1589515358462,"_cnpm_publish_time":1589515358462,"_cnpmcore_publish_time":"2021-12-15T21:10:59.551Z"},"1.3.437":{"name":"electron-to-chromium","version":"1.3.437","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.417.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"18a916d0563c8ab8f2b0471596a736f6705f61c0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.437","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"110f1cd407e5d09b43d5585e5f237b71063412cf","size":8540,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.437.tgz","integrity":"sha512-PBQn2q68ErqMyBUABh9Gh8R6DunGky8aB5y3N5lPM7OVpldwyUbAK5AX9WcwE/5F6ceqvQ+iQLYkJYRysAs6Bg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.437_1589428961633_0.5161834718904044"},"_hasShrinkwrap":false,"publish_time":1589428961761,"_cnpm_publish_time":1589428961761,"_cnpmcore_publish_time":"2021-12-15T21:10:59.773Z"},"1.3.436":{"name":"electron-to-chromium","version":"1.3.436","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.416.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3ec16e85eafc8ea55947756a041cd998e7aed106","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.436","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d50715d8c2a75c9a3d2e77a1c3a28072580aaba2","size":8535,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.436.tgz","integrity":"sha512-qE378nzCj/E680nApDh8ctJ3gY8k58xIRCBbQC9S6i3OCRlwnTzTBVGXWDh37RZYgIYyFR0n6X14xlND1EkezQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.436_1589400153033_0.7078324571547796"},"_hasShrinkwrap":false,"publish_time":1589400153152,"_cnpm_publish_time":1589400153152,"_cnpmcore_publish_time":"2021-12-15T21:10:59.952Z"},"1.3.435":{"name":"electron-to-chromium","version":"1.3.435","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.416.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f529c648d531535e09bebcd9e9b48aac35b8a8c5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.435","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"22a7008e8f5a317a6d2d80802bddacebb19ae025","size":8527,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.435.tgz","integrity":"sha512-BVXnq+NCefidU7GOFPx4CPBfPcccLCRBKZYSbvBJMSn2kwGD7ML+eUA9tqfHAumRqy3oX5zaeTI1Bpt7qVat0Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.435_1589342557737_0.0810933374266567"},"_hasShrinkwrap":false,"publish_time":1589342557848,"_cnpm_publish_time":1589342557848,"_cnpmcore_publish_time":"2021-12-15T21:11:00.181Z"},"1.3.434":{"name":"electron-to-chromium","version":"1.3.434","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.415.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7cadd706c9b07bdbb60dc85a370776b5bc15f399","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.434","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a67dcb268e93768e2169399999ccffa4783f048e","size":8531,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.434.tgz","integrity":"sha512-WjzGrE6appXvMyc2kH9Ide7OxsgTuRzag9sjQ5AcbOnbS9ut7P1HzOeEbJFLhr81IR7n2Hlr6qTTSGTXLIX5Pg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.434_1589284953865_0.8836586009198881"},"_hasShrinkwrap":false,"publish_time":1589284953987,"_cnpm_publish_time":1589284953987,"_cnpmcore_publish_time":"2021-12-15T21:11:00.416Z"},"1.3.433":{"name":"electron-to-chromium","version":"1.3.433","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.415.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f0edc516c068d1811d4b4b652c5a4a228dc77645","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.433","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"5e7da22eb852955f6b157596bdd89bee0fd5c73a","size":8513,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.433.tgz","integrity":"sha512-C0gcgwB8RpPAq2Ia6teihNOHOfNzGy4jJXgjIXSmKdt6O2xrJM8CPjA8jTFyo97KozVrZ8oH2FUCixC6Hnuk2g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.433_1589256165904_0.24983344320716516"},"_hasShrinkwrap":false,"publish_time":1589256166138,"_cnpm_publish_time":1589256166138,"_cnpmcore_publish_time":"2021-12-15T21:11:00.651Z"},"1.3.432":{"name":"electron-to-chromium","version":"1.3.432","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.414.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b4813e79cee6122fd4aa951f9c5cdbe4ac79384f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.432","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"3bf7b191978ff2e8bc3caf811bb52b1e9f9eab25","size":8513,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz","integrity":"sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.432_1588996966002_0.01978004548134016"},"_hasShrinkwrap":false,"publish_time":1588996966176,"_cnpm_publish_time":1588996966176,"_cnpmcore_publish_time":"2021-12-15T21:11:01.271Z"},"1.3.431":{"name":"electron-to-chromium","version":"1.3.431","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.413.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5904db43378f987832d9528f2d0609833c893504","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.431","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"705dd8ef46200415ba837b31d927cdc1e43db303","size":8505,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz","integrity":"sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.431_1588910564795_0.37500534833992716"},"_hasShrinkwrap":false,"publish_time":1588910564958,"_cnpm_publish_time":1588910564958,"_cnpmcore_publish_time":"2021-12-15T21:11:01.502Z"},"1.3.430":{"name":"electron-to-chromium","version":"1.3.430","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.412.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3b1db9dd0a7d0a64a950ae624a0ee8dc52f28114","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.430","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"33914f7c2db771bdcf30977bd4fd6258ee8a2f37","size":8490,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.430.tgz","integrity":"sha512-HMDYkANGhx6vfbqpOf/hc6hWEmiOipOHGDeRDeUb3HLD3XIWpvKQxFgWf0tgHcr3aNv6I/8VPecplqmQsXoZSw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.430_1588824164342_0.3737278081441169"},"_hasShrinkwrap":false,"publish_time":1588824164449,"_cnpm_publish_time":1588824164449,"_cnpmcore_publish_time":"2021-12-15T21:11:01.765Z"},"1.3.429":{"name":"electron-to-chromium","version":"1.3.429","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.411.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dc158230cc815e1fe9bea0513b3896569bbfaf92","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.429","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0d1ef6710ba84de3710615280c1f6f79c8205b47","size":8484,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.429.tgz","integrity":"sha512-YW8rXMJx33FalISp0uP0+AkvBx9gfzzQ4NotblGga6Z8ZX00bg2e5FNWV8fyDD/VN3WLhEtjFXNwzdJrdaAHEQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.429_1588737764133_0.8254377471457657"},"_hasShrinkwrap":false,"publish_time":1588737764244,"_cnpm_publish_time":1588737764244,"_cnpmcore_publish_time":"2021-12-15T21:11:01.960Z"},"1.3.428":{"name":"electron-to-chromium","version":"1.3.428","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.410.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0c33ad1a67fbc18febe2f65bbba93de0b2b85a55","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.428","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9afec8766dbe3cab825817f77e3ed0e63467b71a","size":8469,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.428.tgz","integrity":"sha512-u3+5jEfgLKq/hGO96YfAoOAM1tgFnRDTCD5mLuev44tttcXix+INtVegAkmGzUcfDsnzkPt51XXurXZLLwXt0w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.428_1588665768565_0.17481906678411274"},"_hasShrinkwrap":false,"publish_time":1588665768751,"_cnpm_publish_time":1588665768751,"_cnpmcore_publish_time":"2021-12-15T21:11:02.212Z"},"1.3.427":{"name":"electron-to-chromium","version":"1.3.427","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.409.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"daadeafe6c543142425729f8c1fa5f21d5b56be4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.427","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ea43d02908a8c71f47ebb46e09de5a3cf8236f04","size":8462,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.427.tgz","integrity":"sha512-/rG5G7Opcw68/Yrb4qYkz07h3bESVRJjUl4X/FrKLXzoUJleKm6D7K7rTTz8V5LUWnd+BbTOyxJX2XprRqHD8A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.427_1588392162873_0.647057443646512"},"_hasShrinkwrap":false,"publish_time":1588392162989,"_cnpm_publish_time":1588392162989,"_cnpmcore_publish_time":"2021-12-15T21:11:02.452Z"},"1.3.426":{"name":"electron-to-chromium","version":"1.3.426","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.408.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fd9294d793fbdd105543b5562d541c94a7bddbfd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.426","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d7301de9e40df83a40fe1f51b4463cfe170d1153","size":8451,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.426.tgz","integrity":"sha512-sdQ7CXQbFflKY5CU63ra+kIYq9F7d1OqI33856qJZxTrwo0sLASdmoRl9lWpGrQDS9Nk/RFliQWd3PPDrZ+Meg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.426_1588305760982_0.12195646693267803"},"_hasShrinkwrap":false,"publish_time":1588305761152,"_cnpm_publish_time":1588305761152,"_cnpmcore_publish_time":"2021-12-15T21:11:02.708Z"},"1.3.425":{"name":"electron-to-chromium","version":"1.3.425","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.407.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3c2c9a77fa921235aa167e89e6b38f9c45c691ef","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.425","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"96b7b5aa9115e42baf59be88d2432c9f406128c4","size":8427,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.425.tgz","integrity":"sha512-JTEOWiqCY4snuKuQAaFy0z6LK2Gdb8Lojkd/csQwpNHgMUF8I6QRjGVKk44IH46dHQhUFKzr4o6zxZrtDBjc2Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.425_1588248159431_0.5008096215993731"},"_hasShrinkwrap":false,"publish_time":1588248159615,"_cnpm_publish_time":1588248159615,"_cnpmcore_publish_time":"2021-12-15T21:11:03.212Z"},"1.3.424":{"name":"electron-to-chromium","version":"1.3.424","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.407.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7377ab32207d9d088f2bfe95ebdd8eeabad5ccf5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.424","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"29bf66325521209180829e8c8b5164deaf0f86b8","size":8417,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.424.tgz","integrity":"sha512-h8apsMr1RK3OusH8iwxlJ7TZkpgWfg2HvTXZ3o1w9R/SeRKX0hEGMQmRyTWijZAloHfmfwTLaPurVqKWdFC5dw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.424_1588219359919_0.8364142360148847"},"_hasShrinkwrap":false,"publish_time":1588219360067,"_cnpm_publish_time":1588219360067,"_cnpmcore_publish_time":"2021-12-15T21:11:03.455Z"},"1.3.423":{"name":"electron-to-chromium","version":"1.3.423","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.406.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"952b557c31eb9f84f701511a4e4b3ac3335bd69c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.423","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"1dcc9e54d642dd9b354c6609848abf8ba7b2570f","size":8419,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.423.tgz","integrity":"sha512-jXdnLcawJ/EMdN+j77TC3YyeAWiIjo1U63DFCKrjtLv4cu8ToyoF4HYXtFvkVVHhEtIl7lU1uDd307Xj1/YDjw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.423_1588147359903_0.3930436434994087"},"_hasShrinkwrap":false,"publish_time":1588147360230,"_cnpm_publish_time":1588147360230,"_cnpmcore_publish_time":"2021-12-15T21:11:03.900Z"},"1.3.422":{"name":"electron-to-chromium","version":"1.3.422","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.406.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1aff726b1552ea9a9a45b92e2be51ef20ab74278","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.422","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"5ed0ffa8796e14d5bd4a709505605c2bb4b5add0","size":8414,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.422.tgz","integrity":"sha512-8HXl8Mje9nkNjZdFsRcoFkM7hXzQ3cMSxF+lx85CUg5j9lQvuYsKh5Ku5WnduxUvweZToMviOrplOQ9vzkdz2w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.422_1588132959934_0.8775460968827304"},"_hasShrinkwrap":false,"publish_time":1588132960217,"_cnpm_publish_time":1588132960217,"_cnpmcore_publish_time":"2021-12-15T21:11:04.095Z"},"1.3.421":{"name":"electron-to-chromium","version":"1.3.421","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.405.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7ca607371f5322ec5f0afa9b787047c9995801e0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.421","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"4abfe7e49070b5b437ec2ce442543add8eb66800","size":8412,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.421.tgz","integrity":"sha512-ogxgmvHGfDuLA+GtgfK0jkFWlBb4MCZK2U1MM+l98sf4U3Ixtrfw1iC9w4mQqNvo+lHgM4pR62TqoT4QrvKJCw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.421_1588089817413_0.7106348301336098"},"_hasShrinkwrap":false,"publish_time":1588089817520,"_cnpm_publish_time":1588089817520,"_cnpmcore_publish_time":"2021-12-15T21:11:04.309Z"},"1.3.420":{"name":"electron-to-chromium","version":"1.3.420","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.404.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9962bef4025d119cf2a5f7266377aa374d56b89e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.420","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e95b731f475433d29d2835a200dab413e45ba819","size":8412,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.420.tgz","integrity":"sha512-iVmQhf25F+5bdAyDrfOmCMjyLlIwsr9UT/LyYPQ3J1Vrypr9IgHf2PxqlsnzicnRAYDev6S9cl1tYlDHZUHY/g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.420_1588060978508_0.5596532190906589"},"_hasShrinkwrap":false,"publish_time":1588060978685,"_cnpm_publish_time":1588060978685,"_cnpmcore_publish_time":"2021-12-15T21:11:04.519Z"},"1.3.419":{"name":"electron-to-chromium","version":"1.3.419","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.403.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f3c68a9f72c7f7b79ea93f5040404c6ecee34d00","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.419","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"51eaf2efa8a7d548d439e22ea0c0fddb01f574e5","size":8372,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.419.tgz","integrity":"sha512-tDHMDYMjIGEY7sPAP8W3rmeZzlGm1H8/sc6j8gKKaQCyBw87FZ7SvQpfKKtBu3wnGOgw3+niPPISarvItnMlIQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.419_1588046560694_0.3576633517982455"},"_hasShrinkwrap":false,"publish_time":1588046560836,"_cnpm_publish_time":1588046560836,"_cnpmcore_publish_time":"2021-12-15T21:11:05.117Z"},"1.3.418":{"name":"electron-to-chromium","version":"1.3.418","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.402.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"feeeabbfe55cdd95b83781e5294f4357204fc394","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.418","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"840021191f466b803a873e154113620c9f53cec6","size":8372,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.418.tgz","integrity":"sha512-i2QrQtHes5fK/F9QGG5XacM5WKEuR322fxTYF9e8O9Gu0mc0WmjjwGpV8c7Htso6Zf2Di18lc3SIPxmMeRFBug=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.418_1587787355058_0.3348753785268477"},"_hasShrinkwrap":false,"publish_time":1587787355181,"_cnpm_publish_time":1587787355181,"_cnpmcore_publish_time":"2021-12-15T21:11:05.376Z"},"1.3.417":{"name":"electron-to-chromium","version":"1.3.417","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.401.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9355e0ef68be32177567070d4217a3fb1e0671c1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.417","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7663efb1e81911d56be8f39d12cdc63b86011ee1","size":8371,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.417.tgz","integrity":"sha512-IMNamkpoT3lVSHC16QPx3lbLt/WBuoPtAmMGLbVVJTwKR/rjohP+Y+j4xHSSgvylICvT5HOnnPha+uJMqwmUWg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.417_1587758558326_0.4815065720405063"},"_hasShrinkwrap":false,"publish_time":1587758558425,"_cnpm_publish_time":1587758558425,"_cnpmcore_publish_time":"2021-12-15T21:11:05.592Z"},"1.3.416":{"name":"electron-to-chromium","version":"1.3.416","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.401.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8abd63b9089a0c51d569151fd201a8040c977006","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.416","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6c530159670de9250a2ba7d8f07ddd9c42b7da26","size":8351,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.416.tgz","integrity":"sha512-fmSrpOQC1dEXzsznzAMXbhQLkpAr21WtaUfRXnIbh8kblZIaMwSL6A8u2RZHAzZliSoSOM3FzS2z/j8tVqrAAw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.416_1587700957088_0.9784165308726152"},"_hasShrinkwrap":false,"publish_time":1587700957218,"_cnpm_publish_time":1587700957218,"_cnpmcore_publish_time":"2021-12-15T21:11:05.853Z"},"1.3.415":{"name":"electron-to-chromium","version":"1.3.415","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.400.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2ccb04cef22e7e472e8b6ce82450e13b95c7f1a0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.415","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e50241c1e2553e46cfe956c9d95f9ab3fc9a9134","size":8352,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.415.tgz","integrity":"sha512-GbtYqKffx3sU8G0HxwXuJFfs58Q7+iwLa5rBwaULwET6jWW8IAQSrVnu7vEfiUIcMVfbYyFg7cw3zdm+EbBJmw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.415_1587614567169_0.19550317074517753"},"_hasShrinkwrap":false,"publish_time":1587614567367,"_cnpm_publish_time":1587614567367,"_cnpmcore_publish_time":"2021-12-15T21:11:06.093Z"},"1.3.414":{"name":"electron-to-chromium","version":"1.3.414","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.399.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a15a0e2d1abad121746daab1fb774b87fd28fdb2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.414","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9d0a92defefda7cc1cf8895058b892795ddd6b41","size":8342,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.414.tgz","integrity":"sha512-UfxhIvED++qLwWrAq9uYVcqF8FdeV9sU2S7qhiHYFODxzXRrd1GZRl/PjITHsTEejgibcWDraD8TQqoHb1aCBQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.414_1587441768725_0.5179947412708341"},"_hasShrinkwrap":false,"publish_time":1587441768898,"_cnpm_publish_time":1587441768898,"_cnpmcore_publish_time":"2021-12-15T21:11:06.292Z"},"1.3.413":{"name":"electron-to-chromium","version":"1.3.413","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.398.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"40e30fe50c605bc9d0a46afe9e930df706351112","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.413","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9c457a4165c7b42e59d66dff841063eb9bfe5614","size":8325,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.413.tgz","integrity":"sha512-Jm1Rrd3siqYHO3jftZwDljL2LYQafj3Kki5r+udqE58d0i91SkjItVJ5RwlJn9yko8i7MOcoidVKjQlgSdd1hg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.413_1587182564701_0.39184731465495126"},"_hasShrinkwrap":false,"publish_time":1587182564910,"_cnpm_publish_time":1587182564910,"_cnpmcore_publish_time":"2021-12-15T21:11:06.499Z"},"1.3.412":{"name":"electron-to-chromium","version":"1.3.412","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.397.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c8e01becb192823dcd29724ed991cb79701b80ee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.412","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"da0475c653b48e5935f300aa9c875377bf8ddcf9","size":8324,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.412.tgz","integrity":"sha512-4bVdSeJScR8fT7ERveLWbxemY5uXEHVseqMRyORosiKcTUSGtVwBkV8uLjXCqoFLeImA57Z9hbz3TOid01U4Hw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.412_1587110566070_0.03692550552967799"},"_hasShrinkwrap":false,"publish_time":1587110566212,"_cnpm_publish_time":1587110566212,"_cnpmcore_publish_time":"2021-12-15T21:11:06.724Z"},"1.3.411":{"name":"electron-to-chromium","version":"1.3.411","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.396.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0c69b7e1df2debb4998578c56f50d5fc831359a7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.411","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"203a24482ac39b039cca0090f9ec05d79074f76d","size":8311,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.411.tgz","integrity":"sha512-TDDfkuSYEbknN0kRPSAD8WzB452pJ6EmIxGbI9yQHkDxUNbD6Educ10DxyA9r/DuLL4z255IO1OZIw+eFK6XUw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.411_1587096165233_0.17180386382799373"},"_hasShrinkwrap":false,"publish_time":1587096165446,"_cnpm_publish_time":1587096165446,"_cnpmcore_publish_time":"2021-12-15T21:11:06.974Z"},"1.3.410":{"name":"electron-to-chromium","version":"1.3.410","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.395.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0e412aa0fa67bcd4eb499940a23c4604d409aaa7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.410","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"00e0ec61c22933daa8b4de172c03932678783adc","size":8296,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.410.tgz","integrity":"sha512-DbCBdwtARI0l3e3m6ZIxVaTNahb6dSsmGjuag/twiVcWuM4MSpL5IfsJsJSyqLqxosE/m0CXlZaBmxegQW/dAg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.410_1587038555971_0.35891870423793537"},"_hasShrinkwrap":false,"publish_time":1587038556172,"_cnpm_publish_time":1587038556172,"_cnpmcore_publish_time":"2021-12-15T21:11:07.224Z"},"1.3.409":{"name":"electron-to-chromium","version":"1.3.409","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.395.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"080fdc2d7b4425e892494083f4ddc3b4cb2164e6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.409","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"c9a4380ff0ad3e26cd1b4b4cef800d17c46aec7e","size":8283,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.409.tgz","integrity":"sha512-CB2HUXiMsaVYY5VvcpELhDShiTRhI2FfN7CuacEZ5mDmMFuSG/ZVm8HoSya0+S61RvUd3TjIjFSKywqHZpRPzQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.409_1587009760735_0.06563809876022186"},"_hasShrinkwrap":false,"publish_time":1587009760893,"_cnpm_publish_time":1587009760893,"_cnpmcore_publish_time":"2021-12-15T21:11:07.457Z"},"1.3.408":{"name":"electron-to-chromium","version":"1.3.408","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.394.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"225f473874dcc4c289bb1f8d926f27ed9600b7ca","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.408","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e6a3a2b8f87c875dfd6e16501abe7a28f079bbb3","size":8282,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.408.tgz","integrity":"sha512-vn1zWIxIdyl0MR72lr81/7kHYTRlDRjJT4ocp8dtb85VhH46J3lNqDMEBljAKPKgguqjK0+WAbf3IL6ZKw72kQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.408_1586952160187_0.8533336322715479"},"_hasShrinkwrap":false,"publish_time":1586952160365,"_cnpm_publish_time":1586952160365,"_cnpmcore_publish_time":"2021-12-15T21:11:07.648Z"},"1.3.407":{"name":"electron-to-chromium","version":"1.3.407","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.394.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"71320ef268a433589bfa1eb9284ab3f98f8ff962","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.407","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"361dbfc92a3d1b0b097b77221256271967e04c0e","size":8262,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.407.tgz","integrity":"sha512-ayDQgkwCLHq0AVmsU10t2H/8X9lq3nb1CRV9rWYsc2nTTbFMvh4Aaau48Ao0iW/L+Q8Y9bgbJ5iHyPse7DGMJw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.407_1586923357240_0.40641705982687926"},"_hasShrinkwrap":false,"publish_time":1586923357504,"_cnpm_publish_time":1586923357504,"_cnpmcore_publish_time":"2021-12-15T21:11:07.947Z"},"1.3.406":{"name":"electron-to-chromium","version":"1.3.406","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.393.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5ee96ed1a3dbe5ca49ddfab0129966e0faf8f361","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.406","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d4b8f8c9f7405dddbbb646d6b15042cd7c1e6e61","size":8260,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.406.tgz","integrity":"sha512-bx8vBZoEbhsMmwEZIj2twzfhFoKKZlSLQiENhqgc5/FdAj4/UHEzAri42OTSFA5+0agLR03ReTvIms2dfZ7/Ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.406_1586894560810_0.07865623730315252"},"_hasShrinkwrap":false,"publish_time":1586894560945,"_cnpm_publish_time":1586894560945,"_cnpmcore_publish_time":"2021-12-15T21:11:08.180Z"},"1.3.405":{"name":"electron-to-chromium","version":"1.3.405","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.392.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"baca4409137fb8f9d323187e88ff653057497578","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.405","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b84fcb157edb26eae6c36d93d416cb51caa399bd","size":8263,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.405.tgz","integrity":"sha512-D+xkP+hAQY/790DzImC8bI8QJLaArNG4b74bYvkhkK/fli51JmNyUYxwKLSl/8VPGkkXEqKCupSDD05/E5P72w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.405_1586865767434_0.8853463436014408"},"_hasShrinkwrap":false,"publish_time":1586865767995,"_cnpm_publish_time":1586865767995,"_cnpmcore_publish_time":"2021-12-15T21:11:08.394Z"},"1.3.404":{"name":"electron-to-chromium","version":"1.3.404","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.392.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f16b47af60b1fd9d53f7a452d482315c44acb4b9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.404","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"8efc21dc57b284b0bb9473430c1cebb5c4c1e600","size":8243,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.404.tgz","integrity":"sha512-G7XYSpNXv/GhFLgjGyBJAs9LjLHBWhsvjf6VI/VbptG9KiABHSItETTgDe1LDjbHA5P/Rn2MMDKOvhewM+w2Cg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.404_1586836956569_0.13833357137381275"},"_hasShrinkwrap":false,"publish_time":1586836956711,"_cnpm_publish_time":1586836956711,"_cnpmcore_publish_time":"2021-12-15T21:11:09.005Z"},"1.3.403":{"name":"electron-to-chromium","version":"1.3.403","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.391.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5d6570da33ac3818ebabca70560d28d91b99b7c3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.403","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"c8bab4e2e72bf78bc28bad1cc355c061f9cc1918","size":8241,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.403.tgz","integrity":"sha512-JaoxV4RzdBAZOnsF4dAlZ2ijJW72MbqO5lNfOBHUWiBQl3Rwe+mk2RCUMrRI3rSClLJ8HSNQNqcry12H+0ZjFw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.403_1586577769779_0.215651359365983"},"_hasShrinkwrap":false,"publish_time":1586577769957,"_cnpm_publish_time":1586577769957,"_cnpmcore_publish_time":"2021-12-15T21:11:09.226Z"},"1.3.402":{"name":"electron-to-chromium","version":"1.3.402","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.390.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"554b1dff9bd46ceb0fc3698d5ae33c1433c7b5eb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.402","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9ad93c0c8ea2e571431739e0d76bd6bc9788a846","size":8222,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.402.tgz","integrity":"sha512-gaCDfX7IUH0s3JmBiHCDPrvVcdnTTP1r4WLJc2dHkYYbLmXZ2XHiJCcGQ9Balf91aKTvuCKCyu2JjJYRykoI1w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.402_1586491363722_0.35369975448010327"},"_hasShrinkwrap":false,"publish_time":1586491363945,"_cnpm_publish_time":1586491363945,"_cnpmcore_publish_time":"2021-12-15T21:11:09.439Z"},"1.3.401":{"name":"electron-to-chromium","version":"1.3.401","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.389.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"43a545edf07e69e18e19bbdd40477e2b6e10ad91","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.401","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"4b84f80c68af9d23cebb8f2cc97b1479197ebffa","size":8222,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.401.tgz","integrity":"sha512-9tvSOS1++0EQP0tkgyD8KJergVZsld1/UqOusZVTbx9MWZHw5NCezkOjIQ5YWeB45jKdQerDfRrt28HwidI9Ow=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.401_1586419359769_0.6482375794713868"},"_hasShrinkwrap":false,"publish_time":1586419359903,"_cnpm_publish_time":1586419359903,"_cnpmcore_publish_time":"2021-12-15T21:11:09.637Z"},"1.3.400":{"name":"electron-to-chromium","version":"1.3.400","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.389.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"33ce7365713179783856fa34037ef2c618680e6f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.400","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"75af0e91c82d645e0e5175c906c69cb3f01d80ab","size":8208,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.400.tgz","integrity":"sha512-wZT7T37h2lMEv/fiWJBu6vJuuadAsqccr73n23GvxOBXgFYDIxR0JNfa5WVm8Ap2sBT4ZxCJk8Cp33BvtH/+OA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.400_1586404956336_0.34940484533954574"},"_hasShrinkwrap":false,"publish_time":1586404956477,"_cnpm_publish_time":1586404956477,"_cnpmcore_publish_time":"2021-12-15T21:11:09.876Z"},"1.3.399":{"name":"electron-to-chromium","version":"1.3.399","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.388.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d18cfb7a481b2d88f3fe09c065e033184f26f328","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.399","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f77945634de0df9e8a10b79345dc167cdabe8b80","size":8207,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.399.tgz","integrity":"sha512-+NBhK0/v17pls7CSh3Cx5Ir3tsGmtLPMMAO4Nz272bre2wzdykLEsev5wjOd3rYMt2/kSS681ufFT7Dywxq1sw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.399_1586390570792_0.5863240799159486"},"_hasShrinkwrap":false,"publish_time":1586390570899,"_cnpm_publish_time":1586390570899,"_cnpmcore_publish_time":"2021-12-15T21:11:10.118Z"},"1.3.398":{"name":"electron-to-chromium","version":"1.3.398","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.388.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"51f564f208a106bc3a2223bc9c471fe32b2085f3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.398","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"4c01e29091bf39e578ac3f66c1f157d92fa5725d","size":8174,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.398.tgz","integrity":"sha512-BJjxuWLKFbM5axH3vES7HKMQgAknq9PZHBkMK/rEXUQG9i1Iw5R+6hGkm6GtsQSANjSUrh/a6m32nzCNDNo/+w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.398_1586232167074_0.3388314161120969"},"_hasShrinkwrap":false,"publish_time":1586232167307,"_cnpm_publish_time":1586232167307,"_cnpmcore_publish_time":"2021-12-15T21:11:10.331Z"},"1.3.397":{"name":"electron-to-chromium","version":"1.3.397","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.387.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e5537325a401b2416fc0e035cf5bd96c36f76b67","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.397","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"db640c2e67b08d590a504c20b56904537aa2bafa","size":8176,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.397.tgz","integrity":"sha512-zcUd1p/7yzTSdWkCTrqGvbnEOASy96d0RJL/lc5BDJoO23Z3G/VHd0yIPbguDU9n8QNUTCigLO7oEdtOb7fp2A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.397_1586001749217_0.22488730520220446"},"_hasShrinkwrap":false,"publish_time":1586001749363,"_cnpm_publish_time":1586001749363,"_cnpmcore_publish_time":"2021-12-15T21:11:10.579Z"},"1.3.396":{"name":"electron-to-chromium","version":"1.3.396","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.387.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"68e03bbf87dc37450694b70614111d68219a5f73","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.396","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d47570afad5f772dd93973f51e3e334cd591a266","size":8159,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.396.tgz","integrity":"sha512-ESY3UGekvNQwofHvgdsFW8GQEoudbqtJfoSDovnsCRRx8t0+0dPbE1XD/ZQdB+jbskSyPwUtIVYSyKwSXW/A6Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.396_1585972954604_0.2696502370930378"},"_hasShrinkwrap":false,"publish_time":1585972954732,"_cnpm_publish_time":1585972954732,"_cnpmcore_publish_time":"2021-12-15T21:11:10.778Z"},"1.3.395":{"name":"electron-to-chromium","version":"1.3.395","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.386.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7c68651841870ff3aed057e75babfb94727ce62e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.395","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"2c531a0477bcc41deb440877d1f27509ed286aed","size":8159,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.395.tgz","integrity":"sha512-kdn2cX6hZXDdz/O2Q8tZscITlsSv1a/7bOq/fQs7QAJ9iaRlnhZPccarNhxZv1tXgmgwCnKp/1lJNYLOG8Dxiw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.395_1585886553229_0.1252294008653585"},"_hasShrinkwrap":false,"publish_time":1585886553424,"_cnpm_publish_time":1585886553424,"_cnpmcore_publish_time":"2021-12-15T21:11:10.997Z"},"1.3.394":{"name":"electron-to-chromium","version":"1.3.394","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.385.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"29e4efefa81e72245faebc14cb260fe277aeb808","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.394","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"50e927bb9f6a559ed21d284e7683ec5e2c784835","size":8159,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.394.tgz","integrity":"sha512-AEbSKBF49P+GgEP34w0VdYWn9SiMHgWUJbOkPEE1WZMIpWXtvfT9N0sd4Lv4jjD6DeSFjRuzm6+btn/yCz6h2Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.394_1585857750029_0.267648885802779"},"_hasShrinkwrap":false,"publish_time":1585857750198,"_cnpm_publish_time":1585857750198,"_cnpmcore_publish_time":"2021-12-15T21:11:11.268Z"},"1.3.393":{"name":"electron-to-chromium","version":"1.3.393","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.385.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d1a0119d9f26826e3ecbea45a29c6e1ac934995f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.393","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d13fa4cbf5065e18451c84465d22aef6aca9a911","size":8127,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.393.tgz","integrity":"sha512-Ko3/VdhZAaMaJBLBFqEJ+M1qMiBI8sJfPY/hSJvDrkB3Do8LJsL9tmXy4w7o9nPXif/jFaZGSlXTQWU8XVsYtg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.393_1585800148819_0.8411856306846588"},"_hasShrinkwrap":false,"publish_time":1585800148915,"_cnpm_publish_time":1585800148915,"_cnpmcore_publish_time":"2021-12-15T21:11:11.508Z"},"1.3.392":{"name":"electron-to-chromium","version":"1.3.392","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.384.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f17b23a764c9af5e9b24a561ac991c767ff36456","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.392","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"280ab4f7a3ae47419cfabb15dbfc1567be7f1111","size":8129,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.392.tgz","integrity":"sha512-/hsgeVdReDsyTBE0aU9FRdh1wnNPrX3xlz3t61F+CJPOT+Umfi9DXHsCX85TEgWZQqlow0Rw44/4/jbU2Sqgkg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.392_1585713750460_0.8294821421162344"},"_hasShrinkwrap":false,"publish_time":1585713750615,"_cnpm_publish_time":1585713750615,"_cnpmcore_publish_time":"2021-12-15T21:11:11.720Z"},"1.3.391":{"name":"electron-to-chromium","version":"1.3.391","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.383.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fc832c5d07f66d1740733d817f6d238160cd5671","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.391","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9b7ee2f387814ad7d37addaafe41c8f4c4498d24","size":8128,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.391.tgz","integrity":"sha512-WOi6loSnDmfICOqGRrgeK7bZeWDAbGjCptDhI5eyJAqSzWfoeRuOOU1rOTZRL29/9AaxTndZB6Uh8YrxRfZJqw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.391_1585627347795_0.14835096534809233"},"_hasShrinkwrap":false,"publish_time":1585627347958,"_cnpm_publish_time":1585627347958,"_cnpmcore_publish_time":"2021-12-15T21:11:11.927Z"},"1.3.390":{"name":"electron-to-chromium","version":"1.3.390","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.382.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e6c16029b685e4fd32b6e0bba3543b1e4bc447e5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.390","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a49e67dea22e52ea8027c475dd5447b1c00b1d4e","size":8126,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.390.tgz","integrity":"sha512-4RvbM5x+002gKI8sltkqWEk5pptn0UnzekUx8RTThAMPDSb8jjpm6SwGiSnEve7f85biyZl8DMXaipaCxDjXag=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.390_1585382553228_0.3271398190508594"},"_hasShrinkwrap":false,"publish_time":1585382553626,"_cnpm_publish_time":1585382553626,"_cnpmcore_publish_time":"2021-12-15T21:11:12.158Z"},"1.3.389":{"name":"electron-to-chromium","version":"1.3.389","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.382.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"41b3ed8d7a2cd739ecbb739d102369447c032f81","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.389","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"8ca33af1968144ce752a9b962dd48d911227aea1","size":8120,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.389.tgz","integrity":"sha512-jccXIOH9PWpTiJCoMOsbDg23eg+P0cvcgjXo0spkbkB0AjCkfZLADp/apnuNEjCfXACS8PPWChTwiDOXjFZdzw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.389_1585368159002_0.8674696978295668"},"_hasShrinkwrap":false,"publish_time":1585368159153,"_cnpm_publish_time":1585368159153,"_cnpmcore_publish_time":"2021-12-15T21:11:12.390Z"},"1.3.388":{"name":"electron-to-chromium","version":"1.3.388","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.381.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1a459e9aed31d6f270a9bd9a51539bf878c62254","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.388","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d3be2b7afc42c64c81f204755975b78547775301","size":8120,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.388.tgz","integrity":"sha512-/FNHDmNmI4IR/qY+uuAVq8OET5S9J7d5QfQUnAz0edkhl02BjtOflF2H0RXKapVtJfMgaFthKBzeYJAzOaW8PA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.388_1585339350431_0.41397870897078803"},"_hasShrinkwrap":false,"publish_time":1585339350598,"_cnpm_publish_time":1585339350598,"_cnpmcore_publish_time":"2021-12-15T21:11:12.951Z"},"1.3.387":{"name":"electron-to-chromium","version":"1.3.387","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.381.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4cf24f9310d3a931dd5164529b3e4dc1622f0949","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.387","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"420677629c9791b5d36fc8847c8cc11c0934a6cb","size":8114,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.387.tgz","integrity":"sha512-jjQ6WkxrOu0rtGqY9/74Z+UEVQ7YmJU2rCX6kH4eidKP0ZK0VKB3/i1avXQ+EDwJAABKGaOAbJrcyz18P8E3aA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.387_1585281750364_0.03323707950896626"},"_hasShrinkwrap":false,"publish_time":1585281750527,"_cnpm_publish_time":1585281750527,"_cnpmcore_publish_time":"2021-12-15T21:11:13.345Z"},"1.3.386":{"name":"electron-to-chromium","version":"1.3.386","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.380.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0502812ff57605456467e744b848037d2b26a02f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.386","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"224f97c808da76014096848f80bb9342b6a95cdb","size":8117,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.386.tgz","integrity":"sha512-M7JHfp32Bq6Am59AWgglh2d3nqe6y8Y94Vcb/AXUsO3DGvKUHYI5ML9+U5oNShfdOEfurrrjKSoSgFt2mz7mpw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.386_1585209747823_0.14159461489135183"},"_hasShrinkwrap":false,"publish_time":1585209748019,"_cnpm_publish_time":1585209748019,"_cnpmcore_publish_time":"2021-12-15T21:11:13.535Z"},"1.3.385":{"name":"electron-to-chromium","version":"1.3.385","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.380.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d4a090b05f61898252cb44b5596a7168231bfa0f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.385","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"3e58bf684bce2b0b0b57a16adbef9423696c00df","size":8112,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.385.tgz","integrity":"sha512-MoOrex7ATh5eTikE6NAHfaYN6QKSUvZhLtTAa6NFebwf+e4kp4F2/AhYC2u317WH1rG4eAlTPE9SAqNa58aQjA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.385_1585195350601_0.8746401065096292"},"_hasShrinkwrap":false,"publish_time":1585195350757,"_cnpm_publish_time":1585195350757,"_cnpmcore_publish_time":"2021-12-15T21:11:13.772Z"},"1.3.384":{"name":"electron-to-chromium","version":"1.3.384","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.379.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"474850e45226b58e87cc0bd8542a1cc1f85498ff","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.384","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ca1d5710a4c53168431f1cbef39c8a971b646bf8","size":8110,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.384.tgz","integrity":"sha512-9jGNF78o450ymPf63n7/j1HrRAD4xGTsDkKY2X6jtCAWaYgph2A9xQjwfwRpj+AovkARMO+JfZuVCFTdandD6w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.384_1585108960397_0.9172539362124803"},"_hasShrinkwrap":false,"publish_time":1585108960585,"_cnpm_publish_time":1585108960585,"_cnpmcore_publish_time":"2021-12-15T21:11:13.988Z"},"1.3.383":{"name":"electron-to-chromium","version":"1.3.383","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.378.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"862ac741e2a11f83aaf94d89d1a07a803ee6229e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.383","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"8bbef55963529bfbf8344ac3620e1bcb455cffc3","size":8088,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.383.tgz","integrity":"sha512-EHYVJl6Ox1kFy/SzGVbijHu8ksQotJnqHCFFfaVhXiC+erOSplwhCtOTSocu1jRwirlNsSn/aZ9Kf84Z6s5qrg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.383_1585065755783_0.3451129832241775"},"_hasShrinkwrap":false,"publish_time":1585065755927,"_cnpm_publish_time":1585065755927,"_cnpmcore_publish_time":"2021-12-15T21:11:14.190Z"},"1.3.382":{"name":"electron-to-chromium","version":"1.3.382","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.377.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"507f7b1cd3d1543b6cf713509ed307e23db3e352","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.382","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"cad02da655c33f7a3d6ca7525bd35c17e90f3a8f","size":8082,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.382.tgz","integrity":"sha512-gJfxOcgnBlXhfnUUObsq3n3ReU8CT6S8je97HndYRkKsNZMJJ38zO/pI5aqO7L3Myfq+E3pqPyKK/ynyLEQfBA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.382_1585022555838_0.3748901701396077"},"_hasShrinkwrap":false,"publish_time":1585022556085,"_cnpm_publish_time":1585022556085,"_cnpmcore_publish_time":"2021-12-15T21:11:14.417Z"},"1.3.381":{"name":"electron-to-chromium","version":"1.3.381","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.376.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f792f3bb633fd38a8597c27c06ea667463b433c2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.381","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"952678ff91a5f36175a3832358a6dd2de3bf62b7","size":8068,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.381.tgz","integrity":"sha512-JQBpVUr83l+QOqPQpj2SbOve1bBE4ACpmwcMNqWlZmfib7jccxJ02qFNichDpZ5LS4Zsqc985NIPKegBIZjK8Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.381_1584993760285_0.10820319812073476"},"_hasShrinkwrap":false,"publish_time":1584993760400,"_cnpm_publish_time":1584993760400,"_cnpmcore_publish_time":"2021-12-15T21:11:14.632Z"},"1.3.380":{"name":"electron-to-chromium","version":"1.3.380","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.375.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2d0b202a0c2139a34f6cb996fde8f6db2bfb4d16","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.380","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"1e1f07091b42b54bccd0ad6d3a14f2b73b60dc9d","size":8047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.380.tgz","integrity":"sha512-2jhQxJKcjcSpVOQm0NAfuLq8o+130blrcawoumdXT6411xG/xIAOyZodO/y7WTaYlz/NHe3sCCAe/cJLnDsqTw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.380_1584763354697_0.8195108010236034"},"_hasShrinkwrap":false,"publish_time":1584763354844,"_cnpm_publish_time":1584763354844,"_cnpmcore_publish_time":"2021-12-15T21:11:14.883Z"},"1.3.379":{"name":"electron-to-chromium","version":"1.3.379","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.374.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8162f9e874c4ecb914c2788477dcbf8d636a39ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.379","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"81dc5e82a3e72bbb830d93e15bc35eda2bbc910e","size":8035,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.379.tgz","integrity":"sha512-NK9DBBYEBb5f9D7zXI0hiE941gq3wkBeQmXs1ingigA/jnTg5mhwY2Z5egwA+ZI8OLGKCx0h1Cl8/xeuIBuLlg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.379_1584590553918_0.1819770531860363"},"_hasShrinkwrap":false,"publish_time":1584590554121,"_cnpm_publish_time":1584590554121,"_cnpmcore_publish_time":"2021-12-15T21:11:15.103Z"},"1.3.378":{"name":"electron-to-chromium","version":"1.3.378","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.373.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e63a855c7cbb19c9a7d67d0dea946fcaf221bee5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.378","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"18c572cbb54bf5b2769855597cdc7511c02b481f","size":8028,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.378.tgz","integrity":"sha512-nBp/AfhaVIOnfwgL1CZxt80IcqWcyYXiX6v5gflAksxy+SzBVz7A7UWR1Nos92c9ofXW74V9PoapzRb0jJfYXw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.378_1584504155214_0.5717649586243174"},"_hasShrinkwrap":false,"publish_time":1584504155400,"_cnpm_publish_time":1584504155400,"_cnpmcore_publish_time":"2021-12-15T21:11:15.694Z"},"1.3.377":{"name":"electron-to-chromium","version":"1.3.377","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.372.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9f393091d81aaab9fd7f802089038d41828e7d6c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.377","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b49d420b36ee6c48b0cd3137bfc7fec75f369b2e","size":8009,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.377.tgz","integrity":"sha512-cm2WzMKf/3dW5+hNANKm8GAW6SwIWOqLTJ6GPCD0Bbw1qJ9Wzm9nmx9M+byzSsgw8CdCv5fb/wzLFqVS5h6QrA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.377_1584417754503_0.02306829047137393"},"_hasShrinkwrap":false,"publish_time":1584417754654,"_cnpm_publish_time":1584417754654,"_cnpmcore_publish_time":"2021-12-15T21:11:15.966Z"},"1.3.376":{"name":"electron-to-chromium","version":"1.3.376","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.371.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e605d9e896fb5a511c1cb3d514be01dcaea23e0e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.376","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7cb7b5205564a06c8f8ecfbe832cbd47a1224bb1","size":7995,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.376.tgz","integrity":"sha512-cv/PYVz5szeMz192ngilmezyPNFkUjuynuL2vNdiqIrio440nfTDdc0JJU0TS2KHLSVCs9gBbt4CFqM+HcBnjw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.376_1583985755345_0.49598803973593153"},"_hasShrinkwrap":false,"publish_time":1583985755581,"_cnpm_publish_time":1583985755581,"_cnpmcore_publish_time":"2021-12-15T21:11:16.207Z"},"1.3.375":{"name":"electron-to-chromium","version":"1.3.375","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.370.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0971f3082e2dc3126a927212361e59b5e6f81057","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.375","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e290d59d316024e5499057944c10d05c518b7a24","size":7984,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.375.tgz","integrity":"sha512-zmaFnYVBtfpF8bGRYxgPeVAlXB7N3On8rjBE2ROc6wOpTPpzRWaiHo6KkbJMvlH07CH33uks/TEb6kuMMn8q6A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.375_1583899356357_0.7360955698344323"},"_hasShrinkwrap":false,"publish_time":1583899356500,"_cnpm_publish_time":1583899356500,"_cnpmcore_publish_time":"2021-12-15T21:11:16.748Z"},"1.3.374":{"name":"electron-to-chromium","version":"1.3.374","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.369.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"704622bdace2a1367e8579bd81835075426d0b87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.374","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"eb539bfcac8ec51de417038548c3bc93745134bb","size":7978,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.374.tgz","integrity":"sha512-M4Y9onOJ4viRk3A4M/LH+r9+1zQioRZJvGJn/S/o7KaBJQLgFiaHMUlDwM0QMJd5ki6hFxKiWdC6jp5Ub0zMmw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.374_1583827355678_0.8054853096808718"},"_hasShrinkwrap":false,"publish_time":1583827355871,"_cnpm_publish_time":1583827355871,"_cnpmcore_publish_time":"2021-12-15T21:11:17.022Z"},"1.3.373":{"name":"electron-to-chromium","version":"1.3.373","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.368.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2a20b175494ffb8e66235669ab2f86c2aeabac0a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.373","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"645de7a1c093cb614e2716738347818f930923ff","size":7965,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.373.tgz","integrity":"sha512-an1SVTwALJisKbNt11LNs6quecjAt8qtnKFdDq37VVHIIjmdD1mpdcI00e+wM3gWyMWAdTYNtTArz3xodX0zqg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.373_1583812956242_0.7038971295320555"},"_hasShrinkwrap":false,"publish_time":1583812956407,"_cnpm_publish_time":1583812956407,"_cnpmcore_publish_time":"2021-12-15T21:11:17.307Z"},"1.3.372":{"name":"electron-to-chromium","version":"1.3.372","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.367.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"358c1dc942dd220aa2f42fc11b37957e0c1a7cfb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.372","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fb61b6dfe06f3278a384d084ebef75d463ec7580","size":7955,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.372.tgz","integrity":"sha512-77a4jYC52OdisHM+Tne7dgWEvQT1FoNu/jYl279pP88ZtG4ZRIPyhQwAKxj6C2rzsyC1OwsOds9JlZtNncSz6g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.372_1583542956482_0.8121011673324574"},"_hasShrinkwrap":false,"publish_time":1583542956648,"_cnpm_publish_time":1583542956648,"_cnpmcore_publish_time":"2021-12-15T21:11:17.537Z"},"1.3.371":{"name":"electron-to-chromium","version":"1.3.371","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.366.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b3fcc46b2570958d0904a14a161c1a7f502d2e9e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.371","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f8299caf7104d0e1a1b3952d81a78e2c2a854675","size":7951,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.371.tgz","integrity":"sha512-4GZyU3P6MEZeqp44SThp8sMY+PRf7tWJ1oRtW7hCEQLVK7nT73Ip5pvzM+t9ZLcMbzKHoNWZ9G6bQshOVpYIVA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.371_1583528553879_0.8854909365137105"},"_hasShrinkwrap":false,"publish_time":1583528553993,"_cnpm_publish_time":1583528553993,"_cnpmcore_publish_time":"2021-12-15T21:11:17.757Z"},"1.3.370":{"name":"electron-to-chromium","version":"1.3.370","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.365.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3ec74e28d39f66a25a88689f21348c4cee48fd45","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.370","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"420fba483d30ba3f7965b30ecf850fdb5f08a0bc","size":7936,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.370.tgz","integrity":"sha512-399cXDE9C7qoVF2CUgCA/MLflfvxbo1F0kB/pkB94426freL/JgZ0HNaloomsOfnE+VC/qgTFZqzmivSdaNfPQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.370_1583485353402_0.12285871568256734"},"_hasShrinkwrap":false,"publish_time":1583485353612,"_cnpm_publish_time":1583485353612,"_cnpmcore_publish_time":"2021-12-15T21:11:18.002Z"},"1.3.369":{"name":"electron-to-chromium","version":"1.3.369","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.364.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7c908fbe0d356711abe474f9bfee115467a18013","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.369","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"586d5a59de4f1f3f06dce556dffe4c65e3050b73","size":7918,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.369.tgz","integrity":"sha512-6laJEDffEppIKT01TbyQtNhbdvF8ZfJWuK4L53sQCSiUHv0wSsJOFPvV0E63PZEQUzGcS2ZRSJlM5F4Ol9ffHg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.369_1583456557423_0.9583366309163308"},"_hasShrinkwrap":false,"publish_time":1583456557550,"_cnpm_publish_time":1583456557550,"_cnpmcore_publish_time":"2021-12-15T21:11:18.220Z"},"1.3.368":{"name":"electron-to-chromium","version":"1.3.368","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.363.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9d944b1acbdcd6405b7cad558e246032421c2866","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.368","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d7597e04339f7ca70762031ec473d38eb2df6acb","size":7909,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.368.tgz","integrity":"sha512-fqzDipW3p+uDkHUHFPrdW3wINRKcJsbnJwBD7hgaQEQwcuLSvNLw6SeUp5gKDpTbmTl7zri7IZfhsdTUTnygJg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.368_1583370153645_0.3421764781897825"},"_hasShrinkwrap":false,"publish_time":1583370153788,"_cnpm_publish_time":1583370153788,"_cnpmcore_publish_time":"2021-12-15T21:11:18.458Z"},"1.3.367":{"name":"electron-to-chromium","version":"1.3.367","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.362.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f21923ba4cb144dd68e4b9152b42f7bd5e1d6035","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.367","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"48abffcaa6591051b612ae70ddc657763ede2662","size":7900,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.367.tgz","integrity":"sha512-GCHQreWs4zhKA48FNXCjvpV4kTnKoLu2PSAfKX394g34NPvTs2pPh1+jzWitNwhmOYI8zIqt36ulRVRZUgqlfA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.367_1583269353711_0.5099262191986316"},"_hasShrinkwrap":false,"publish_time":1583269353921,"_cnpm_publish_time":1583269353921,"_cnpmcore_publish_time":"2021-12-15T21:11:18.674Z"},"1.3.366":{"name":"electron-to-chromium","version":"1.3.366","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.361.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9a3bfd18166e9417ec33cbbabf6f1c0cb1e4910b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.366","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"89515c246eb70d62fd66cdbc94c70b6a6e92c1dd","size":7882,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.366.tgz","integrity":"sha512-MWtwlJaX/MqAH4V7j4pFasq2O4OIH7MltGTEVvzyeuUW+CPYsx+fuVg/MSBrTL4PzZjHidOixaELNy75/XFK1g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.366_1583226153607_0.498467201309835"},"_hasShrinkwrap":false,"publish_time":1583226153717,"_cnpm_publish_time":1583226153717,"_cnpmcore_publish_time":"2021-12-15T21:11:19.029Z"},"1.3.365":{"name":"electron-to-chromium","version":"1.3.365","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.360.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ed9ab9772026dcd0e974996d305861f01be3eb54","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.365","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fa3d77ed454e18eeacd3611a1f5d33f09dc85706","size":7876,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.365.tgz","integrity":"sha512-LQGbIvLWEOQ1xblY2pXxVoaAYd5T5h5f8m3h3hTEYonWY3Zrec0gy8TVz2tXdaUz+4qXwVThIbLvl/Dll3CdLQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.365_1583182956807_0.3979881686778102"},"_hasShrinkwrap":false,"publish_time":1583182956919,"_cnpm_publish_time":1583182956919,"_cnpmcore_publish_time":"2021-12-15T21:11:19.252Z"},"1.3.364":{"name":"electron-to-chromium","version":"1.3.364","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.359.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c1655950e374e2f671c157504ae9b00754aae86f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.364","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"524bd0cf9c45ba49c508fd3b731a07efbf310b1c","size":7872,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.364.tgz","integrity":"sha512-V6hyxQ9jzt6Jy6w8tAv4HHKhIaVS6psG/gmwtQ+2+itdkWMHJLHJ4m1sFep/fWkdKvfJcPXuywfnECRzfNa7gw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.364_1582938157201_0.017038003872730467"},"_hasShrinkwrap":false,"publish_time":1582938157331,"_cnpm_publish_time":1582938157331,"_cnpmcore_publish_time":"2021-12-15T21:11:19.980Z"},"1.3.363":{"name":"electron-to-chromium","version":"1.3.363","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.358.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d8552f638aef56f3f21eb43c04b5754ea0cac2f4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.363","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"08756873e49446a92e0cee6c3cd9eb3c52043826","size":7866,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.363.tgz","integrity":"sha512-4w19wPBkeunBjOA53lNFT36IdOD3Tk1OoIDtTX+VToJUUDX42QfuhtsNKXv25wmSnoBOExM3kTbj7/WDNBwHuQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.363_1582880554937_0.24609905265707144"},"_hasShrinkwrap":false,"publish_time":1582880555077,"_cnpm_publish_time":1582880555077,"_cnpmcore_publish_time":"2021-12-15T21:11:20.186Z"},"1.3.362":{"name":"electron-to-chromium","version":"1.3.362","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.357.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f5215e9fccc8b0d5fd6099c06ee1b2f1f1a24611","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.362","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9ed33f9d0673888d6a2614347b4b63b490009408","size":7859,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.362.tgz","integrity":"sha512-xdU5VCoZyMPMOWtCaMgbr48OwWZHrMLbGnAOlEqibXiIGsb4kiCGWEHK5NOghcVLdBVIbr/BW+yuKxVuGTtzEg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.362_1582765355564_0.5458429697710045"},"_hasShrinkwrap":false,"publish_time":1582765355854,"_cnpm_publish_time":1582765355854,"_cnpmcore_publish_time":"2021-12-15T21:11:20.373Z"},"1.3.361":{"name":"electron-to-chromium","version":"1.3.361","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.356.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9677ed07a9544aa791cb6e79f9821f28dbef5a25","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.361","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a820bf52da171c0024314745462cfe0dc944373e","size":7855,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.361.tgz","integrity":"sha512-OzSVjWpsRhJyr9PSAXkeloSe6e9viU2ToGt1wXlXFsGcxuI9vlsnalL+V/AM59Z2pEo3wRxIddtOGsT7Y6x/sQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.361_1582707755329_0.4174063431048365"},"_hasShrinkwrap":false,"publish_time":1582707755440,"_cnpm_publish_time":1582707755440,"_cnpmcore_publish_time":"2021-12-15T21:11:20.597Z"},"1.3.360":{"name":"electron-to-chromium","version":"1.3.360","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.355.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e0dbac2318826240b751c5cc2bec91c453929162","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.360","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"1db9cb8d43f4c772546d94ea9be8b677a8ecb483","size":7846,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.360.tgz","integrity":"sha512-RE1pv2sjQiDRRN1nI0fJ0eQHZ9le4oobu16OArnwEUV5ycAU5SNjFyvzjZ1gPUAqBa2Ud1XagtW8j3ZXfHuQHA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.360_1582506151709_0.24490597743422637"},"_hasShrinkwrap":false,"publish_time":1582506151841,"_cnpm_publish_time":1582506151841,"_cnpmcore_publish_time":"2021-12-15T21:11:20.844Z"},"1.3.359":{"name":"electron-to-chromium","version":"1.3.359","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.354.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"56c54e628af46c4e158a80bd01b1e485431a18d2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.359","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"198d44baf90a432c0afab9c1edec87a3031ddec9","size":7840,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.359.tgz","integrity":"sha512-ewZp4BQftbLclBwmFYoTrlyiLMXQTiYeqh1hn24sWao9bGhUHzQtpytymN8JsenWlQ9SbBWynTPvfghb0Ipn1Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.359_1582419754218_0.8435649970017112"},"_hasShrinkwrap":false,"publish_time":1582419754357,"_cnpm_publish_time":1582419754357,"_cnpmcore_publish_time":"2021-12-15T21:11:21.012Z"},"1.3.358":{"name":"electron-to-chromium","version":"1.3.358","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.353.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"99bfee434834db484da577fdf5ef2ca8e4710d53","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.358","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"1964cab37f57d49a5a421a4de4dba3c6baf14608","size":7831,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.358.tgz","integrity":"sha512-y9xvv+9PplXSUkOSxgtOfwNrqD/948VIScyWURnY27PXprg3PmRl7e8ekRJhnksDNjxLVyBYY6I2nQmNBzdi6g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.358_1582333353556_0.18008419330231717"},"_hasShrinkwrap":false,"publish_time":1582333353650,"_cnpm_publish_time":1582333353650,"_cnpmcore_publish_time":"2021-12-15T21:11:21.229Z"},"1.3.357":{"name":"electron-to-chromium","version":"1.3.357","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.352.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7a77aa8b16ef9320afe6e80e74d683262b2a458d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.357","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"698033b739ce0e578905e1d8d81aa095d26f2756","size":7828,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.357.tgz","integrity":"sha512-bLF4fagmOUq4J8SFTNmXoKpLYqKW3pW1E15nvhsrFs4lzOwHpOVEX0d3LQiwuMT/PwSgrRUHQjtu4JgLS+Onuw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.357_1582318951405_0.748548021338201"},"_hasShrinkwrap":false,"publish_time":1582318951509,"_cnpm_publish_time":1582318951509,"_cnpmcore_publish_time":"2021-12-15T21:11:21.423Z"},"1.3.356":{"name":"electron-to-chromium","version":"1.3.356","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.351.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e92391998df603b2c921421b9008bbb5b805bf39","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.356","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"fb985ee0f3023e6e11b97547ff3f738bdd8643d2","size":7823,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.356.tgz","integrity":"sha512-qW4YHMfOFjvx0jkSK2vjaHoLjk1+uJIV5tqtLDo7P5y3/kM8KQP23YBU0Y5fCSW4jIbDvEzeHDaY4+4vEaqqOw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.356_1582246954223_0.48539238135214147"},"_hasShrinkwrap":false,"publish_time":1582246954439,"_cnpm_publish_time":1582246954439,"_cnpmcore_publish_time":"2021-12-15T21:11:21.620Z"},"1.3.355":{"name":"electron-to-chromium","version":"1.3.355","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.350.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"14bcc60bf7f6b242e5164fe0ae9f0a96c55dbd1b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.355","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ff805ed8a3d68e550a45955134e4e81adf1122ba","size":7807,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.355.tgz","integrity":"sha512-zKO/wS+2ChI/jz9WAo647xSW8t2RmgRLFdbUb/77cORkUTargO+SCj4ctTHjBn2VeNFrsLgDT7IuDVrd3F8mLQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.355_1582074154089_0.6207453588420353"},"_hasShrinkwrap":false,"publish_time":1582074154267,"_cnpm_publish_time":1582074154267,"_cnpmcore_publish_time":"2021-12-15T21:11:21.808Z"},"1.3.354":{"name":"electron-to-chromium","version":"1.3.354","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.349.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bc462c478d78fb0554342ce3159c9c92f2449689","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.354","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6c6ad9ef63654c4c022269517c5a3095cebc94db","size":7800,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.354.tgz","integrity":"sha512-24YMkNiZWOUeF6YeoscWfIGP0oMx+lJpU/miwI+lcu7plIDpyZn8Gx0lx0qTDlzGoz7hx+lpyD8QkbkX5L2Pqw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.354_1581987753964_0.3031448677171207"},"_hasShrinkwrap":false,"publish_time":1581987754092,"_cnpm_publish_time":1581987754092,"_cnpmcore_publish_time":"2021-12-15T21:11:22.079Z"},"1.3.353":{"name":"electron-to-chromium","version":"1.3.353","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.348.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"85bf548ad2ab63afaa0b454ea3eaa71f539217e9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.353","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"c6f13f27d5212643979867a400c1a5e8a4ef042a","size":7796,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.353.tgz","integrity":"sha512-CkG24biyy9qQTQs8U2vGQaiyWSFDxAXP/UGHBveXZ1TGoWOAw+eYZXryrX0UeIMKnQjcaHx33hzYuydv98kqGQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.353_1581901352780_0.8784992335656321"},"_hasShrinkwrap":false,"publish_time":1581901352882,"_cnpm_publish_time":1581901352882,"_cnpmcore_publish_time":"2021-12-15T21:11:22.320Z"},"1.3.352":{"name":"electron-to-chromium","version":"1.3.352","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.347.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2508ce7a90cc24f9e16c11f1c6fa4415dbba5119","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.352","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f0fc1e561104dbfba55cb3d45cad3626dc75d7e9","size":7792,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.352.tgz","integrity":"sha512-dL/RyoueFG3UMhG0q3weAQvr+Tbqx/axAnOXYIIOsoYnV+2i+nRvX2S6msEo2+JARbBP8MFkkSYQ8AoY9Bh4Og=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.352_1581843753379_0.6886706341622262"},"_hasShrinkwrap":false,"publish_time":1581843753489,"_cnpm_publish_time":1581843753489,"_cnpmcore_publish_time":"2021-12-15T21:11:22.638Z"},"1.3.351":{"name":"electron-to-chromium","version":"1.3.351","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.346.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"23b60b62dc4562a290a1f471ab4f0243258fd93d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.351","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"78bcf8e9092013232b2fb72b9db423d96e92604c","size":7783,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.351.tgz","integrity":"sha512-L8zhV8k7Znp2q3wWXYDzCyfTBeGauEX0rX/FtgmnDgmvHRqwu9NVN614wOkXx9sDZmJZpNMBaEFMXTu/vbr+Kg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.351_1581728553933_0.40742168203435436"},"_hasShrinkwrap":false,"publish_time":1581728554103,"_cnpm_publish_time":1581728554103,"_cnpmcore_publish_time":"2021-12-15T21:11:22.866Z"},"1.3.350":{"name":"electron-to-chromium","version":"1.3.350","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.345.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"30ec88f19aaa0422ffe9d8b04280d64f919e3c48","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.350","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"325654a3bf030b03b7b2bba967b44be3f13dc457","size":7783,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.350.tgz","integrity":"sha512-j2ge29AfeTXhlL1OyIIEuprvCEmxoW4tN52A/FiZ9PyXV427RxAQXpj2seCX9rnYExpOpuv4gbM3I9A7MM2hng=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.350_1581714156601_0.656615736322576"},"_hasShrinkwrap":false,"publish_time":1581714156695,"_cnpm_publish_time":1581714156695,"_cnpmcore_publish_time":"2021-12-15T21:11:23.078Z"},"1.3.349":{"name":"electron-to-chromium","version":"1.3.349","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.344.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a138e6848ae024208ac4549c0036126c9ae37203","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.349","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"663f26a69d348a462df47b4d7ab162a2f29bbcb7","size":7774,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.349.tgz","integrity":"sha512-uEb2zs6EJ6OZIqaMsCSliYVgzE/f7/s1fLWqtvRtHg/v5KBF2xds974fUnyatfxIDgkqzQVwFtam5KExqywx0Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.349_1581469354799_0.23531437828880675"},"_hasShrinkwrap":false,"publish_time":1581469354952,"_cnpm_publish_time":1581469354952,"_cnpmcore_publish_time":"2021-12-15T21:11:23.312Z"},"1.3.348":{"name":"electron-to-chromium","version":"1.3.348","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.343.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9050bbc5ba2ccbb91142f74879d5488a9b295ae3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.348","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"61fa7d43f6c4fd8b046b0b69213cb55b7a4c76a5","size":7771,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.348.tgz","integrity":"sha512-6O0IInybavGdYtcbI4ryF/9e3Qi8/soi6C68ELRseJuTwQPKq39uGgVVeQHG28t69Sgsky09nXBRhUiFXsZyFQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.348_1581382953036_0.9035451913664605"},"_hasShrinkwrap":false,"publish_time":1581382953205,"_cnpm_publish_time":1581382953205,"_cnpmcore_publish_time":"2021-12-15T21:11:23.512Z"},"1.3.347":{"name":"electron-to-chromium","version":"1.3.347","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.342.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"db12cea9884be918daba56a4fc4c79fe5de9ff00","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.347","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ba9724a8e8122a0b081836892e1e08eef7fa4cd7","size":7735,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.347.tgz","integrity":"sha512-IityliF5ZY4nLa4DaXOGrWVeTK3OcN6LJECVe60DOX/SEF0zohVRxZHJXu4ZA8bW0A3K6Skcn67G20MGXOqhaA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.347_1581368551972_0.44270420095956164"},"_hasShrinkwrap":false,"publish_time":1581368552278,"_cnpm_publish_time":1581368552278,"_cnpmcore_publish_time":"2021-12-15T21:11:23.748Z"},"1.3.346":{"name":"electron-to-chromium","version":"1.3.346","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.341.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cb813e9a55a36ff40e8fb4008699069fe5296a41","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.346","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b08becbfbd64a42061195afd3a4923d0416c5d46","size":7726,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.346.tgz","integrity":"sha512-Yy4jF5hJd57BWmGPt0KjaXc25AmWZeQK75kdr4zIzksWVtiT6DwaNtvTb9dt+LkQKwUpvBfCyyPsXXtbY/5GYw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.346_1581296554004_0.7696713517337146"},"_hasShrinkwrap":false,"publish_time":1581296554120,"_cnpm_publish_time":1581296554120,"_cnpmcore_publish_time":"2021-12-15T21:11:23.954Z"},"1.3.345":{"name":"electron-to-chromium","version":"1.3.345","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.340.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3feb742f4c829da1c9a0e65f6224ceb400443974","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.345","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"2569d0d54a64ef0f32a4b7e8c80afa5fe57c5d98","size":7705,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.345.tgz","integrity":"sha512-f8nx53+Z9Y+SPWGg3YdHrbYYfIJAtbUjpFfW4X1RwTZ94iUG7geg9tV8HqzAXX7XTNgyWgAFvce4yce8ZKxKmg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.345_1580778153302_0.9435461127102298"},"_hasShrinkwrap":false,"publish_time":1580778153438,"_cnpm_publish_time":1580778153438,"_cnpmcore_publish_time":"2021-12-15T21:11:24.164Z"},"1.3.344":{"name":"electron-to-chromium","version":"1.3.344","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.339.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"922cf99f45aea3c1f83d7486d68af877c0f55db3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.344","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f1397a633c35e726730c24be1084cd25c3ee8148","size":7684,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.344.tgz","integrity":"sha512-tvbx2Wl8WBR+ym3u492D0L6/jH+8NoQXqe46+QhbWH3voVPauGuZYeb1QAXYoOAWuiP2dbSvlBx0kQ1F3hu/Mw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.344_1580389351333_0.09940567865801042"},"_hasShrinkwrap":false,"publish_time":1580389351475,"_cnpm_publish_time":1580389351475,"_cnpmcore_publish_time":"2021-12-15T21:11:24.352Z"},"1.3.343":{"name":"electron-to-chromium","version":"1.3.343","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.338.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"429b078ea12a87510672c3a8452eeef7d8353493","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.343","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a60f76a8b9980d44e39276c199fbfb6a39e8b115","size":7682,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.343.tgz","integrity":"sha512-zSPaMbYuNpas96cCf4hcKB1Zs/1ClntnsH3S+CvFi75LBBsa767Xnmo5jhCI1HiG0za6rJMRk5n2MCgd8w2iYA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.343_1580374952071_0.4024678419004628"},"_hasShrinkwrap":false,"publish_time":1580374952211,"_cnpm_publish_time":1580374952211,"_cnpmcore_publish_time":"2021-12-15T21:11:24.547Z"},"1.3.342":{"name":"electron-to-chromium","version":"1.3.342","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.337.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a306f189ce9ca7b06489791a8645bad44169a855","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.342","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"138317aa7399e268735b9269fe374a8566425090","size":7677,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.342.tgz","integrity":"sha512-An/MLhGLIG/g7lZ5vqs4lar96zv74agd3ZcADDHLpjAa16T7Y/pO/33Q31JOwpmHeyjithtHtUcn7XLuaz78lw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.342_1580346151735_0.6597764718446666"},"_hasShrinkwrap":false,"publish_time":1580346151868,"_cnpm_publish_time":1580346151868,"_cnpmcore_publish_time":"2021-12-15T21:11:24.800Z"},"1.3.341":{"name":"electron-to-chromium","version":"1.3.341","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.336.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5226d5e0f2c312e79c09be92188ad0476cd2a73b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.341","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ad4c039bf621715a12dd814a95a7d89ec80b092c","size":7669,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.341.tgz","integrity":"sha512-iezlV55/tan1rvdvt7yg7VHRSkt+sKfzQ16wTDqTbQqtl4+pSUkKPXpQHDvEt0c7gKcUHHwUbffOgXz6bn096g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.341_1580245353488_0.6645865335884471"},"_hasShrinkwrap":false,"publish_time":1580245353658,"_cnpm_publish_time":1580245353658,"_cnpmcore_publish_time":"2021-12-15T21:11:25.018Z"},"1.3.340":{"name":"electron-to-chromium","version":"1.3.340","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.335.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"239f1c2c1bfaf9eaecd89df386d61b09b60b5fb9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.340","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"5d4fe78e984d4211194cf5a52e08069543da146f","size":7667,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.340.tgz","integrity":"sha512-hRFBAglhcj5iVYH+o8QU0+XId1WGoc0VGowJB1cuJAt3exHGrivZvWeAO5BRgBZqwZtwxjm8a5MQeGoT/Su3ww=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.340_1579741353167_0.005854655796433184"},"_hasShrinkwrap":false,"publish_time":1579741353362,"_cnpm_publish_time":1579741353362,"_cnpmcore_publish_time":"2021-12-15T21:11:25.261Z"},"1.3.339":{"name":"electron-to-chromium","version":"1.3.339","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.334.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"57178ae8d31a7a3655ec792a515460fa885bc343","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.339","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ff7b56c4bc58159f0d6623591116e4414e7a618b","size":7664,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.339.tgz","integrity":"sha512-C1i/vH6/kQx9YV8RddMkmW216GwW4pTrnYIlKmDFIqXA4fPwqDxIdGyHsuG+fgurHoljRz7/oaD+tztcryW/9g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.339_1579654953443_0.844515176304149"},"_hasShrinkwrap":false,"publish_time":1579654953555,"_cnpm_publish_time":1579654953555,"_cnpmcore_publish_time":"2021-12-15T21:11:25.463Z"},"1.3.338":{"name":"electron-to-chromium","version":"1.3.338","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.333.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9a60ab1dc0ce0145936873c52ea1912ca418cb2b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.338","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"4f33745aed599dfa0fd7b388bf754c164e915168","size":7654,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.338.tgz","integrity":"sha512-wlmfixuHEc9CkfOKgcqdtzBmRW4NStM9ptl5oPILY2UDyHuSXb3Yit+yLVyLObTgGuMMU36hhnfs2GDJId7ctA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.338_1579482152876_0.41904632661201524"},"_hasShrinkwrap":false,"publish_time":1579482153039,"_cnpm_publish_time":1579482153039,"_cnpmcore_publish_time":"2021-12-15T21:11:25.703Z"},"1.3.337":{"name":"electron-to-chromium","version":"1.3.337","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.332.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9e17eedbab449fa6339dc9bb0e7ee02ff54837e3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.337","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b2c093cdb66121a946d333b454adcdc5666ceaed","size":7635,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.337.tgz","integrity":"sha512-uJ+wLjslYQ/2rAusDg+6FlK8DLhHWTLCe7gkofBehTifW7KCkPVTn5rhKSCncWYNq34Iy/o4OfswuEkAO2RBaw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.337_1579309352261_0.40942474989967304"},"_hasShrinkwrap":false,"publish_time":1579309352411,"_cnpm_publish_time":1579309352411,"_cnpmcore_publish_time":"2021-12-15T21:11:25.933Z"},"1.3.336":{"name":"electron-to-chromium","version":"1.3.336","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.331.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"742bbce4f590bbff53060b6abfc140e54bcdaa64","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.336","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"f0e7a3e78f1c9a0385b6693a4a4b7453f0ae6aaf","size":7631,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.336.tgz","integrity":"sha512-FtazvnXAizSVMxQNPqUcTv2UElY5r3uRPQwiU1Tyg/Yc2UFr+/3wqDoLIV9ES6ablW3IrCcR8uEK2ppxaNPWhw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.336_1579222951520_0.3436595504592317"},"_hasShrinkwrap":false,"publish_time":1579222951675,"_cnpm_publish_time":1579222951675,"_cnpmcore_publish_time":"2021-12-15T21:11:26.152Z"},"1.3.335":{"name":"electron-to-chromium","version":"1.3.335","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.330.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"58dd39d752d6786ab0a46e71c997dc3d7bc762f5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.335","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"5fb6084a25cb1e2542df91e62b62e1931a602303","size":7614,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.335.tgz","integrity":"sha512-ngKsDGd/xr2lAZvilxTfdvfEiQKmavyXd6irlswaHnewmXoz6JgbM9FUNwgp3NFIUHHegh1F87H8f5BJ8zABxw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.335_1579136551283_0.031013005159814977"},"_hasShrinkwrap":false,"publish_time":1579136551444,"_cnpm_publish_time":1579136551444,"_cnpmcore_publish_time":"2021-12-15T21:11:26.432Z"},"1.3.334":{"name":"electron-to-chromium","version":"1.3.334","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.329.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1923ebd65694a563b599c34e8d94173d92d45cf7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.334","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"0588359f4ac5c4185ebacdf5fc7e1937e2c99872","size":7604,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.334.tgz","integrity":"sha512-RcjJhpsVaX0X6ntu/WSBlW9HE9pnCgXS9B8mTUObl1aDxaiOa0Lu+NMveIS5IDC+VELzhM32rFJDCC+AApVwcA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.334_1579035751805_0.7758860506625624"},"_hasShrinkwrap":false,"publish_time":1579035751961,"_cnpm_publish_time":1579035751961,"_cnpmcore_publish_time":"2021-12-15T21:11:26.641Z"},"1.3.333":{"name":"electron-to-chromium","version":"1.3.333","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.328.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2cf12e44097a6fa67cd4f5b988a96c3a96996823","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.333","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b835de183afbaaf8655a14f542db06d67a00cba1","size":7593,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.333.tgz","integrity":"sha512-7MJfCpa/tmhqYy2lZ1NEbkSxH7q3KiZiepiSs2ayTPAweAjdzGXotij+7OKPPb3OwJD2ZuBKPrA2HIuuSi6ahw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.333_1578963752216_0.7861139610527668"},"_hasShrinkwrap":false,"publish_time":1578963752355,"_cnpm_publish_time":1578963752355,"_cnpmcore_publish_time":"2021-12-15T21:11:26.818Z"},"1.3.332":{"name":"electron-to-chromium","version":"1.3.332","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.327.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"905a67c61cb56e28e0af2146fc41b0cfbb61b4b2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.332","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"283df02d8269e25d9e2f424e11e909c9730a8a82","size":7584,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.332.tgz","integrity":"sha512-AP2HkLhfSOIxP7gDjlyZ4ywGWIcxRMZoU9+JriuVkQe2pSLDdWBsE6+eI6BQOqun1dohLrUTOPHsQLLhhFA7Eg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.332_1578790953366_0.7223869720132314"},"_hasShrinkwrap":false,"publish_time":1578790953517,"_cnpm_publish_time":1578790953517,"_cnpmcore_publish_time":"2021-12-15T21:11:27.020Z"},"1.3.331":{"name":"electron-to-chromium","version":"1.3.331","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.326.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"95b85899b80c0cb682b6731ebeeb4a9ea4fe81ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.331","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6dcf73db9ecd3b518818fdd50a8aa3bc52df8237","size":7580,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.331.tgz","integrity":"sha512-GuDv5gkxwRROYnmIVFUohoyrNapWCKLNn80L7Pa+9WRF/oY4t7XLH7wBMsYBgIRwi8BvEvsGKLKh8kOciOp6kA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.331_1578704551640_0.31330505308364476"},"_hasShrinkwrap":false,"publish_time":1578704551833,"_cnpm_publish_time":1578704551833,"_cnpmcore_publish_time":"2021-12-15T21:11:27.210Z"},"1.3.330":{"name":"electron-to-chromium","version":"1.3.330","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.325.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3b52e73938c68222963628fbbca340471f56e804","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.330","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"c288aeb89fa2c15879c29f81a4362374132387fb","size":7570,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.330.tgz","integrity":"sha512-CUHUJ1c5mOqowGPhmSMHUDpZMpE33vocs77fCxIhVMG4tFNYSNhgE9n0WURxOgVO7nWaZpCiNTMwiHF8NAyP/Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.330_1578618151805_0.31558053042216083"},"_hasShrinkwrap":false,"publish_time":1578618151927,"_cnpm_publish_time":1578618151927,"_cnpmcore_publish_time":"2021-12-15T21:11:27.405Z"},"1.3.329":{"name":"electron-to-chromium","version":"1.3.329","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.324.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"af166c1867e94833acf96b2af6a557756321d8f3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.329","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"ff3644fb216bdccc33b2063c36f679deb5316cde","size":7560,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.329.tgz","integrity":"sha512-CoyYGbkQLwmOpaWRUZgeSNnEPH5fE5R8T7dhQIWV/rlIt+Kx6NFppQJ2oHELmzw8ZGabOBY5CrjGjyA+74QVoQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.329_1578531754519_0.02092742980108797"},"_hasShrinkwrap":false,"publish_time":1578531754733,"_cnpm_publish_time":1578531754733,"_cnpmcore_publish_time":"2021-12-15T21:11:27.675Z"},"1.3.328":{"name":"electron-to-chromium","version":"1.3.328","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.323.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1ce344de8a361c61b8f68e2cc5335c7f4764081c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.328","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a619575c42f1d5b443103664f25ffa5a80190ee5","size":7547,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.328.tgz","integrity":"sha512-x4XefnFxDxFwaQ01d/pppJP9meWhOIJ/gtI6/4jqkpsadq79uL7NYSaX64naLmJqvzUBjSrO3IM2+1b/W9KdPg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.328_1578358952874_0.2760195482629635"},"_hasShrinkwrap":false,"publish_time":1578358952997,"_cnpm_publish_time":1578358952997,"_cnpmcore_publish_time":"2021-12-15T21:11:27.882Z"},"1.3.327":{"name":"electron-to-chromium","version":"1.3.327","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.322.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e4bbdacac49b142faee439dd3ae7eb38e561a4ac","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.327","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"516f28b4271727004362b4ac814494ae64d9dde7","size":7539,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.327.tgz","integrity":"sha512-DNMd91VtKt44LIkFtpICxAWu/GSGFLUMDM/kFINJ3Oe47OimSnbMvO3ChkUCdUyit+pRdhdCcM3+i5bpli5gqg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.327_1578315744245_0.6619574568381412"},"_hasShrinkwrap":false,"publish_time":1578315744518,"_cnpm_publish_time":1578315744518,"_cnpmcore_publish_time":"2021-12-15T21:11:28.094Z"},"1.3.326":{"name":"electron-to-chromium","version":"1.3.326","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.322.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"000c9907ad9f6e485639ade11caa8e6762996d44","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.326","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"71715aca9afd328ea208a3bc4651c15b869f0d1b","size":7531,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.326.tgz","integrity":"sha512-kaBmGWJlLW5bGEbm7/HWG9jt4oH+uecBIIfzFWfFkgqssPT2I6RDenGqo4wmKzm7seNu7DSCRZBXCuf7w8dtkQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.326_1578258148309_0.2656787835265064"},"_hasShrinkwrap":false,"publish_time":1578258148482,"_cnpm_publish_time":1578258148482,"_cnpmcore_publish_time":"2021-12-15T21:11:28.301Z"},"1.3.325":{"name":"electron-to-chromium","version":"1.3.325","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.321.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9d2688d63a73ab3f75bafb6395673bfc6173efde","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.325","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"885a7d2a0c89784e0f0bfd1a61428476aea29108","size":7530,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.325.tgz","integrity":"sha512-fc2oa74paAVcf4i6fEHxi0xtnmyWtLuhERmux48icCYzBQyysjDtmDbXQ6JCdiDSYSNlKBcSbT7H4WIbrvxQ6g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.325_1578214946371_0.7430835058553129"},"_hasShrinkwrap":false,"publish_time":1578214946584,"_cnpm_publish_time":1578214946584,"_cnpmcore_publish_time":"2021-12-15T21:11:28.545Z"},"1.3.324":{"name":"electron-to-chromium","version":"1.3.324","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.320.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8b412f227f30805ea311529758d1b899ff701f3a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.324","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"7f98e2c6e018429dd70cc1b424e56caf6b3a780f","size":7533,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.324.tgz","integrity":"sha512-vUy6gQxyvf+5nB9cIpjfYEm4hP1EQFCuhAX1J+IarlQEsc/8j/TFe6qqjRhVhjFLpNQRx4r/iA/LEvDt9xkLow=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.324_1578186153151_0.6842379811576156"},"_hasShrinkwrap":false,"publish_time":1578186153296,"_cnpm_publish_time":1578186153296,"_cnpmcore_publish_time":"2021-12-15T21:11:28.751Z"},"1.3.323":{"name":"electron-to-chromium","version":"1.3.323","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.319.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d1917b2397921eab190ddf78058c68934bbe14a9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.323","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"05fde422376ef28de718261b2acc7fb33f94a391","size":7531,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.323.tgz","integrity":"sha512-c7pOUGnqNv6otzwcedViWOTGMEUG70PkhrTzVtc20Txh9nDC4s8zWvocJl7q+OpoC0ACXtxud8PX2y8zk/RZiw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.323_1578099753532_0.35414946090768673"},"_hasShrinkwrap":false,"publish_time":1578099753647,"_cnpm_publish_time":1578099753647,"_cnpmcore_publish_time":"2021-12-15T21:11:28.935Z"},"1.3.322":{"name":"electron-to-chromium","version":"1.3.322","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.296.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5f0ae9bd30cfa41135c426b48a3ab38680387b66","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.322","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a6f7e1c79025c2b05838e8e344f6e89eb83213a8","size":7040,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz","integrity":"sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.322_1575320560025_0.48771288915738964"},"_hasShrinkwrap":false,"publish_time":1575320560165,"_cnpm_publish_time":1575320560165,"_cnpmcore_publish_time":"2021-12-15T21:11:29.116Z"},"1.3.321":{"name":"electron-to-chromium","version":"1.3.321","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.295.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dbe2699187bd015f7f2154d135a327b32a673784","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.321","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"913869f5ec85daabba0e75c9c314b4bf26cdb01e","size":7029,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.321.tgz","integrity":"sha512-jJy/BZK2s2eAjMPXVMSaCmo7/pSY2aKkfQ+LoAb5Wk39qAhyP9r8KU74c4qTgr9cD/lPUhJgReZxxqU0n5puog=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.321_1575248555785_0.5529229683022834"},"_hasShrinkwrap":false,"publish_time":1575248555927,"_cnpm_publish_time":1575248555927,"_cnpmcore_publish_time":"2021-12-15T21:11:29.326Z"},"1.3.320":{"name":"electron-to-chromium","version":"1.3.320","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.294.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3a7eb9c1e1d7d112648b6d4cfb345c4565bdb232","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.320","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"3b101b4ba1db2f97da72f187826b4e78c30f30fd","size":7017,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.320.tgz","integrity":"sha512-GVyRfGaKs/Vsf915WDaK5NG9vfud8nJFyapyQcrVS+sp8IeMpfml/YMvhthXsSOLlc0rzwdtnkNJE/+q4EPbTA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.320_1575234146612_0.5697672683822743"},"_hasShrinkwrap":false,"publish_time":1575234146728,"_cnpm_publish_time":1575234146728,"_cnpmcore_publish_time":"2021-12-15T21:11:29.565Z"},"1.3.319":{"name":"electron-to-chromium","version":"1.3.319","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.293.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"247fb72b423d76f586181ad9a90f415480f774df","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.319","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"b7d59a93b6959fcf50a526f50ef637d045ebcb19","size":7016,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.319.tgz","integrity":"sha512-t/lYNZPwS9jLJ9SBLGd6ERYtCtsYPAXzsE1VYLshrUWpQCTAswO1pERZV4iOZipW2uVsGQrJtm2iWiYVp1zTZw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.319_1575162147933_0.6101536234330376"},"_hasShrinkwrap":false,"publish_time":1575162148160,"_cnpm_publish_time":1575162148160,"_cnpmcore_publish_time":"2021-12-15T21:11:29.817Z"},"1.3.318":{"name":"electron-to-chromium","version":"1.3.318","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.292.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6eb750c945d3d1301115cdf6987461bab3950c15","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.318","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"267ce297062fe25c229698827f3229b0ac11c0cf","size":7019,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.318.tgz","integrity":"sha512-1RHv5OZGuVKvWYMVR6g1QVQVrsJRaujry04R/6t/7JVs68Ra4V8ewv63fiwcq0uiT302lyTocc1rbNcRuj/HLA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.318_1575147752808_0.8871752950610641"},"_hasShrinkwrap":false,"publish_time":1575147752945,"_cnpm_publish_time":1575147752945,"_cnpmcore_publish_time":"2021-12-15T21:11:30.015Z"},"1.3.317":{"name":"electron-to-chromium","version":"1.3.317","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.291.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0688b4735c9f4f41d91d8ab7813123f3fc0f9a74","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.317","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"cb7aaf677e92eb34059a1fd61e1144671363c11b","size":7014,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.317.tgz","integrity":"sha512-C7sfpr1I1zqDurrfyVFhL450NFLeZrDYy5DeUuJBkEhBZbhyJ7JEZn741J+jcXCBaQ8S6j75XomLDHOLmLOdFQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.317_1575090146271_0.7054505072432102"},"_hasShrinkwrap":false,"publish_time":1575090146386,"_cnpm_publish_time":1575090146386,"_cnpmcore_publish_time":"2021-12-15T21:11:30.249Z"},"1.3.316":{"name":"electron-to-chromium","version":"1.3.316","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.291.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f8d404265389727139869d6b8418972f41b59a43","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.316","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"d0672d1e8a1164568357fa626e751e9b371d1568","size":7007,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.316.tgz","integrity":"sha512-FRYFEMZW5VLWGPy1D9WKuQ2fsWDC1+D26MpPK9OpDBMfxoab5Ks0Fh9DHROF2hmqqc+Kr7qJ7IadNiI8WpAueg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.316_1575075748266_0.5260692362569308"},"_hasShrinkwrap":false,"publish_time":1575075748401,"_cnpm_publish_time":1575075748401,"_cnpmcore_publish_time":"2021-12-15T21:11:30.471Z"},"1.3.315":{"name":"electron-to-chromium","version":"1.3.315","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.290.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b911e0a91be0afa5a2f95ce52e197fc01d94e3fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.315","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a28059ca85afe04c4dc78430017948fcec1ceef8","size":7007,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.315.tgz","integrity":"sha512-vjb/985qplro8hR0MshKPc+CD091yBY1OGtUCjCX9HlcoVSz7awUdwpgpin0/JSgdW2+RasGGVNCpufY1Ieqkw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.315_1575061347120_0.8011443033491552"},"_hasShrinkwrap":false,"publish_time":1575061349263,"_cnpm_publish_time":1575061349263,"_cnpmcore_publish_time":"2021-12-15T21:11:30.683Z"},"1.3.314":{"name":"electron-to-chromium","version":"1.3.314","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.289.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"47e9fc1a4f2adbc255fca114dd4e33abf143b8dd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.314","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"c186a499ed2c9057bce9eb8dca294d6d5450facc","size":7008,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.314.tgz","integrity":"sha512-IKDR/xCxKFhPts7h+VaSXS02Z1mznP3fli1BbXWXeN89i2gCzKraU8qLpEid8YzKcmZdZD3Mly3cn5/lY9xsBQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.314_1574643755042_0.7519844850778878"},"_hasShrinkwrap":false,"publish_time":1574643755160,"_cnpm_publish_time":1574643755160,"_cnpmcore_publish_time":"2021-12-15T21:11:30.883Z"},"1.3.313":{"name":"electron-to-chromium","version":"1.3.313","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.288.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"238b5e3b6c745567fc6d6792414a03cedfaed4ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.313","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6c63d8698ec4193b7e51e28531c47c88f1104579","size":7002,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.313.tgz","integrity":"sha512-rWbB6P3kPpWez/BZqrVatQ+lxJaDTv9pWgUUGYAA0/O5+YZLm6RiGy2Roml6rQj4EJ4r/eTdO0ppOZUUP2oFpQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.313_1574629345750_0.008712625506990035"},"_hasShrinkwrap":false,"publish_time":1574629345886,"_cnpm_publish_time":1574629345886,"_cnpmcore_publish_time":"2021-12-15T21:11:31.677Z"},"1.3.312":{"name":"electron-to-chromium","version":"1.3.312","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.287.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"785627e3fbfd715e82603390469003eda13f3cd8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.312","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"6ef8700096e4a726b9cd7285523561629fa70e12","size":7004,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.312.tgz","integrity":"sha512-/Nk6Hvwt+RfS9X3oA4IXpWqpcnS7cdWsTMP4AmrP8hPpxtZbHemvTEYzjAKghk28aS9zIV8NwGHNt8H+6OmJug=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.312_1574542953666_0.9091285510536513"},"_hasShrinkwrap":false,"publish_time":1574542953773,"_cnpm_publish_time":1574542953773,"_cnpmcore_publish_time":"2021-12-15T21:11:31.946Z"},"1.3.311":{"name":"electron-to-chromium","version":"1.3.311","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.286.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e4b8fe6b7cddc97f8bfabce84cea5a045c074029","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.311","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"73baa361e2b1f44b7b4f1a443aaa1372f8074ebb","size":7004,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.311.tgz","integrity":"sha512-7GH6RKCzziLzJ9ejmbiBEdzHZsc6C3eRpav14dmRfTWMpNgMqpP1ukw/FU/Le2fR+ep642naq7a23xNdmh2s+A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.311_1574456622831_0.45330808743780615"},"_hasShrinkwrap":false,"publish_time":1574456623037,"_cnpm_publish_time":1574456623037,"_cnpmcore_publish_time":"2021-12-15T21:11:32.503Z"},"1.3.310":{"name":"electron-to-chromium","version":"1.3.310","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.285.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"999232cc09c28add17c9f8004bb1358711d6e0fc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.310","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"a6c0c194d93ff54fcdc6dc3843689abb5c4dec0c","size":6997,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.310.tgz","integrity":"sha512-ixvxy46JrDv5c8k1+th66Z+xDZD8zShNs6oh7hgyMpNZUgaoRBisXgFZKAyyhQTAj7oU2Y/uZ0AAsj/TY4N0tA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.310_1574370151668_0.4256280330217945"},"_hasShrinkwrap":false,"publish_time":1574370151800,"_cnpm_publish_time":1574370151800,"_cnpmcore_publish_time":"2021-12-15T21:11:32.858Z"},"1.3.309":{"name":"electron-to-chromium","version":"1.3.309","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.284.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a48a7642c3067045a6831381f53e497796ff7860","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.309","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"9e1e5e23c73d04f0364e524afaafd6659289ae1b","size":6983,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.309.tgz","integrity":"sha512-NZd91XD15v2UPLjYXoN/gLnkwIUQjdH4SQLpRCCQiYJH6BBkfgp5pWemBJPr1rZ2dl8Ee3o91O9Sa1QuAfZmog=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.309_1574326950273_0.7742475486873219"},"_hasShrinkwrap":false,"publish_time":1574326950392,"_cnpm_publish_time":1574326950392,"_cnpmcore_publish_time":"2021-12-15T21:11:33.097Z"},"1.3.307":{"name":"electron-to-chromium","version":"1.3.307","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.282.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ce60329ccf0fa20b187c0804b71b4133ddb626c6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.307","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e9b98901371d20164af7c0ca5bc820bd4305ccd3","size":6959,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.307.tgz","integrity":"sha512-01rTsAqHwf3D2X6NtlUvzB2hxDj67kiTVIO5GWdFb2unA0QvFvrjyrtc993ByRLF+surlr+9AvJdD0UYs5HzwA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.307_1574240553771_0.4003789883967994"},"_hasShrinkwrap":false,"publish_time":1574240553901,"_cnpm_publish_time":1574240553901,"_cnpmcore_publish_time":"2021-12-15T21:12:04.087Z"},"1.3.306":{"name":"electron-to-chromium","version":"1.3.306","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.281.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d23241b5b8d6679bbc2c3d3173c07707d16f4a72","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.306","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"e8265301d053d5f74e36cb876486830261fbe946","size":6944,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.306.tgz","integrity":"sha512-frDqXvrIROoYvikSKTIKbHbzO6M3/qC6kCIt/1FOa9kALe++c4VAJnwjSFvf1tYLEUsP2n9XZ4XSCyqc3l7A/A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.306_1573174951380_0.4234866392208638"},"_hasShrinkwrap":false,"publish_time":1573174951497,"_cnpm_publish_time":1573174951497,"_cnpmcore_publish_time":"2021-12-15T21:12:04.327Z"},"1.3.305":{"name":"electron-to-chromium","version":"1.3.305","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.280.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"699d97b6fe2bf1e1e3e2c7d66aa94cbea32ca78b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.305","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"64f38c2986277b15c7b2c81954171ed22bee249b","size":6941,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.305.tgz","integrity":"sha512-jBEhRZ3eeJWf3eAnGYB1vDy09uBQpZWshC5fxiiIRofA9L3vkpa3SxsXleVS2MvuYir15oTVxzWPsOwj7KBzUw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.305_1573088552022_0.14379473997682934"},"_hasShrinkwrap":false,"publish_time":1573088552144,"_cnpm_publish_time":1573088552144,"_cnpmcore_publish_time":"2021-12-15T21:12:04.519Z"},"1.3.304":{"name":"electron-to-chromium","version":"1.3.304","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.279.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3dba4575ddf1b45f9fc28bbc51885953740ef8ef","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.304","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"49b47d961f8143116174c2f70fbfee3aabf43015","size":6974,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.304.tgz","integrity":"sha512-a5mqa13jCdBc+Crgk3Gyr7vpXCiFWfFq23YDCEmrPYeiDOQKZDVE6EX/Q4Xdv97n3XkcjiSBDOY0IS19yP2yeA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.304_1572987751004_0.19671267379780355"},"_hasShrinkwrap":false,"publish_time":1572987751154,"_cnpm_publish_time":1572987751154,"_cnpmcore_publish_time":"2021-12-15T21:12:04.832Z"},"1.3.303":{"name":"electron-to-chromium","version":"1.3.303","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.278.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cdd9537ebed5e9be603fd6f3bcb718b5e5927f99","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.303","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3059bcc39c1c3b492ca381d577b6a49b5050085e","size":6947,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.303.tgz","integrity":"sha512-xDFPmMjJ0gQBsVwspB0bjcbFn3MVcvU0sxXYmh1UMbZ6rDogQVM3vSyOvTO4rym1KlnJIU6nqzK3qs0yKudmjw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.303_1572958951036_0.06265692397720612"},"_hasShrinkwrap":false,"publish_time":1572958951218,"_cnpm_publish_time":1572958951218,"_cnpmcore_publish_time":"2021-12-15T21:12:05.024Z"},"1.3.302":{"name":"electron-to-chromium","version":"1.3.302","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.277.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b934f39daaa3f579744eed56bd2c9d7c7e6033db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.302","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4c7ba3d56166507a56f7eb603fdde1ed701f5ac8","size":6928,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.302.tgz","integrity":"sha512-1qConyiVEbj4xZRBXqtGR003+9tV0rJF0PS6aeO0Ln/UL637js9hdwweCl07meh/kJoI2N4W8q3R3g3F5z46ww=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.302_1572710549565_0.8828126621946919"},"_hasShrinkwrap":false,"publish_time":1572710549748,"_cnpm_publish_time":1572710549748,"_cnpmcore_publish_time":"2021-12-15T21:12:05.211Z"},"1.3.301":{"name":"electron-to-chromium","version":"1.3.301","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.276.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0783ba09d18d03aaac46a2d83cd132ccd04db3a4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.301","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a501a4542ceb78eeba55736fdaafb64a4c421a3a","size":6928,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.301.tgz","integrity":"sha512-MRUScWKAi/zh0B0vCOIWTXvFZDdCGtqFH9rmB0r8s6CR6zPgDFpc80JYj/kEB7dvoU5LpwGhIxF4BkeUWwKlqA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.301_1572681747999_0.2538968965356563"},"_hasShrinkwrap":false,"publish_time":1572681748165,"_cnpm_publish_time":1572681748165,"_cnpmcore_publish_time":"2021-12-15T21:12:05.432Z"},"1.3.300":{"name":"electron-to-chromium","version":"1.3.300","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.275.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"052ef1972937c66d406ed072a3ccf94eb8e9491d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.300","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"65aad6a951886261e26671bbba8b6be67006cab0","size":6924,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.300.tgz","integrity":"sha512-7cKPexKxQn2vuumHVmTdtTXojzmMDtksyOrUSRZkYgLTEHKjmBXAistDrFIhDiPguw8Y6ZSS/HINRx2FPIgUIA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.300_1572667349291_0.7216182497709722"},"_hasShrinkwrap":false,"publish_time":1572667349447,"_cnpm_publish_time":1572667349447,"_cnpmcore_publish_time":"2021-12-15T21:12:05.647Z"},"1.3.299":{"name":"electron-to-chromium","version":"1.3.299","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.274.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b7b3e3aee784d37a9fe0391ecbe6d3d731427c80","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.299","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9113b733247c68b87e07cb7c940a22913fb74d38","size":6906,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.299.tgz","integrity":"sha512-aH3lKMQFPuNk4w7W3hQDqnjfYKJQLzbp5Adn6xgTz5547kKSGOmAU7cQWxH953L4ntZL4HsZ8XWqfcMTvTcEMw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.299_1572638549708_0.03307155616925472"},"_hasShrinkwrap":false,"publish_time":1572638549849,"_cnpm_publish_time":1572638549849,"_cnpmcore_publish_time":"2021-12-15T21:12:05.858Z"},"1.3.298":{"name":"electron-to-chromium","version":"1.3.298","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.273.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"41dbb11e09cbd6a912d9dc762d591e6d80408b12","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.298","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6f2b09c9b4ffca6a6745d80272dad987bcf5689c","size":6877,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.298.tgz","integrity":"sha512-IcgwlR5x4qtsVr1X+GDnbDEp0bAAqRA9EHP+bvIn3g5KF59Eiqjm59p27tg8b4YmgmpjfKWgec3trDRTWiVJgg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.298_1572595350412_0.0379891912502186"},"_hasShrinkwrap":false,"publish_time":1572595350556,"_cnpm_publish_time":1572595350556,"_cnpmcore_publish_time":"2021-12-15T21:12:06.076Z"},"1.3.297":{"name":"electron-to-chromium","version":"1.3.297","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.272.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"493c676351d3f53823835f87977f613a2e876945","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.297","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e28621c1b36c0c4556fdc70b4f4a7fe16a1866e3","size":6870,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.297.tgz","integrity":"sha512-Q5BHIOJcWhDIz5FmVGv991O0LM0iWtfmGt1L3av+mmpIbIzmv4IWYpHhJcFoCdmbO8up0KqtvYUrH1vlbUP2Eg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.297_1572552150484_0.9884845169665948"},"_hasShrinkwrap":false,"publish_time":1572552150629,"_cnpm_publish_time":1572552150629,"_cnpmcore_publish_time":"2021-12-15T21:12:06.319Z"},"1.3.296":{"name":"electron-to-chromium","version":"1.3.296","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.271.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"318833421659a8c4fd9a6578835f517778aa3828","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.296","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a1d4322d742317945285d3ba88966561b67f3ac8","size":6870,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.296.tgz","integrity":"sha512-s5hv+TSJSVRsxH190De66YHb50pBGTweT9XGWYu/LMR20KX6TsjFzObo36CjVAzM+PUeeKSBRtm/mISlCzeojQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.296_1571976147445_0.964005863603614"},"_hasShrinkwrap":false,"publish_time":1571976147603,"_cnpm_publish_time":1571976147603,"_cnpmcore_publish_time":"2021-12-15T21:12:06.546Z"},"1.3.295":{"name":"electron-to-chromium","version":"1.3.295","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.270.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4a8c482162e478f66626176441268ae596a8f77c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.295","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4727eabfa2642f9b21c43ec17d794c004724657b","size":6846,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.295.tgz","integrity":"sha512-KxlGE9GcZTv7xGwYJGMEABHJq2JuTMNF7jD8NwHk6sBY226mW+Dyp9kZmA2Od9tKHMCS7ltPnqFg+zq3jTWN7Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.295_1571889747670_0.7337313865747126"},"_hasShrinkwrap":false,"publish_time":1571889747801,"_cnpm_publish_time":1571889747801,"_cnpmcore_publish_time":"2021-12-15T21:12:06.752Z"},"1.3.294":{"name":"electron-to-chromium","version":"1.3.294","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.269.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cb1a41b91848f8ad7459938ee5713bd6d82b95ec","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.294","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"bf732e1c531395b81f508bfc2a0098c75e860142","size":6840,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.294.tgz","integrity":"sha512-PR6e84kZbW2iQW+jJI0cg500LHzhoi+LPsmOnvHlu41OLE0CTAx2vphJUzkRmX8bwZ85QlVvn0tb/D6QmqdZxQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.294_1571860951183_0.8204155967740558"},"_hasShrinkwrap":false,"publish_time":1571860951333,"_cnpm_publish_time":1571860951333,"_cnpmcore_publish_time":"2021-12-15T21:12:06.993Z"},"1.3.293":{"name":"electron-to-chromium","version":"1.3.293","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.268.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b323a06b00aba4b0287b90d4bbaf0ae5a474eddf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.293","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e52a30026b89276e211be36083a4d7136fd480ea","size":6832,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.293.tgz","integrity":"sha512-DQSBRuU2Z1vG+CEWUIfCEVMHtuaGlhVojzg39mX5dx7PLSFDJ7DSrGUWzaPFFgWR1jo26hj1nXXRQZvFwk7F8w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.293_1571817747139_0.5619634695625153"},"_hasShrinkwrap":false,"publish_time":1571817747241,"_cnpm_publish_time":1571817747241,"_cnpmcore_publish_time":"2021-12-15T21:12:07.232Z"},"1.3.292":{"name":"electron-to-chromium","version":"1.3.292","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.267.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"20d31dff5bc32c3f342112d5af1121e168578f82","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.292","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7812fc5138619342f1dd5823df6e9cbb7d2820e9","size":6832,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.292.tgz","integrity":"sha512-hqkem5ANpt6mxVXmhAmlbdG8iicuyM/jEYgmP1tiHPeOLyZoTyGUzrDmJS/xyrrZy9frkW1uQcubicu7f6DS5g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.292_1571731349540_0.7224617330386389"},"_hasShrinkwrap":false,"publish_time":1571731349756,"_cnpm_publish_time":1571731349756,"_cnpmcore_publish_time":"2021-12-15T21:12:07.479Z"},"1.3.291":{"name":"electron-to-chromium","version":"1.3.291","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.266.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5cccae932935c545bfd2b6ec584ffb7c2ee6aac2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.291","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"30b3560e24636eceab2394a3d4a6c228bef3376c","size":6819,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.291.tgz","integrity":"sha512-S/VV87D03cZqIYS5/8sVPp086tGcSW8+VxLArS2L0YzhhhVk+h1n/jKWW5tKo66EQzqqhBW48zw61t5L8zA1ew=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.291_1571716948972_0.3591410769532444"},"_hasShrinkwrap":false,"publish_time":1571716949077,"_cnpm_publish_time":1571716949077,"_cnpmcore_publish_time":"2021-12-15T21:12:07.670Z"},"1.3.290":{"name":"electron-to-chromium","version":"1.3.290","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.265.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"490f35b5f7035e7fde01efe1ec6f2fd197780433","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.290","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a3f345abe4f1fb0a2fedf51193f4f4489bb94a82","size":6809,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.290.tgz","integrity":"sha512-pkKffog2KZ5PPcC8ITNXDpucznLFVVLUS2Us0tBF0Qy9114vzDpgWntvFNE1uYEmMUIrWGFu4rDMHwgQAbNYyQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.290_1571688151672_0.24558774086532043"},"_hasShrinkwrap":false,"publish_time":1571688151816,"_cnpm_publish_time":1571688151816,"_cnpmcore_publish_time":"2021-12-15T21:12:07.896Z"},"1.3.289":{"name":"electron-to-chromium","version":"1.3.289","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.264.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"767e492296a06f8b17e89eacf5ae87e518547bdf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.289","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1f85add5d7086ce95d9361348c26aa9de5779906","size":6805,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.289.tgz","integrity":"sha512-39GEOWgTxtMDk/WjIQLg4W/l1s4FZdiMCqUBLjd92tAXsBPDFLwuwCba5OGhuTdVYm6E128TZIqSnMpeocUlCQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.289_1571630546696_0.226602591068237"},"_hasShrinkwrap":false,"publish_time":1571630546810,"_cnpm_publish_time":1571630546810,"_cnpmcore_publish_time":"2021-12-15T21:12:08.094Z"},"1.3.288":{"name":"electron-to-chromium","version":"1.3.288","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.263.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"99d96c3a00f9eba3fb1ef5e6ff76deaf7662b3cc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.288","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a0cb99308fbf22db85dcfd9f21ff5357d633e9d7","size":6804,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.288.tgz","integrity":"sha512-ud61yGzwhaU1Xj3+erbSQfouP4zFAS61nR+heDLLDYTOWfnkZVMvt09dXk9raam4Rv1vLY5ux5BxTmlDTdx5zQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.288_1571601748814_0.3965974841076141"},"_hasShrinkwrap":false,"publish_time":1571601748970,"_cnpm_publish_time":1571601748970,"_cnpmcore_publish_time":"2021-12-15T21:12:08.311Z"},"1.3.287":{"name":"electron-to-chromium","version":"1.3.287","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.262.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"52038a1725679f90441d5785e82050b50887a943","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.287","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4aabb331e4eaa45c6af2730d32f57a0ae6c42b4c","size":6795,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.287.tgz","integrity":"sha512-0XlYcw6fJQ5Vh735iYJTMHysTMYjCwBFdOtyxhGbE3I9MQ2Wk2WXYIXjY1w8votvzh0fsQRaSVJ/bKUj073E9w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.287_1571544148057_0.8685628250895439"},"_hasShrinkwrap":false,"publish_time":1571544148154,"_cnpm_publish_time":1571544148154,"_cnpmcore_publish_time":"2021-12-15T21:12:08.593Z"},"1.3.286":{"name":"electron-to-chromium","version":"1.3.286","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.261.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f6655237bfb112dcd59b5860dcc0ff4555e19786","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.286","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"eeadbb9c2bc6f85fed9db423e091648c49e8bbcc","size":6795,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.286.tgz","integrity":"sha512-gPvrdAHxCdF2IxCeGEIJdXmor32Czae8+ZLOMsk/qmGAfIgtH7BfXiaBHZHVVHz6L2ouAdR377lzPuOE5wJFZg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.286_1571515348303_0.6388202945883268"},"_hasShrinkwrap":false,"publish_time":1571515348450,"_cnpm_publish_time":1571515348450,"_cnpmcore_publish_time":"2021-12-15T21:12:08.779Z"},"1.3.285":{"name":"electron-to-chromium","version":"1.3.285","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.260.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"36eb4bffbfac801f649dfde7a3c9121b070d8967","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.285","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"909576db2ee4dfec74a87aa30c92f66ebfc78748","size":6766,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.285.tgz","integrity":"sha512-DYR9KW723sUbGK++DCmCmM95AbNXT4Q0tlCFMcYijFjayhuDqlGYR68OemlP8MJj0gjkwdeItIUfd0oLCgw+4A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.285_1571342549280_0.16898335088651062"},"_hasShrinkwrap":false,"publish_time":1571342549408,"_cnpm_publish_time":1571342549408,"_cnpmcore_publish_time":"2021-12-15T21:12:09.018Z"},"1.3.284":{"name":"electron-to-chromium","version":"1.3.284","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.259.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3d3e72c372f1a38397b75f33885898ebf849cbee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.284","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b24359fa4f49b3a7c52afc005d59ec3aa9f6796e","size":6766,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.284.tgz","integrity":"sha512-duOA4IWKH4R8ttiE8q/7xfg6eheRvMKlGqOOcGlDukdHEDJ26Wf7cMrCiK9Am11mswR6E/a23jXVA4UPDthTIw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.284_1571284947144_0.19196883678678534"},"_hasShrinkwrap":false,"publish_time":1571284947234,"_cnpm_publish_time":1571284947234,"_cnpmcore_publish_time":"2021-12-15T21:12:09.217Z"},"1.3.283":{"name":"electron-to-chromium","version":"1.3.283","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.258.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0b316cdf61e5f03c5a2e9f4cf3c8a22fac83b7cd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.283","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"296082f4eca0f53a4c1c4f97946317b39728a5d4","size":6758,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.283.tgz","integrity":"sha512-CqRYkrJlmcr7gD6Gp1jFy1hkdBZMId1OUlrkQGsaaFJMljQ59UqYlbaG8S7d3yQTbD80uzFWK5b5zHkL9dfVeQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.283_1571256155852_0.04296725859470896"},"_hasShrinkwrap":false,"publish_time":1571256155964,"_cnpm_publish_time":1571256155964,"_cnpmcore_publish_time":"2021-12-15T21:12:09.441Z"},"1.3.282":{"name":"electron-to-chromium","version":"1.3.282","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.257.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7a5cf2559b853b9cbd57d44b5dc5b75cbf966e61","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.282","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"16118ae9c79a32ea93a17591d5b16e28d10fc08d","size":6752,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.282.tgz","integrity":"sha512-irSaDeCGgfMu1OA30bhqIBr+dx+pDJjRbwCpob7YWqVZbzXblybNzPGklVnWqv4EXxbkEAzQYqiNCqNTgu00lQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.282_1570910550559_0.27602880657577455"},"_hasShrinkwrap":false,"publish_time":1570910550735,"_cnpm_publish_time":1570910550735,"_cnpmcore_publish_time":"2021-12-15T21:12:09.671Z"},"1.3.281":{"name":"electron-to-chromium","version":"1.3.281","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.256.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f3a2c9b0fe63e5eba93ed39f61e05d74931f4f91","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.281","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2dbeb9f0bdffddb1662f9ca00d26c49d31dc0f7e","size":6752,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.281.tgz","integrity":"sha512-oxXKngPjTWRmXFy4vV9FeAkPl7wU4xMejfOY+HXjGrj4T0z9l96loWWVDLJEtbT/aPKOWKrSz6xoYxd+YJ/gJA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.281_1570824149390_0.05334416097635053"},"_hasShrinkwrap":false,"publish_time":1570824149525,"_cnpm_publish_time":1570824149525,"_cnpmcore_publish_time":"2021-12-15T21:12:09.877Z"},"1.3.280":{"name":"electron-to-chromium","version":"1.3.280","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.255.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d6a0add3dc3c9792bb807be1de53baf4f3bc546e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.280","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5f8950c8329e3e11b59c705fd59b4b8d9b3de5b9","size":6745,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.280.tgz","integrity":"sha512-qYWNMjKLEfQAWZF2Sarvo+ahigu0EArnpCFSoUuZJS3W5wIeVfeEvsgmT2mgIrieQkeQ0+xFmykK3nx2ezekPQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.280_1570651354317_0.8882038901764131"},"_hasShrinkwrap":false,"publish_time":1570651354590,"_cnpm_publish_time":1570651354590,"_cnpmcore_publish_time":"2021-12-15T21:12:10.120Z"},"1.3.279":{"name":"electron-to-chromium","version":"1.3.279","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.254.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"adde23b6f5d1be3ef791b5e0f44957eeb9dc6090","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.279","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"543d578f118afbb750ff1e8f3e0c898c30a4f574","size":6740,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.279.tgz","integrity":"sha512-iiBT/LeUWKnhd7d/n4IZsx/NIacs7gjFgAT1q5/i0POiS+5d0rVnbbyCRMmsBW7vaQJOUhWyh4PsyIVZb/Ax5Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.279_1570608149967_0.23050395422549186"},"_hasShrinkwrap":false,"publish_time":1570608150073,"_cnpm_publish_time":1570608150073,"_cnpmcore_publish_time":"2021-12-15T21:12:10.737Z"},"1.3.278":{"name":"electron-to-chromium","version":"1.3.278","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.253.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"85a0f331f7489c8fbedd560b1ffd64cc85c3d557","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.278","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"04c8f96382395aca225bc340be6b9dbbe2bf50eb","size":6730,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.278.tgz","integrity":"sha512-4cPkOCY5k4z69MHOA96VUt+Wl24AbLHQcm7W9ckabJ/iRe7oBFNMiliw75lK/w++R9bKCUxJ0mFnMRMylnAlbA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.278_1570593749903_0.6983421029002093"},"_hasShrinkwrap":false,"publish_time":1570593750022,"_cnpm_publish_time":1570593750022,"_cnpmcore_publish_time":"2021-12-15T21:12:11.001Z"},"1.3.277":{"name":"electron-to-chromium","version":"1.3.277","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.252.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"368e37e6a78b9f988426991fcaf72e00e9b317c5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.277","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"38b7b297f9b3f67ea900a965c1b11a555de526ec","size":6727,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.277.tgz","integrity":"sha512-Czmsrgng89DOgJlIknnw9bn5431QdtnUwGp5YYiPwU1DbZQUxCLF+rc1ZC09VNAdalOPcvH6AE8BaA0H5HjI/w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.277_1570420950836_0.9128455786804519"},"_hasShrinkwrap":false,"publish_time":1570420950984,"_cnpm_publish_time":1570420950984,"_cnpmcore_publish_time":"2021-12-15T21:12:11.221Z"},"1.3.276":{"name":"electron-to-chromium","version":"1.3.276","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.251.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"15c5d9fe256fa6e72aa897497f792f61b4f1f870","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.276","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1cca47c31b6e852ce43ab62ae4f31608db8b95d4","size":6727,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.276.tgz","integrity":"sha512-J7bVRAW2fHJVOGZqxSvmMcbBAWPiueHsKwSq+TjaNq1wQ71Za0uBExC1ECuMmAAQioDA2//auhI/glFINnUGPw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.276_1570392152612_0.9366950898887525"},"_hasShrinkwrap":false,"publish_time":1570392152727,"_cnpm_publish_time":1570392152727,"_cnpmcore_publish_time":"2021-12-15T21:12:11.415Z"},"1.3.275":{"name":"electron-to-chromium","version":"1.3.275","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.250.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"baa3b2c484ba0429dd79684cff15a1f4b4f0cee0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.275","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"19a38436e34216f51820fa2f4326d5ce141fa36f","size":6720,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.275.tgz","integrity":"sha512-/YWtW/VapMnuYA1lNOaa1F4GhR1LBf+CUTp60lzDPEEh0XOzyOAyULyYZVF9vziZ3qSbTqCwmKwsyRXp66STbw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.275_1570305750636_0.527161305032998"},"_hasShrinkwrap":false,"publish_time":1570305750827,"_cnpm_publish_time":1570305750827,"_cnpmcore_publish_time":"2021-12-15T21:12:12.058Z"},"1.3.274":{"name":"electron-to-chromium","version":"1.3.274","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.249.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"69ead5e6776e1dd476e889ac746815f4d096bd1b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.274","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0fb4624c63eeaabe5aa079da5c2a966f5c916de3","size":6719,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.274.tgz","integrity":"sha512-9bWkiXxGylowqMXoF1ec7k6akmsL2nOa1kzZ4CKzBuwK9WVz0VauE1w/RVyYraE1LpJM7+8fNCsW9b7ZSoxWIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.274_1570219349832_0.3927628983891116"},"_hasShrinkwrap":false,"publish_time":1570219349975,"_cnpm_publish_time":1570219349975,"_cnpmcore_publish_time":"2021-12-15T21:12:12.592Z"},"1.3.273":{"name":"electron-to-chromium","version":"1.3.273","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.248.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e0e4f116b30cfddb3ccc0047f14cf02adc9c5bee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.273","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"94872d6823219f2812f2e35a2ce2a7d03c1eaa3f","size":6707,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.273.tgz","integrity":"sha512-0kUppiHQvHEENHh+nTtvTt4eXMwcPyWmMaj73GPrSEm3ldKhmmHuOH6IjrmuW6YmyS/fpXcLvMQLNVpqRhpNWw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.273_1569988952748_0.38462358046814726"},"_hasShrinkwrap":false,"publish_time":1569988952870,"_cnpm_publish_time":1569988952870,"_cnpmcore_publish_time":"2021-12-15T21:12:12.782Z"},"1.3.272":{"name":"electron-to-chromium","version":"1.3.272","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.247.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"54916002fabe6c1164820eca6afda5261f48f579","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.272","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"946a3532fe187b6e4d3503f3d9aa851739339aa4","size":6705,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.272.tgz","integrity":"sha512-TjsDKYOZGgaD8tUJtRiiBNlIrv2Ol6SxNMy4yeTX0goRmoBhV941m4EN8QjA3vfshs16F5KLDyUv2m7GdTqIgg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.272_1569960149834_0.6793832654627987"},"_hasShrinkwrap":false,"publish_time":1569960150039,"_cnpm_publish_time":1569960150039,"_cnpmcore_publish_time":"2021-12-15T21:12:13.002Z"},"1.3.271":{"name":"electron-to-chromium","version":"1.3.271","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.246.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bdf418a12df837b9be2caf883dff0bcd7a356dbf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.271","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b80899cb03dab6437a1fb909abb6a722440a3215","size":6692,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.271.tgz","integrity":"sha512-c+bEenRFLQrK9tKM7xycKx1aOt6TiLoOujV2LXf1K9zm4kWSMY7BRDBezw2QcYCD0mMwtmbZdhyz9gamRq1J+Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.271_1569945755774_0.1604889794883424"},"_hasShrinkwrap":false,"publish_time":1569945755920,"_cnpm_publish_time":1569945755920,"_cnpmcore_publish_time":"2021-12-15T21:12:13.230Z"},"1.3.270":{"name":"electron-to-chromium","version":"1.3.270","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.245.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"aa87404ed40987f0709e13337a71b16388bee835","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.270","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a3faa2c51f73bf7a020370b3e28a99b32eae47ed","size":6692,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.270.tgz","integrity":"sha512-426qbfgLn0hVE4pDxok2dcAhA3u5lwXlBg2+i6VWQJvnMZNgevkC6s/qr91YH/avVMKXKwxnR5iBznpivg210A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.270_1569873753694_0.21565940833893982"},"_hasShrinkwrap":false,"publish_time":1569873753831,"_cnpm_publish_time":1569873753831,"_cnpmcore_publish_time":"2021-12-15T21:12:13.910Z"},"1.3.269":{"name":"electron-to-chromium","version":"1.3.269","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.244.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1a8e73780e98181138e861944bbcb36dcf8092a4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.269","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3e00cc9266a0123fc2e7b4f290899e257200e6e3","size":6688,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.269.tgz","integrity":"sha512-t2ZTfo07HxkxTOUbIwMmqHBSnJsC9heqJUm7LwQu2iSk0wNhG4H5cMREtb8XxeCrQABDZ6IqQKY3yZq+NfAqwg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.269_1569816152172_0.3074607320916285"},"_hasShrinkwrap":false,"publish_time":1569816152418,"_cnpm_publish_time":1569816152418,"_cnpmcore_publish_time":"2021-12-15T21:12:14.102Z"},"1.3.268":{"name":"electron-to-chromium","version":"1.3.268","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.243.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c0c6b822a31ff994e8d03a21c1bc5afe5215f5f8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.268","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d18f10b064dd0fce39098704896309a8249cb62f","size":6687,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.268.tgz","integrity":"sha512-QkPEya233zGh+1erw/N/GNgLjs+t65wkGX4Yw0X/ZuO75r+4Ropk7toXSUqP3TQ7EIwBDotTks3rbNZ1Kwz8hA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.268_1569787354640_0.1988032128945969"},"_hasShrinkwrap":false,"publish_time":1569787354741,"_cnpm_publish_time":1569787354741,"_cnpmcore_publish_time":"2021-12-15T21:12:14.395Z"},"1.3.267":{"name":"electron-to-chromium","version":"1.3.267","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.242.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fe9596c7e03fbd06270e6675c358cc5402544b44","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.267","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7745ff9d447fd2a9802e1c6dfa518631e0cf5357","size":6684,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.267.tgz","integrity":"sha512-9Q2ixAJC+oHjWNtJV0MQ4vJMCWSowIrC6V6vcr+bwPddTDHj2ddv9xxXCzf4jT/fy6HP7maPoW0gifXkRxCttQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.267_1569528153953_0.6636403921280802"},"_hasShrinkwrap":false,"publish_time":1569528154069,"_cnpm_publish_time":1569528154069,"_cnpmcore_publish_time":"2021-12-15T21:12:14.611Z"},"1.3.266":{"name":"electron-to-chromium","version":"1.3.266","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.241.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"daf62d36f45eb43e724c70b13dbef3ed9f543ebe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.266","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a33fb529c75f8d133e75ea7cbedb73a62f2158d2","size":6676,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.266.tgz","integrity":"sha512-UTuTZ4v8T0gLPHI7U75PXLQePWI65MTS3mckRrnLCkNljHvsutbYs+hn2Ua/RFul3Jt/L3Ht2rLP+dU/AlBfrQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.266_1569384155274_0.9023249964411746"},"_hasShrinkwrap":false,"publish_time":1569384155397,"_cnpm_publish_time":1569384155397,"_cnpmcore_publish_time":"2021-12-15T21:12:14.796Z"},"1.3.265":{"name":"electron-to-chromium","version":"1.3.265","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.240.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a33fe6048392606e18ebc0e8f3dc3e03a541c3da","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.265","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d69afa05a33e551b913a9798f072a6442f46b348","size":6640,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.265.tgz","integrity":"sha512-ypHt5Nv1Abr27QvJqk3VC4YDNqsrrWYMCmpmR7BNfCpcgYEwmCDoi3uJpp6kvj/MIjpScQoZMCQzLqfMQGmOsg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.265_1569297755889_0.6332563090392189"},"_hasShrinkwrap":false,"publish_time":1569297756102,"_cnpm_publish_time":1569297756102,"_cnpmcore_publish_time":"2021-12-15T21:12:15.025Z"},"1.3.264":{"name":"electron-to-chromium","version":"1.3.264","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.239.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7429b55ec6d588f1da1de427b6b307f92687a2ba","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.264","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ed837f44524d0601a7b2b7b6efd86e35753d0e27","size":6628,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.264.tgz","integrity":"sha512-z8E7WkrrquCuGYv+kKyybuZIbdms+4PeHp7Zm2uIgEhAigP0bOwqXILItwj0YO73o+QyHY/7XtEfP5DsHOWQgQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.264_1569038552090_0.6964035774215391"},"_hasShrinkwrap":false,"publish_time":1569038552314,"_cnpm_publish_time":1569038552314,"_cnpmcore_publish_time":"2021-12-15T21:12:15.256Z"},"1.3.263":{"name":"electron-to-chromium","version":"1.3.263","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.238.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"26439eb5ea7e1c6f0772a1afda6b4ff7ba71ba87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.263","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"089957556c0a3e2a3726217449796914e5fe9609","size":6620,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.263.tgz","integrity":"sha512-VfPi+sE/1nEKOV7DWDqWSUGP7ztJG5FeqHbMEj6dBb/arKnxpOCnRXOSC6HBV6qTfK5v8CX7xWCqzN36UqG1oA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.263_1568952150912_0.024674901529871063"},"_hasShrinkwrap":false,"publish_time":1568952151026,"_cnpm_publish_time":1568952151026,"_cnpmcore_publish_time":"2021-12-15T21:12:15.464Z"},"1.3.262":{"name":"electron-to-chromium","version":"1.3.262","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.237.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cd4b99446faf34080dece6a581dfcc54af3dbd31","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.262","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8022933e46e5a2c7b0fd1565d215872326520a7c","size":6601,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.262.tgz","integrity":"sha512-YFr53qZWr2pWkiTUorWEhAweujdf0ALiUp8VkNa0WGtbMVR+kZ8jNy3VTCemLsA4sT6+srCqehNn8TEAD0Ngrw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.262_1568880156221_0.7345430642984419"},"_hasShrinkwrap":false,"publish_time":1568880156400,"_cnpm_publish_time":1568880156400,"_cnpmcore_publish_time":"2021-12-15T21:12:16.083Z"},"1.3.261":{"name":"electron-to-chromium","version":"1.3.261","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.236.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1b92e85b04cd99a7f23bacb0ddb65267fcda8252","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.261","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"51b35a3126fb09b6852f24e907a6d3bd01c67724","size":6603,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.261.tgz","integrity":"sha512-nA9xFj1SgHXlW/6T4+udW2u/Ic/bne25UoFsddoNM7Ut2bgNGLLQUhLhk+vQlbKh9WiRgDDlHaC36Oy7AgRR9w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.261_1568779355009_0.32643733318798374"},"_hasShrinkwrap":false,"publish_time":1568779355172,"_cnpm_publish_time":1568779355172,"_cnpmcore_publish_time":"2021-12-15T21:12:16.290Z"},"1.3.260":{"name":"electron-to-chromium","version":"1.3.260","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.235.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c13c0dd57c4335e550a51b5a765678c890b89305","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.260","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ffd686b4810bab0e1a428e7af5f08c21fe7c1fa2","size":6596,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.260.tgz","integrity":"sha512-wGt+OivF1C1MPwaSv3LJ96ebNbLAWlx3HndivDDWqwIVSQxmhL17Y/YmwUdEMtS/bPyommELt47Dct0/VZNQBQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.260_1568606553209_0.7722585455251003"},"_hasShrinkwrap":false,"publish_time":1568606553402,"_cnpm_publish_time":1568606553402,"_cnpmcore_publish_time":"2021-12-15T21:12:16.494Z"},"1.3.259":{"name":"electron-to-chromium","version":"1.3.259","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.234.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c62c0e8edaaf8d79f8b50e8b780f13f1d0ecd161","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.259","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d0b14836df3c89e86fa47be67315daa642fe9d5c","size":6593,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.259.tgz","integrity":"sha512-NMHS8iQzAYwiFZ1jL/rNOfrZJhvoowKN5uHrbbHOeNgBT5W762wpe/SRLo9kJoTiJ4d2R8i01/NQHwndo9N5PQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.259_1568520156331_0.1746711431117789"},"_hasShrinkwrap":false,"publish_time":1568520156461,"_cnpm_publish_time":1568520156461,"_cnpmcore_publish_time":"2021-12-15T21:12:16.706Z"},"1.3.258":{"name":"electron-to-chromium","version":"1.3.258","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.233.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"742c99f1e14e60c435eb58a5f863abf1a43f93a4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.258","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"829b03be37424099b91aefb6815e8801bf30b509","size":6586,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.258.tgz","integrity":"sha512-rkPYrgFU7k/8ngjHYvzOZ44OQQ1GeIRIQnhGv00RkSlQXEnJKsGonQppbEEWHuuxZegpMao+WZmYraWQJQJMMg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.258_1568433750362_0.9912431763874827"},"_hasShrinkwrap":false,"publish_time":1568433750531,"_cnpm_publish_time":1568433750531,"_cnpmcore_publish_time":"2021-12-15T21:12:16.914Z"},"1.3.257":{"name":"electron-to-chromium","version":"1.3.257","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.232.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9739cc5ab81ba4622bcd0f9e2891541ecdb518da","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.257","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"35da0ad5833b27184c8298804c498a4d2f4ed27d","size":6580,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.257.tgz","integrity":"sha512-EcKVmUeHCZelPA0wnIaSmpAN8karKhKBwFb+xLUjSVZ8sGRE1l3fst1zQZ7KJUkyJ7H5edPd4RP94pzC9sG00A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.257_1568318549615_0.8807136705910881"},"_hasShrinkwrap":false,"publish_time":1568318549701,"_cnpm_publish_time":1568318549701,"_cnpmcore_publish_time":"2021-12-15T21:12:17.104Z"},"1.3.256":{"name":"electron-to-chromium","version":"1.3.256","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.231.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f040e450cc4a5d1f8399ccd8fca44d47a59ea0e8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.256","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7f680d5f04df8e2bd9cb9758026d70f5ff1808a9","size":6570,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.256.tgz","integrity":"sha512-GHY1r2mO56BRMng6rkxxJvsWKtqy9k/IlSBrAV/VKwZKpTydVUJnOwajTNnl5uutJpthHgZy+HeofK5K6PqEgQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.256_1568260951064_0.33591708428576683"},"_hasShrinkwrap":false,"publish_time":1568260951377,"_cnpm_publish_time":1568260951377,"_cnpmcore_publish_time":"2021-12-15T21:12:17.395Z"},"1.3.255":{"name":"electron-to-chromium","version":"1.3.255","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.230.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"53d30b2d75d3bd8c13533fcd29c05ea5a899a8e1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.255","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9f4b4f9ffd559dd7a81fef962186fc918d118b66","size":6565,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.255.tgz","integrity":"sha512-SZ6NlaNw3h4WR5kA1BK8XltdJCax02P+lW+z78RYoLDqmpyYuDQ5bS+/O6MCJ/j761qoZIFox2qYYt+UwqGA5w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.255_1568174549986_0.48428332306579525"},"_hasShrinkwrap":false,"publish_time":1568174550082,"_cnpm_publish_time":1568174550082,"_cnpmcore_publish_time":"2021-12-15T21:12:17.618Z"},"1.3.254":{"name":"electron-to-chromium","version":"1.3.254","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.229.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"8bd716c052ad380ad91a76e7829d378472ec875c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.254","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"af9795b9b2af0729997331a033ddc767af758224","size":6559,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.254.tgz","integrity":"sha512-7I5/OkgR6JKy6RFLJeru0kc0RMmmMu1UnkHBKInFKRrg1/4EQKIqOaUqITSww/SZ1LqWwp1qc/LLoIGy449eYw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.254_1568088151002_0.3039688000089662"},"_hasShrinkwrap":false,"publish_time":1568088151160,"_cnpm_publish_time":1568088151160,"_cnpmcore_publish_time":"2021-12-15T21:12:18.124Z"},"1.3.253":{"name":"electron-to-chromium","version":"1.3.253","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.228.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3b5339f4add83c0f1cae8475c195ec993e2f4f10","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.253","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"bc3b2c94c2a109c08d37b04f526dc05fdabcbb5b","size":6542,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.253.tgz","integrity":"sha512-LAwFRWViiiCSxQ2Lj3mnyEP8atkpAoHSPUnkFoy4mNabbnPHxtfseWvPCGGhewjHQI+ky/V4LdlTyyI0d3YPXA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.253_1567958550452_0.17029196000474545"},"_hasShrinkwrap":false,"publish_time":1567958550748,"_cnpm_publish_time":1567958550748,"_cnpmcore_publish_time":"2021-12-15T21:12:18.334Z"},"1.3.252":{"name":"electron-to-chromium","version":"1.3.252","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.227.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f167138987df15bd194f07f853b9561d3db3ab96","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.252","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5b6261965b564a0f4df0f1c86246487897017f52","size":6533,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.252.tgz","integrity":"sha512-NWJ5TztDnjExFISZHFwpoJjMbLUifsNBnx7u2JI0gCw6SbKyQYYWWtBHasO/jPtHym69F4EZuTpRNGN11MT/jg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.252_1567540950464_0.9761626354703214"},"_hasShrinkwrap":false,"publish_time":1567540950561,"_cnpm_publish_time":1567540950561,"_cnpmcore_publish_time":"2021-12-15T21:12:18.528Z"},"1.3.251":{"name":"electron-to-chromium","version":"1.3.251","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.226.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"382187c3a4a3571fa6b9f2dffdfe197990a74102","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.251","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8dbfe0d5c5d884c456d3d8d83fcb3258ab9eba3a","size":6516,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.251.tgz","integrity":"sha512-C5oOBdqJTYago4PBeew9duLqWZ3SlDnTRM+PMIgZd/ILFrT5AfaAGd3jRNEfuPklFHFqOjfwbCvXpyzEYb5sXg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.251_1567483353092_0.3808899179345868"},"_hasShrinkwrap":false,"publish_time":1567483353268,"_cnpm_publish_time":1567483353268,"_cnpmcore_publish_time":"2021-12-15T21:12:18.807Z"},"1.3.250":{"name":"electron-to-chromium","version":"1.3.250","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.225.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6c08a719d9a79331bd9666e954b4ef0b48afe3dc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.250","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1f383c16aeb75e7bddbd6a0491237eca81b2cb1f","size":6512,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.250.tgz","integrity":"sha512-2OAU91iUw83QvzuWJPfT+FMj+O+DC1EyTx1QBFcc9WZzOQSfZEAWINpdLWElxkgfiqTvQRDOKg0DkMZd9QoNug=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.250_1567396949858_0.255842826446151"},"_hasShrinkwrap":false,"publish_time":1567396949989,"_cnpm_publish_time":1567396949989,"_cnpmcore_publish_time":"2021-12-15T21:12:19.005Z"},"1.3.249":{"name":"electron-to-chromium","version":"1.3.249","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.224.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fe8a578e27eae45cddeecd859b45f1f2ba715922","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.249","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"14173f53c046c738198b04e38154ed4fbb309515","size":6511,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.249.tgz","integrity":"sha512-BSNKVkF67cfgwCOJD3/eyIFi001+8mRoazPJYZRpxxtabToCDCef1vhZMDjA6CPfAdgOI0QMOiGLELgJVYP76Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.249_1567368151035_0.1917248362713606"},"_hasShrinkwrap":false,"publish_time":1567368151178,"_cnpm_publish_time":1567368151178,"_cnpmcore_publish_time":"2021-12-15T21:12:19.255Z"},"1.3.248":{"name":"electron-to-chromium","version":"1.3.248","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.223.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b7a06fb1cca737c87d9582ae3e9739e1832aae74","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.248","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1f5f950797e192e9a951b8a44fc08974b609adcb","size":6499,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.248.tgz","integrity":"sha512-+hQe6xqpODLw9Nr80KoT0/S+YarjNbI9wgZchkOopJLBLPgAsniK184P0IGVs/0NsoZf4lBnQhOsjen9a47Hrg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.248_1567238551391_0.05625563072234474"},"_hasShrinkwrap":false,"publish_time":1567238551666,"_cnpm_publish_time":1567238551666,"_cnpmcore_publish_time":"2021-12-15T21:12:19.532Z"},"1.3.247":{"name":"electron-to-chromium","version":"1.3.247","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.222.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e401d43a91cee308bc45961b6f3ba376eafa750f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.247","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ff2332376150436599265b2dfd7a539f214f4ade","size":6488,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.247.tgz","integrity":"sha512-j/Rzx1FyVTwNifpG/DPQKEMz0mruRwoPpJ6Y1tTVmj6+/zAVzG8/YHZwBMLYCZgQH6seLOqaVxZ3RY3KMrT5IQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.247_1567195351279_0.6413634199870684"},"_hasShrinkwrap":false,"publish_time":1567195351474,"_cnpm_publish_time":1567195351474,"_cnpmcore_publish_time":"2021-12-15T21:12:19.740Z"},"1.3.246":{"name":"electron-to-chromium","version":"1.3.246","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.221.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1618abeb2fb4431bde790c914db09f145575bfad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.246","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"38c30a380398b293f39a19d4346f18e2cb376b72","size":6480,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.246.tgz","integrity":"sha512-CzR7VM16UmZQVgd5I5qu/rx0e67l6FF17rpJD2kRFX9n1ygHFIS+TV9DO55MSZKBGVuQ0Ph1JLLTFEReCKU6nQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.246_1567180953484_0.10152855830445051"},"_hasShrinkwrap":false,"publish_time":1567180953650,"_cnpm_publish_time":1567180953650,"_cnpmcore_publish_time":"2021-12-15T21:12:19.948Z"},"1.3.245":{"name":"electron-to-chromium","version":"1.3.245","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.220.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"518085e354937bdf8ca204ac5a68e8f8704a5dc4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.245","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1829c45165853c37f74e9f6736546917f78a03d4","size":6470,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.245.tgz","integrity":"sha512-W1Tjm8VhabzYmiqLUD/sT/KTKkvZ8QpSkbTfLELBrFdnrolfkCgcbxFE3NXAxL5xedWXF74wWn0j6oVrgBdemw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.245_1567137752289_0.16307267385051105"},"_hasShrinkwrap":false,"publish_time":1567137752393,"_cnpm_publish_time":1567137752393,"_cnpmcore_publish_time":"2021-12-15T21:12:20.191Z"},"1.3.244":{"name":"electron-to-chromium","version":"1.3.244","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.219.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1288a0711a7ca5dd489cbc05d681140a2498d8ba","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.244","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7ba5461fa320ab16540a31b1d0defb7ec29b16e4","size":6466,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.244.tgz","integrity":"sha512-nEfPd2EKnFeLuZ/+JsRG3KixRQwWf2SPpp09ftNt5ouGhg408N759+oXvdXy57+TcM34ykfJYj2JMkc1O3R0lQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.244_1567051350062_0.358466873880972"},"_hasShrinkwrap":false,"publish_time":1567051350168,"_cnpm_publish_time":1567051350168,"_cnpmcore_publish_time":"2021-12-15T21:12:20.402Z"},"1.3.243":{"name":"electron-to-chromium","version":"1.3.243","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.218.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fb4c105090cb80f1c57b75d25e0b6d1d5c5511ab","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.243","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"32f64f00fa121532d1d49f5c0a15fd77f52ae889","size":6458,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.243.tgz","integrity":"sha512-+edFdHGxLSmAKftXa5xZIg19rHkkJLiW+tRu0VMVG3RKztyeKX7d3pXf707lS6+BxB9uBun3RShbxCI1PtBAgQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.243_1566979352199_0.224679476224396"},"_hasShrinkwrap":false,"publish_time":1566979352381,"_cnpm_publish_time":1566979352381,"_cnpmcore_publish_time":"2021-12-15T21:12:20.596Z"},"1.3.242":{"name":"electron-to-chromium","version":"1.3.242","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.217.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"df1c879cef8a92ded3a5fdf658fb344bf1ed77db","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.242","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"58d23cdc254d109d4839f3ae5d9e61846f80a234","size":6450,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.242.tgz","integrity":"sha512-7am5MBcAYfVsnXurXLSBq+I6Sj2TFrEQZ0GgkEHKcAe87Wm+i5hmvsA/zMzBI+zQi/3JOYUnTrGlrxoDYkDxTw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.242_1566964949163_0.9470439123492089"},"_hasShrinkwrap":false,"publish_time":1566964949307,"_cnpm_publish_time":1566964949307,"_cnpmcore_publish_time":"2021-12-15T21:12:20.878Z"},"1.3.241":{"name":"electron-to-chromium","version":"1.3.241","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.216.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"658a9a374d7a50b4a6e13ee3eaac50921e191760","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.241","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"859dc49ab7f90773ed698767372d384190f60cb1","size":6444,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.241.tgz","integrity":"sha512-Gb9E6nWZlbgjDDNe5cAvMJixtn79krNJ70EDpq/M10lkGo7PGtBUe7Y0CYVHsBScRwi6ybCS+YetXAN9ysAHDg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.241_1566792155533_0.01794585019780115"},"_hasShrinkwrap":false,"publish_time":1566792155680,"_cnpm_publish_time":1566792155680,"_cnpmcore_publish_time":"2021-12-15T21:12:21.098Z"},"1.3.240":{"name":"electron-to-chromium","version":"1.3.240","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.215.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2f738c8af6ec2d93d80feb590f3289c26822f19b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.240","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8e278c4d2b3a96fa865725589277c05c8a1e9584","size":6442,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.240.tgz","integrity":"sha512-cMlX5lQpTzLZI0CsC4Mt2sl6z3jz1RvN/8rIqqwqWy3LYCnu8TUf5o8sqST44nP6zIEdjZb0opXq6qswE9o9pA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.240_1566720151869_0.3666545117365856"},"_hasShrinkwrap":false,"publish_time":1566720151984,"_cnpm_publish_time":1566720151984,"_cnpmcore_publish_time":"2021-12-15T21:12:21.285Z"},"1.3.239":{"name":"electron-to-chromium","version":"1.3.239","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.214.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ff4ecaa8a6bca05a6edcafb5ee06115fde41a792","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.239","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"94a1ac83bad33e9897c667152efccfe2df5d7716","size":6441,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.239.tgz","integrity":"sha512-fsLbvTg++Ui8VSWQhMwLwWT5tHD5Dlx0bYym6yeqIlH4kPrPjuiy2Pb6lUDgPJzd2ySjMcmcskcFBE2SqD2/HA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.239_1566705758668_0.5031601966376635"},"_hasShrinkwrap":false,"publish_time":1566705758792,"_cnpm_publish_time":1566705758792,"_cnpmcore_publish_time":"2021-12-15T21:12:21.486Z"},"1.3.238":{"name":"electron-to-chromium","version":"1.3.238","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.213.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f70fc516c01575b40dfe5164f811d131b6a3eacc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.238","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6d6496e393a709b7b186823281d49b1a5d96a6cf","size":6427,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.238.tgz","integrity":"sha512-k+s6EIiSTgfOm7WiMlGBMMMtBQXSui8OfLN1sXU3RohJOuLGVq0lVm7hXyDIDBcbPM0MeZabAdIPQOSEZT3ZLg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.238_1566619352020_0.09032850687842364"},"_hasShrinkwrap":false,"publish_time":1566619352156,"_cnpm_publish_time":1566619352156,"_cnpmcore_publish_time":"2021-12-15T21:12:21.694Z"},"1.3.237":{"name":"electron-to-chromium","version":"1.3.237","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.212.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7bc20e41d4726ce461436e7bd88b65719865d410","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.237","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"39c5d1da59d6fd16ff705b97e772bb3b5dfda7e4","size":6418,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.237.tgz","integrity":"sha512-SPAFjDr/7iiVK2kgTluwxela6eaWjjFkS9rO/iYpB/KGXgccUom5YC7OIf19c8m8GGptWxLU0Em8xM64A/N7Fg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.237_1566360152981_0.6950005617706676"},"_hasShrinkwrap":false,"publish_time":1566360153128,"_cnpm_publish_time":1566360153128,"_cnpmcore_publish_time":"2021-12-15T21:12:21.930Z"},"1.3.236":{"name":"electron-to-chromium","version":"1.3.236","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.211.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2e28b3accd3b61b5f0d039301c86831310bb3c6f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.236","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c7158cbd4d17a3670ac7c9b44da44d752aa193a9","size":6408,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.236.tgz","integrity":"sha512-LWOvuJ80pLO3FtFqTcGuXB0dxdMtzSCkRmbXdY5mHUvXRQGor3sTVmyfU70aD2yF5i+fbHz52ncWr5T3xUYHlA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.236_1566288159593_0.5640380901364208"},"_hasShrinkwrap":false,"publish_time":1566288159892,"_cnpm_publish_time":1566288159892,"_cnpmcore_publish_time":"2021-12-15T21:12:22.160Z"},"1.3.235":{"name":"electron-to-chromium","version":"1.3.235","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.210.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f8988808b17902276ec0f9d12f764f077439bcea","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.235","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8d0d52c9ec76d12189f2f2d265a17d57f41d20dc","size":6382,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.235.tgz","integrity":"sha512-xNabEDbMIKPLQd6xgv4nyyeMaWXIKSJr6G51ZhUemHhbz6kjZAYcygA8CvfEcMF+Mt5eLmDWaLmfSOWdQxzBVQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.235_1566187362321_0.8235488240921147"},"_hasShrinkwrap":false,"publish_time":1566187362559,"_cnpm_publish_time":1566187362559,"_cnpmcore_publish_time":"2021-12-15T21:12:22.384Z"},"1.3.234":{"name":"electron-to-chromium","version":"1.3.234","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.209.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"07ea21b317616620ca06465e4b5f785bde61dfcc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.234","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"38c7daca042de7c0f9ffe9882e98faf8e1ea2420","size":6379,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.234.tgz","integrity":"sha512-SVXY503NJLFAqBx8VdJaO47G+qUQggHgRjZnyjH9/SZ1w0CJpeBrEssNPk71TeKU8OGHdYjjNNHeJ6v+TJoCBg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.234_1566129749507_0.3875026212286923"},"_hasShrinkwrap":false,"publish_time":1566129749641,"_cnpm_publish_time":1566129749641,"_cnpmcore_publish_time":"2021-12-15T21:12:22.563Z"},"1.3.233":{"name":"electron-to-chromium","version":"1.3.233","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.209.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"24e7812b777e4e12dc45a004fb91e72332bf6772","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.233","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d12a0cabe68de4888c97fcb2b0040c50f5e5c212","size":6372,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.233.tgz","integrity":"sha512-5SGW8BObcSmsWHWBAEkBUHKQhBV3vR8MyLZ0ZHOQqh9lHAeD+l5Muosd07AIot7M4JmMblO7ezetxiN1G1/ACg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.233_1566100945667_0.17045577538833445"},"_hasShrinkwrap":false,"publish_time":1566100945888,"_cnpm_publish_time":1566100945888,"_cnpmcore_publish_time":"2021-12-15T21:12:22.776Z"},"1.3.232":{"name":"electron-to-chromium","version":"1.3.232","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.208.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f1af3089615ff4baf47bab7f35962ae9e3f89304","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.232","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3d812f5082b26b852bd4e98818cd86f10b6ff128","size":6371,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.232.tgz","integrity":"sha512-11F8S49B+8AJy5V540BofxvJ1tWP4wZZ0sOre6KF32evS1YSHXiUB7+TQ/mjrfzg1lirnlA8XDdU8CDcJrBCbA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.232_1566028947344_0.7636793606271564"},"_hasShrinkwrap":false,"publish_time":1566028947471,"_cnpm_publish_time":1566028947471,"_cnpmcore_publish_time":"2021-12-15T21:12:23.424Z"},"1.3.231":{"name":"electron-to-chromium","version":"1.3.231","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.208.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"933cc465eab775bd5467ef416f0576ecf8114fbf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.231","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8e1998a97fb0bf473d8d08fa688dbbfd7ce6cc31","size":6363,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.231.tgz","integrity":"sha512-8yUPELSlg6IZSyx4llJK3Ru5xHwcUERCGJeHaRiLxy32HbSIp2uMK22Qqf2mQQY/LIU4D91xs2ikXVOf2SvSSw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.231_1566014545290_0.7296293008816008"},"_hasShrinkwrap":false,"publish_time":1566014545418,"_cnpm_publish_time":1566014545418,"_cnpmcore_publish_time":"2021-12-15T21:12:23.664Z"},"1.3.230":{"name":"electron-to-chromium","version":"1.3.230","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.207.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d2e91e4cb17fdea17129d5ae9a830e78fd548cae","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.230","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2d0618cb6f724391d5fd0926dde84d6c67cbcda9","size":6364,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.230.tgz","integrity":"sha512-r0RljY5DZi9RX4v8mjHxJkDWnQe+nsrkGlHtrDF2uvZcvAkw+iglvlQi1794gZhwRtJoDOomMJlDHL2LfXSCZA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.230_1565928161857_0.9015120179754419"},"_hasShrinkwrap":false,"publish_time":1565928161963,"_cnpm_publish_time":1565928161963,"_cnpmcore_publish_time":"2021-12-15T21:12:23.889Z"},"1.3.229":{"name":"electron-to-chromium","version":"1.3.229","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.206.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"afa482919409b1f37373f31659eb3e890e1ba5e9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.229","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"accc9a08dd07d0a4d6c76937821bc94eb2e49eae","size":6354,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.229.tgz","integrity":"sha512-N6pUbSuKFBeUifxBZp9hODS1N9jFobJYW47QT2VvZIr+G5AWnHK/iG3ON9RPRGH7lHDQ6KUDVhzpNkj4ZiznoA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.229_1565870545738_0.33387640025628107"},"_hasShrinkwrap":false,"publish_time":1565870545859,"_cnpm_publish_time":1565870545859,"_cnpmcore_publish_time":"2021-12-15T21:12:24.456Z"},"1.3.228":{"name":"electron-to-chromium","version":"1.3.228","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.206.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"14f6457622b81dda08e1457dfc400e1c00b0518d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.228","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8b1804bae329e2029ad6b25fbb15d9200fb12894","size":6333,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.228.tgz","integrity":"sha512-m3k/OYd9sCLFOAtvl6vqgXfzbG8iY1mLYg0fQjQGB46LpPudYDUFUmiSmj2meJsHEUABWXH1ZRSCeWj265v2RQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.228_1565856145084_0.8525687384391116"},"_hasShrinkwrap":false,"publish_time":1565856145254,"_cnpm_publish_time":1565856145254,"_cnpmcore_publish_time":"2021-12-15T21:12:24.717Z"},"1.3.227":{"name":"electron-to-chromium","version":"1.3.227","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.205.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"293e067c72ed9404c08a72d54351259ad955c69b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.227","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8dccc63b6456b7b63007b965f79920b99e86ddc0","size":6333,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.227.tgz","integrity":"sha512-LQJmt0QcUzC/mLjG+ha5QhXgNQ2T2BOxRecuaU/hd92RnZt6G3ZGONsAe7Xvo9SoBvre/POElMoyK77mXjrr3w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.227_1565841745121_0.8357877627812478"},"_hasShrinkwrap":false,"publish_time":1565841745235,"_cnpm_publish_time":1565841745235,"_cnpmcore_publish_time":"2021-12-15T21:12:24.950Z"},"1.3.226":{"name":"electron-to-chromium","version":"1.3.226","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.204.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"73e746eb9fa9ebaa3a3df93c46103f6bbde7d95f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.226","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"108a9ac8d622b15e4cd705885c248ef16c1811aa","size":6334,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.226.tgz","integrity":"sha512-Qnj+JyUodfuzzPbs66CxO5oz1/bOrIhXh/4qh24GMOYzjuUt0sq7mFlhq78dP68CR38NkZ6KOAfhGP6kElU65A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.226_1565812948162_0.5338844550772033"},"_hasShrinkwrap":false,"publish_time":1565812948298,"_cnpm_publish_time":1565812948298,"_cnpmcore_publish_time":"2021-12-15T21:12:25.178Z"},"1.3.225":{"name":"electron-to-chromium","version":"1.3.225","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.201.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"72504d27aca48f4f297f72f56b45e1b117a81da5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.225","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c6786475b5eb5f491ade01a78b82ba2c5bfdf72b","size":6332,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.225.tgz","integrity":"sha512-7W/L3jw7HYE+tUPbcVOGBmnSrlUmyZ/Uyg24QS7Vx0a9KodtNrN0r0Q/LyGHrcYMtw2rv7E49F/vTXwlV/fuaA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.225_1565668953568_0.2685423264024085"},"_hasShrinkwrap":false,"publish_time":1565668953700,"_cnpm_publish_time":1565668953700,"_cnpmcore_publish_time":"2021-12-15T21:12:25.399Z"},"1.3.224":{"name":"electron-to-chromium","version":"1.3.224","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.200.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"397ce00c9f606169063cc1fbee09cac92e3ad7ac","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.224","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"511abb2829a58c5ddb36c319094fe936bc82e3cd","size":6320,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.224.tgz","integrity":"sha512-vTH9UcMbi53x/pZKQrEcD83obE8agqQwUIx/G03/mpE1vzLm0KA3cHwuZXCysvxI1gXfNjV7Nu7Vjtp89kDzmg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.224_1565596951054_0.8585163596668461"},"_hasShrinkwrap":false,"publish_time":1565596951148,"_cnpm_publish_time":1565596951148,"_cnpmcore_publish_time":"2021-12-15T21:12:25.636Z"},"1.3.223":{"name":"electron-to-chromium","version":"1.3.223","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.199.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"18356ff60551b950937f7b9451bf2e0fb9b1806a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.223","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3472d5260096cfc9be8b7350252a4c577f68f80a","size":6317,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.223.tgz","integrity":"sha512-xXFNJ+akZMtRZQYBLlGoc11lDfwj6FdWHwle/0U3vWtVaWh/MBbU25vtRCBB4lpHLmQ8Y9a6Tsb+0UONFbNXmQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.223_1565510551218_0.6425094896179935"},"_hasShrinkwrap":false,"publish_time":1565510551378,"_cnpm_publish_time":1565510551378,"_cnpmcore_publish_time":"2021-12-15T21:12:25.843Z"},"1.3.222":{"name":"electron-to-chromium","version":"1.3.222","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.198.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"318f27fb6215ef535c3dbbeb1371b770f6ed5a31","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.222","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2a0e38903b2254d798dd8837507b5bc42c7e3934","size":6307,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.222.tgz","integrity":"sha512-Kv3rvtJELafNfgVBVNaDIdV0aWV7O1RlYqqAhg+s+OwpiXFYPsIvONYgAopmR/gpyxSYbHi0EKJmPOvaL7UzMg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.222_1565409750402_0.8437525520518887"},"_hasShrinkwrap":false,"publish_time":1565409750589,"_cnpm_publish_time":1565409750589,"_cnpmcore_publish_time":"2021-12-15T21:12:26.425Z"},"1.3.221":{"name":"electron-to-chromium","version":"1.3.221","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.197.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e45dec3d4b2cf2f60d3f0628e9886fdbc8b99e9a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.221","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"421a58ac8d1931c8df400d55c7f6fd621710da10","size":6302,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.221.tgz","integrity":"sha512-YbNA7KgCvLq9ZaEa7wpYP7IP4LrJ4+b36oeF1lYBSJ0zVGVN7uo3Ct9qDUm/M3VDOWj03RVgsMFF8PdL8UjhzA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.221_1565323350678_0.04081620880848069"},"_hasShrinkwrap":false,"publish_time":1565323350953,"_cnpm_publish_time":1565323350953,"_cnpmcore_publish_time":"2021-12-15T21:12:26.658Z"},"1.3.220":{"name":"electron-to-chromium","version":"1.3.220","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.196.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"41ed31b2a731feeaad307e7c05c8675cc2d9f432","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.220","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"632fbf125fca4d69d7a140a66fe98572f67c0778","size":6295,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.220.tgz","integrity":"sha512-ZsaFWi+9J9Nsm4OmGM/BvZF3HEeZL4bte1+CcN9vHUcqdkOOVAXP4SeacPZ/W5uCQZEKPYBXg6yUjZx8/jpD0Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.220_1565236951051_0.9353472156014806"},"_hasShrinkwrap":false,"publish_time":1565236951191,"_cnpm_publish_time":1565236951191,"_cnpmcore_publish_time":"2021-12-15T21:12:26.925Z"},"1.3.219":{"name":"electron-to-chromium","version":"1.3.219","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.195.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"58f7858756760ddfe780b810f6364f80986040b4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.219","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b8bc7c72fc6d5d5eeee57288eba4bfec5f070fa8","size":6280,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.219.tgz","integrity":"sha512-xANtM7YNFQGCMl+a0ZceXnPedpAatcIIyDNM56nQKzJFwuCyIzKVtBvLzyMOU0cczwO900TP309EkSeudrGRbQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.219_1565193750335_0.20010930953175432"},"_hasShrinkwrap":false,"publish_time":1565193750480,"_cnpm_publish_time":1565193750480,"_cnpmcore_publish_time":"2021-12-15T21:12:27.126Z"},"1.3.218":{"name":"electron-to-chromium","version":"1.3.218","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.194.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b6636923f7378d4c9db221f6070fa47803f0e929","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.218","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8a873456e6640da1bed18a8718da1b1a3c4f604c","size":6279,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.218.tgz","integrity":"sha512-+ABuwQH2bEUbJTMPUMfP9mjBFtbLgDjlrkg3QGQZwr/RJB7aJZBm8g3SK/lR/J76P6l/4a6RgW2yQjZQDdjtFw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.218_1565164951951_0.9220046308235723"},"_hasShrinkwrap":false,"publish_time":1565164952124,"_cnpm_publish_time":1565164952124,"_cnpmcore_publish_time":"2021-12-15T21:12:27.344Z"},"1.3.217":{"name":"electron-to-chromium","version":"1.3.217","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.193.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"95c2a08bb06e0be0de49b541d747f99210155271","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.217","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a13a91f8f7cd3a52f0bb6957cbced8628bfcdbbd","size":6267,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.217.tgz","integrity":"sha512-e8enF2CtMZnOtpKIktgGMk1eWH7qUSrpISJE/BSHh+GZFLAt3P2/4KrjR0kZDO4WVsm9hfN5fWCoGXo/3Telpg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.217_1565150552062_0.10153826865633597"},"_hasShrinkwrap":false,"publish_time":1565150552189,"_cnpm_publish_time":1565150552189,"_cnpmcore_publish_time":"2021-12-15T21:12:27.546Z"},"1.3.216":{"name":"electron-to-chromium","version":"1.3.216","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.192.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"37102a5d8c5e0e2b4523f4b3c2303bfa60efaa1c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.216","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7eda27727ba5412c96729df8fceb35bf503eb65a","size":6264,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.216.tgz","integrity":"sha512-G2rJKCdDLTaAP56WKMj0mcr7jtr3LBBL2EaF73DamfFpvcl0PzKUIaUocPP8NLu9s/RbbHLMGkbFOkDRK5PQIQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.216_1565121751010_0.9225374416381615"},"_hasShrinkwrap":false,"publish_time":1565121751111,"_cnpm_publish_time":1565121751111,"_cnpmcore_publish_time":"2021-12-15T21:12:27.740Z"},"1.3.215":{"name":"electron-to-chromium","version":"1.3.215","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.191.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"139efc6f1060caca64a880c2d28cf6369407d6bd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.215","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c833cb31110c2e0a7dade1110648c2174f75233b","size":6258,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.215.tgz","integrity":"sha512-ZV3OnwF0FlIygwxAG2H92yt7WGjWBpawyFAFu8e9k7xJatY+BPowID0D0Bs3PMACYAJATEejw/I9cawO27ZvTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.215_1565078552598_0.35253911049353714"},"_hasShrinkwrap":false,"publish_time":1565078552685,"_cnpm_publish_time":1565078552685,"_cnpmcore_publish_time":"2021-12-15T21:12:27.963Z"},"1.3.214":{"name":"electron-to-chromium","version":"1.3.214","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.190.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2d9dcdd6a3adbee12c33e1ed57a020f84454c986","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.214","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8b5b9a0415fd41b69c61f694007597cb8c8eb7e8","size":6257,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.214.tgz","integrity":"sha512-SU9yyql6uA0Fc8bWR7sCYNGBtxkC+tQb6UaC7ReaadN42Kx7Ka+dzx3lAIm9Ock+ULEawJuTFcVB2x34uOCg0Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.214_1564934552167_0.9570942212615781"},"_hasShrinkwrap":false,"publish_time":1564934552368,"_cnpm_publish_time":1564934552368,"_cnpmcore_publish_time":"2021-12-15T21:12:28.187Z"},"1.3.213":{"name":"electron-to-chromium","version":"1.3.213","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.189.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7d4a49767587bb44708a99e53326a43fc20c9a0e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.213","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d4f11df558f6fd187b822e2a3dd364b739615b3f","size":6240,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.213.tgz","integrity":"sha512-1vbQKYkyvFkUJBiKXBEFp+UzkbaeQUR6a4ToNbgd8prXNVLl5A4QWUtVmcmh4J60bhNk5C3h2Dxg65jeQuiPsA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.213_1564920140419_0.5060897092502763"},"_hasShrinkwrap":false,"publish_time":1564920140615,"_cnpm_publish_time":1564920140615,"_cnpmcore_publish_time":"2021-12-15T21:12:28.429Z"},"1.3.212":{"name":"electron-to-chromium","version":"1.3.212","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.189.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c8f0a47aab1c414aba81985b7f486269fdf35a91","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.212","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"15d81ba96edb8ae6f937cde0fdb18c1c3c2bfec5","size":6240,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.212.tgz","integrity":"sha512-H8z5Smi1s1u1zGegEBfbxUAzrxyk1JoRHHHrlNGfhxv3sTb+p/Jz7JDvrR4196Q/Ip8r4+XwWcLvKrUjFKoJAg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.212_1564804949887_0.9309921637890552"},"_hasShrinkwrap":false,"publish_time":1564804950021,"_cnpm_publish_time":1564804950021,"_cnpmcore_publish_time":"2021-12-15T21:12:28.659Z"},"1.3.211":{"name":"electron-to-chromium","version":"1.3.211","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.188.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5fe9469fb267e309b4d79c6dc0d8afccc28cfa8f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.211","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0c39d17316bf342d1971fed68e754fa1775918f7","size":6239,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.211.tgz","integrity":"sha512-GZAiK3oHrs0K+LwH+HD+bdjZ17v40oQQdXbbd3dgrwgbENvazrGpcuIADSAREWnxzo9gADB1evuizrbXsnoU2Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.211_1564718550423_0.45828667754917496"},"_hasShrinkwrap":false,"publish_time":1564718550571,"_cnpm_publish_time":1564718550571,"_cnpmcore_publish_time":"2021-12-15T21:12:28.890Z"},"1.3.210":{"name":"electron-to-chromium","version":"1.3.210","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.187.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5eb66ff4fa613b03ba57d99b257a9b7b817ddae4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.210","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0ce6247366c5771d4f5663a5879388fd1adefb7e","size":6230,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.210.tgz","integrity":"sha512-m1i/F+gw9jkauxDx0mOr7Sj6vp6se1mfkQNYqZb1yL5VGTp0AC1NZH5CGI6YMSO7WaScILmkKDZFG9/hlR9axQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.210_1564675351200_0.7239338110836993"},"_hasShrinkwrap":false,"publish_time":1564675351358,"_cnpm_publish_time":1564675351358,"_cnpmcore_publish_time":"2021-12-15T21:12:29.254Z"},"1.3.209":{"name":"electron-to-chromium","version":"1.3.209","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.186.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6a3bc9f41564b806241ad88f55cfb715a8edeb16","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.209","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"cd43879f1d3fb85c75bb843fb11a828570fa1ce4","size":6216,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.209.tgz","integrity":"sha512-KxRvLp5jUapyKIcMaecwgmUpJEsJKuHn0DJJPZjZh2valqYlzdmGvaE/nTAqwKqQwf0jIKv7Go4FYHu9wKWzOg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.209_1564632149261_0.663231174567027"},"_hasShrinkwrap":false,"publish_time":1564632149400,"_cnpm_publish_time":1564632149400,"_cnpmcore_publish_time":"2021-12-15T21:12:29.456Z"},"1.3.208":{"name":"electron-to-chromium","version":"1.3.208","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.185.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a1d0cc3a7b0f1979364b68a02b0007b420660200","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.208","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6df90b89e8b9af139db3c8d7a6b935db0801e61c","size":6197,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.208.tgz","integrity":"sha512-ljgZXaKSfRg32jEl1V8zRJaT3u653jxfZRztKQWM/I1kE+ifBCQKRY+jOPzb4JS48a4czvT/LQfjdiDq5qjU4g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.208_1564603350827_0.10370566880820342"},"_hasShrinkwrap":false,"publish_time":1564603351042,"_cnpm_publish_time":1564603351042,"_cnpmcore_publish_time":"2021-12-15T21:12:29.719Z"},"1.3.207":{"name":"electron-to-chromium","version":"1.3.207","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.184.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4ca1dac6e5980d1b3e31242d11bd90bb02df5a5d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.207","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b19ce94d61187d72411ebb83dfe287366a785102","size":6192,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.207.tgz","integrity":"sha512-RIgAnfqbjZNECBLjslfy4cIYvcPl3GAXmnENrcoo0TZ8fGkyEEAealAbO7MoevW4xYUPe+e68cWAj6eP0DmMHw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.207_1564545749825_0.5854035195921476"},"_hasShrinkwrap":false,"publish_time":1564545749941,"_cnpm_publish_time":1564545749941,"_cnpmcore_publish_time":"2021-12-15T21:12:29.928Z"},"1.3.206":{"name":"electron-to-chromium","version":"1.3.206","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.183.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1d7ac52eb07143886a1d267d7a4514112196a56e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.206","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f72a8694dce5c669170c78097177d7b601977c10","size":6188,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.206.tgz","integrity":"sha512-djq9Ehxs2rwPh7pyY1GMf8vkOWPoK8eoMp913E4t0UaEXvbnOsiSowBBHI8YoN4aKVQJjvxQp5I0LdZkT3Uzmw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.206_1564516948764_0.8902616470649571"},"_hasShrinkwrap":false,"publish_time":1564516948904,"_cnpm_publish_time":1564516948904,"_cnpmcore_publish_time":"2021-12-15T21:12:30.137Z"},"1.3.205":{"name":"electron-to-chromium","version":"1.3.205","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.182.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0a352c8c712cf1be451ba6845701b7f979a66c6b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.205","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"084835a5ecca0765a805acb50a0fddc23d8d530e","size":6189,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.205.tgz","integrity":"sha512-VV+f2FVeFI5D/slUD7A3V1lTMDkQTUGWYH2dZGAijIutN5Aga4Fn/Hv4Gc+60OpXFVLYIq5HpXb2cG6NrGGQaA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.205_1564473751742_0.8552600085283004"},"_hasShrinkwrap":false,"publish_time":1564473751869,"_cnpm_publish_time":1564473751869,"_cnpmcore_publish_time":"2021-12-15T21:12:30.358Z"},"1.3.204":{"name":"electron-to-chromium","version":"1.3.204","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.181.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fe4096307f2c34d48f8d20e6c595c2d52d6c527e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.204","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1ea5c6d495bab77995aa135dbcbc1d383dd4e21e","size":6174,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.204.tgz","integrity":"sha512-T0eXE6hfbtpzRUaI7aHI/HYJ29Ndk84aVSborRAmXfWvBvz2EuB2OWYUxNcUX9d+jtqEIjgZjWMdoxS0hp5j1g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.204_1564430549037_0.7850906295873918"},"_hasShrinkwrap":false,"publish_time":1564430549181,"_cnpm_publish_time":1564430549181,"_cnpmcore_publish_time":"2021-12-15T21:12:30.621Z"},"1.3.203":{"name":"electron-to-chromium","version":"1.3.203","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.180.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bd27665a5b81bd19f75d5bbbfd36126f690c69da","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.203","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"76de1b76eaaf7208e587a26b8e45407535a00abd","size":6167,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.203.tgz","integrity":"sha512-Z1FjJKEBhYrCNmnususVk8khiBabVI/bSJB/295V4ghVt4MFmtbP+mXgRZLQZinEBI469U6FtiGgpXnlLs6qiQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.203_1564372950764_0.8440885291087648"},"_hasShrinkwrap":false,"publish_time":1564372950912,"_cnpm_publish_time":1564372950912,"_cnpmcore_publish_time":"2021-12-15T21:12:30.843Z"},"1.3.202":{"name":"electron-to-chromium","version":"1.3.202","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.179.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0d3c7f9f53e96f5cbf55aa75251a10091ed257b8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.202","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5412680d56347601ec7dc291d51bddd14b8fbd45","size":6160,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.202.tgz","integrity":"sha512-oJHvNNYM3Y9mJfiujbFQxRa0v7mzrc6Pv76fq6A4Dd6MxbfiVGhmgXtIeMBloTF8crmlJ1rXQW95VS4Zp/9ZSg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.202_1564286550191_0.17067573710197137"},"_hasShrinkwrap":false,"publish_time":1564286550325,"_cnpm_publish_time":1564286550325,"_cnpmcore_publish_time":"2021-12-15T21:12:31.042Z"},"1.3.201":{"name":"electron-to-chromium","version":"1.3.201","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.178.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"40edca3d8406d23807befac6cbbffebfa5c3aafc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.201","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b516e941baf01a7cf8abd33af537a39e1e0096db","size":6140,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.201.tgz","integrity":"sha512-aCTPIfY1Jvuam5b6vuWRjt1F8i4kY7zX0Qtpu5SNd6l1zjuxU9fDNpbM4o6+oJsra+TMD2o7D20GnkSIgpTr9w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.201_1564171348916_0.15496401647882085"},"_hasShrinkwrap":false,"publish_time":1564171349040,"_cnpm_publish_time":1564171349040,"_cnpmcore_publish_time":"2021-12-15T21:12:31.679Z"},"1.3.200":{"name":"electron-to-chromium","version":"1.3.200","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.177.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"07ee0037b8abcbbcfb21ffe88942bd17fee2d6a6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.200","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"78fb858b466269e8eb46d31a52562f00c865127f","size":6131,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.200.tgz","integrity":"sha512-PUurrpyDA74MuAjJRD+79ss5BqJlU3mdArRbuu4wO/dt6jc3Ic/6BDmFJxkdwbfq39cHf/XKm2vW98XSvut9Dg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.200_1563940950871_0.25296742804051475"},"_hasShrinkwrap":false,"publish_time":1563940950990,"_cnpm_publish_time":1563940950990,"_cnpmcore_publish_time":"2021-12-15T21:12:33.429Z"},"1.3.199":{"name":"electron-to-chromium","version":"1.3.199","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.176.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3450f7f87b171eac66de22bb697755a7b463389d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.199","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f9a62a74cda77854310a2abffde8b75591ea09a1","size":6128,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.199.tgz","integrity":"sha512-gachlDdHSK47s0N2e58GH9HMC6Z4ip0SfmYUa5iEbE50AKaOUXysaJnXMfKj0xB245jWbYcyFSH+th3rqsF8hA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.199_1563768149259_0.7129024749453716"},"_hasShrinkwrap":false,"publish_time":1563768149435,"_cnpm_publish_time":1563768149435,"_cnpmcore_publish_time":"2021-12-15T21:12:33.729Z"},"1.3.198":{"name":"electron-to-chromium","version":"1.3.198","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.175.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"aefd940cafc96ab91dca55061aa9a6abdf7aafb4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.198","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"932f74a9854eeb45436764c9c26433cf683fde7a","size":6128,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.198.tgz","integrity":"sha512-2GcPd1bkU8EGPa3AhxzPswbNvh5wgK4/8r3fg+sSVyVlCWaN9Tq+tVkJLktMZIcrHiZF0vJpnktfoYXFTvjCVg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.198_1563739348740_0.8476450009337293"},"_hasShrinkwrap":false,"publish_time":1563739348880,"_cnpm_publish_time":1563739348880,"_cnpmcore_publish_time":"2021-12-15T21:12:33.962Z"},"1.3.197":{"name":"electron-to-chromium","version":"1.3.197","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.174.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"57f8517de4be20c2988f7ca6f0d8a444ef332e60","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.197","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9460310733423ac72869d4dd99d7fb0389faa40b","size":6123,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.197.tgz","integrity":"sha512-SfD7WfmueKrtKeHUESLczuANgnpdnfrSz3ZzerLdtmZf2UBZmAB3z9Q525zI5p3n9I7ii/lllUlyKHm2pIG7QQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.197_1563681749795_0.11182555332396493"},"_hasShrinkwrap":false,"publish_time":1563681749972,"_cnpm_publish_time":1563681749972,"_cnpmcore_publish_time":"2021-12-15T21:12:34.199Z"},"1.3.196":{"name":"electron-to-chromium","version":"1.3.196","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.173.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"eb8790b391cfa94e2909ed0ea6e4a2fcd98f7f33","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.196","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1a7885855880fa3ae7a8908c442757e561eec82b","size":6114,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.196.tgz","integrity":"sha512-NFGRHzY0x8yIUFnAthKxaOKe5q+c8jjvyQM2pMq2+59QORz8AN5+qXPJBwX05kz2uEtyraX2XxB0LPT+7EE6vw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.196_1563609752386_0.3881301449002603"},"_hasShrinkwrap":false,"publish_time":1563609752513,"_cnpm_publish_time":1563609752513,"_cnpmcore_publish_time":"2021-12-15T21:12:34.464Z"},"1.3.195":{"name":"electron-to-chromium","version":"1.3.195","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.172.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5f14c05dc025d9bfb7d142d55db03beb557cf285","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.195","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d856ac85e6488365b6ae9abca0ce8d0032216e01","size":6099,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.195.tgz","integrity":"sha512-1pkd/paxpHb/kRTvuq8iJl0KP2YliWpiVGMM3nvwFCShLkuZBdUTJvYRjVsp7+9dQ6mpRFxLJHF3CyVxDseidA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.195_1563595349948_0.8903912878848104"},"_hasShrinkwrap":false,"publish_time":1563595350042,"_cnpm_publish_time":1563595350042,"_cnpmcore_publish_time":"2021-12-15T21:12:34.726Z"},"1.3.194":{"name":"electron-to-chromium","version":"1.3.194","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.171.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"ed5608ad8814d3184ac427e9bc507e7172588351","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.194","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a96452a96d4539131957aade9f634a45721f2819","size":6085,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.194.tgz","integrity":"sha512-w0LHR2YD9Ex1o+Sz4IN2hYzCB8vaFtMNW+yJcBf6SZlVqgFahkne/4rGVJdk4fPF98Gch9snY7PiabOh+vqHNg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.194_1563422549357_0.364076045940096"},"_hasShrinkwrap":false,"publish_time":1563422549490,"_cnpm_publish_time":1563422549490,"_cnpmcore_publish_time":"2021-12-15T21:12:34.937Z"},"1.3.193":{"name":"electron-to-chromium","version":"1.3.193","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.170.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"744b58da31133f9c5e61c9c97afcda0a297f3035","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.193","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"de9b89959288070bffb14557daf8cf9f75b2caf8","size":6075,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.193.tgz","integrity":"sha512-WX01CG1UoPtTUFaKKwMn+u8nJ63loP6hNxePWtk1pN8ibWMyX1q6TiWPsz1ABBKXezvmaIdtP+0BwzjC1wyCaw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.193_1563336148695_0.023799138466176872"},"_hasShrinkwrap":false,"publish_time":1563336148809,"_cnpm_publish_time":1563336148809,"_cnpmcore_publish_time":"2021-12-15T21:12:35.153Z"},"1.3.192":{"name":"electron-to-chromium","version":"1.3.192","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.169.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1533ac2e91f1ef03988b4d99b44afc174e6faee0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.192","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"28721072385e48525a948f4297824ddb4bf1f75f","size":6072,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.192.tgz","integrity":"sha512-JkkpGlrilP1s/aFanueYZWf/DFDJaYgo3ZeamzgL5Drb70KQrVQRIPBq5vBN8sSRoKeZZak3aFJ83YtwsZgeEg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.192_1563307348698_0.8241457330627271"},"_hasShrinkwrap":false,"publish_time":1563307348820,"_cnpm_publish_time":1563307348820,"_cnpmcore_publish_time":"2021-12-15T21:12:35.411Z"},"1.3.191":{"name":"electron-to-chromium","version":"1.3.191","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.168.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c620b8fcc8ca6d2b283058d2d449f039268f3ceb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.191","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c451b422cd8b2eab84dedabab5abcae1eaefb6f0","size":6065,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.191.tgz","integrity":"sha512-jasjtY5RUy/TOyiUYM2fb4BDaPZfm6CXRFeJDMfFsXYADGxUN49RBqtgB7EL2RmJXeIRUk9lM1U6A5yk2YJMPQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.191_1562961749845_0.2257067731629414"},"_hasShrinkwrap":false,"publish_time":1562961749965,"_cnpm_publish_time":1562961749965,"_cnpmcore_publish_time":"2021-12-15T21:12:35.632Z"},"1.3.190":{"name":"electron-to-chromium","version":"1.3.190","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.167.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d4b29c60a21ae61f7a7184863e56861b97551f8b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.190","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5bf599519983bfffd9d4387817039a3ed7ca085f","size":6066,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.190.tgz","integrity":"sha512-cs9WnTnGBGnYYVFMCtLmr9jXNTOkdp95RLz5VhwzDn7dErg1Lnt9o4d01gEH69XlmRKWUr91Yu1hA+Hi8qW0PA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.190_1562875350780_0.05822826877421927"},"_hasShrinkwrap":false,"publish_time":1562875350935,"_cnpm_publish_time":1562875350935,"_cnpmcore_publish_time":"2021-12-15T21:12:35.827Z"},"1.3.189":{"name":"electron-to-chromium","version":"1.3.189","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.166.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fdf8f5ca3684b1a8ea44fb49fa1c76d78ab553de","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.189","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"aa84055eb36d364a68852ad2d25e1315a1d06196","size":6064,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.189.tgz","integrity":"sha512-C26Kv6/rLNmGDaPR5HORMtTQat9aWBBKjQk9aFtN1Bk6cQBSw8cYdsel/mcrQlNlMMjt1sAKsTYqf77+sK2uTw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.189_1562817749425_0.8236046540838686"},"_hasShrinkwrap":false,"publish_time":1562817749601,"_cnpm_publish_time":1562817749601,"_cnpmcore_publish_time":"2021-12-15T21:12:36.120Z"},"1.3.188":{"name":"electron-to-chromium","version":"1.3.188","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.165.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5b286072ec804a10f7ffd3e80fafed5a32e05941","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.188","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e28e1afe4bb229989e280bfd3b395c7ec03c8b7a","size":6047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.188.tgz","integrity":"sha512-tEQcughYIMj8WDMc59EGEtNxdGgwal/oLLTDw+NEqJRJwGflQvH3aiyiexrWeZOETP4/ko78PVr6gwNhdozvuQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.188_1562385749240_0.944479067441073"},"_hasShrinkwrap":false,"publish_time":1562385749392,"_cnpm_publish_time":1562385749392,"_cnpmcore_publish_time":"2021-12-15T21:12:36.311Z"},"1.3.187":{"name":"electron-to-chromium","version":"1.3.187","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.164.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7e33b74eb7b5cb2e2ea3cf70378dd9fccfdb1f9b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.187","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"fea64435f370892c0f27aded1bbdcb6f235c592b","size":6040,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.187.tgz","integrity":"sha512-XCEygaK7Fs35/RwS+67YbBWs/ydG+oUFPuy1wv558jC3Opd2DHwRyRqrCmhxpmPmCSVlZujYX4TOmOXuMz2GZA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.187_1562270554453_0.6743369708989593"},"_hasShrinkwrap":false,"publish_time":1562270554592,"_cnpm_publish_time":1562270554592,"_cnpmcore_publish_time":"2021-12-15T21:12:36.504Z"},"1.3.186":{"name":"electron-to-chromium","version":"1.3.186","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.163.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"eb9a39d01dc5944a82ea6dd2ff00b66698152750","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.186","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"17d87e7661121724ea4c81c9960c3f26a5228c0c","size":6032,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.186.tgz","integrity":"sha512-lRyyEUDKenKv/EBVFgfDZDYTDdoAZhzuE+inMUP79+22NDPAA2Ox+f3AShILIjPoUIqRGwvPNbzFcyU8km8g4A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.186_1562227352090_0.4925529148707646"},"_hasShrinkwrap":false,"publish_time":1562227352231,"_cnpm_publish_time":1562227352231,"_cnpmcore_publish_time":"2021-12-15T21:12:36.761Z"},"1.3.185":{"name":"electron-to-chromium","version":"1.3.185","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.162.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"970e9c14237ade8f2b42508300b43a8d8a2ecfac","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.185","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"36368514eb719632a91435f3c9f57c98b47d81de","size":6022,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.185.tgz","integrity":"sha512-h2iW0AHIwix8ifNJg/RkXhQjUDqBME8TvX8qQQMvvF2Tb6F2KnO6febvI+JqI9CdZOWnl90CPxdBRWGDrdk9UA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.185_1562126554528_0.5383310039826457"},"_hasShrinkwrap":false,"publish_time":1562126554734,"_cnpm_publish_time":1562126554734,"_cnpmcore_publish_time":"2021-12-15T21:12:36.961Z"},"1.3.184":{"name":"electron-to-chromium","version":"1.3.184","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.161.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3c1cbc054bca437ea656ac7e84f67a75100828eb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.184","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"084fdb999b21dd567512625a7ac04f4c248d0ed8","size":6022,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.184.tgz","integrity":"sha512-jctpw2OkTBfpKg6PI3ndZZ+LlH6y0Pc+o9wvOkm9iqqgQ/FcOxpiADeB4kGddAEtZ+PBR4+TStEcoj1ApS3lUA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.184_1562097751306_0.2880663252223652"},"_hasShrinkwrap":false,"publish_time":1562097751508,"_cnpm_publish_time":1562097751508,"_cnpmcore_publish_time":"2021-12-15T21:12:37.205Z"},"1.3.183":{"name":"electron-to-chromium","version":"1.3.183","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.160.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e54f3cebd4462d5a91afaf51d141bbded49ad1d9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.183","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d6ecf177d3388ae5913844ea46b4b4c9cc726e52","size":6014,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.183.tgz","integrity":"sha512-WbKCYs7yAFOfpuoa2pK5kbOngriUtlPC+8mcQW5L/686wv04w7hYXfw5ScDrsl9kixFw1SPsALEob5V/gtlDxw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.183_1562054557339_0.4896646108720595"},"_hasShrinkwrap":false,"publish_time":1562054557521,"_cnpm_publish_time":1562054557521,"_cnpmcore_publish_time":"2021-12-15T21:12:37.543Z"},"1.3.182":{"name":"electron-to-chromium","version":"1.3.182","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.159.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d14fea61ffe8b024ca538130827aaf7fc25da840","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.182","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1711122c0c035f1568aea0d1b6b93c04b5f9fdf2","size":6013,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.182.tgz","integrity":"sha512-uqKh3J1/s4LkmtbrVi2cPpd5g2u7efYJdnRXApQLVhZlLjzaJZakafp+JFSUZNYrBDJNIqQChcJTCDZXqQOBYg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.182_1562011350466_0.10006737492633766"},"_hasShrinkwrap":false,"publish_time":1562011350662,"_cnpm_publish_time":1562011350662,"_cnpmcore_publish_time":"2021-12-15T21:12:37.744Z"},"1.3.181":{"name":"electron-to-chromium","version":"1.3.181","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.158.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dada818de81112bd19395ac7a6094237fcf8dd79","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.181","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1c538401af8f3eb285db893b66e43f4bea72fd83","size":6004,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.181.tgz","integrity":"sha512-xf1dCoc6FSCVcNQu8VGiMSH55rOT/ov6U7UpMgw4Erg5KfD1LHTXqm34/IGp55TLX4WqwuT4IIeJWhdGhO8mYw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.181_1561996948068_0.11258854010929031"},"_hasShrinkwrap":false,"publish_time":1561996948200,"_cnpm_publish_time":1561996948200,"_cnpmcore_publish_time":"2021-12-15T21:12:37.969Z"},"1.3.180":{"name":"electron-to-chromium","version":"1.3.180","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.157.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"97dcccee6ebf4f2ac7cf1d836b83d76e8e554b68","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.180","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8e8c6be930d137e88cf2946ad2ec6521d24ba70e","size":6003,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.180.tgz","integrity":"sha512-jwI82/63GeH7f08IR+4v/tbGM4DMAApMZO0SXLcC0np4lcqWjQBl0MIHkfXEqesLc55+NhVVX8g7eFlamEWoNQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.180_1561968158026_0.1497826235379165"},"_hasShrinkwrap":false,"publish_time":1561968158170,"_cnpm_publish_time":1561968158170,"_cnpmcore_publish_time":"2021-12-15T21:12:38.193Z"},"1.3.179":{"name":"electron-to-chromium","version":"1.3.179","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.156.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"bde16e82c9b09e97b7a57337bec745b2c86f2273","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.179","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"908efa2732ca07ede53bbbb25bb6684623fbe069","size":5996,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.179.tgz","integrity":"sha512-hRjlOdKImgIRicKYRY6hHbUMrX2NJYBrIusTepwPt/apcabuzrzhXpkkWu7elWdTZEQwKV6BfX8EvWIBWLCNQw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.179_1561867355089_0.8681435183958273"},"_hasShrinkwrap":false,"publish_time":1561867355879,"_cnpm_publish_time":1561867355879,"_cnpmcore_publish_time":"2021-12-15T21:12:38.416Z"},"1.3.178":{"name":"electron-to-chromium","version":"1.3.178","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.155.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0e9bd7dbc589ad00d9b0f8de333331eb34fbca4e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.178","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3fbffe7f3c9fbed4f4a6031aa41e065c3a43ebc1","size":5996,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.178.tgz","integrity":"sha512-1+JjL/6toGZqcA1hI1e/zH86r0+BxFvustlwymDLIcdGfsjgR4LF9CgAoyk77L36tzE8zBDMSNd6q7HU2QRlJg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.178_1561838556065_0.38256641865333885"},"_hasShrinkwrap":false,"publish_time":1561838556197,"_cnpm_publish_time":1561838556197,"_cnpmcore_publish_time":"2021-12-15T21:12:38.639Z"},"1.3.177":{"name":"electron-to-chromium","version":"1.3.177","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.154.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"dacf594475779e2856f781f7d57a76c727bb2c2e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.177","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6ee78908c38f8021f6864a0ad534452fefd1e24c","size":5991,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.177.tgz","integrity":"sha512-vMoq8iU57YZgxrW9kglf1ZEBcU+Ec72OlR+SH/UdBTKS6tZTCypxa8pmD1CPZ3olU4IJX2ujilGkvpn0GHSwTQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.177_1561780951510_0.4069738614498093"},"_hasShrinkwrap":false,"publish_time":1561780951612,"_cnpm_publish_time":1561780951612,"_cnpmcore_publish_time":"2021-12-15T21:12:38.849Z"},"1.3.176":{"name":"electron-to-chromium","version":"1.3.176","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.153.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4f0db4fe98356b772f36013f85e0e09e018f9f6a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.176","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"df54c54386e0f205dc6d1f5582d9e8b0cd30532b","size":5990,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.176.tgz","integrity":"sha512-hsQ/BH6x2iCvJ7WOIbNTAlsT39vsVGIVoJJ9i6ZkGXUE2LdzWsNv0xJI2uZ5/Hkqv1oTTLxAYjbtGKVJzqYbjA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.176_1561694550165_0.847956903859389"},"_hasShrinkwrap":false,"publish_time":1561694550289,"_cnpm_publish_time":1561694550289,"_cnpmcore_publish_time":"2021-12-15T21:12:39.055Z"},"1.3.175":{"name":"electron-to-chromium","version":"1.3.175","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.152.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"7ddcca3d676f67503b34cb9751a3c6a7649c26c9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.175","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a269716af5e549f9f3989ae38ba484881dcb3702","size":5984,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.175.tgz","integrity":"sha512-cQ0o7phcPA0EYkN4juZy/rq4XVxl/1ywQnytDT9hZTC0cHfaOBqWK2XlWp9Mk8xRGntgnmxlHTOux4HLb2ZNnA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.175_1561608156747_0.7014537129040641"},"_hasShrinkwrap":false,"publish_time":1561608157010,"_cnpm_publish_time":1561608157010,"_cnpmcore_publish_time":"2021-12-15T21:12:39.276Z"},"1.3.174":{"name":"electron-to-chromium","version":"1.3.174","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.151.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2bf7857f868c09f65540c52197ff76d206bdfbc1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.174","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"011c68d4130e995cbb69c533e147d7f4856e9f39","size":5975,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.174.tgz","integrity":"sha512-OEh3EARo2B07ZRtxB0u9GqWyWmTeNS+diMp5bjw4kqMjgpzqM0w1zUOyErDsyWxTdArbvZ79T/w5n3WsBVHLfA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.174_1561536158378_0.20734043744521125"},"_hasShrinkwrap":false,"publish_time":1561536158547,"_cnpm_publish_time":1561536158547,"_cnpmcore_publish_time":"2021-12-15T21:12:39.776Z"},"1.3.173":{"name":"electron-to-chromium","version":"1.3.173","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.150.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2fffd07012f9dd06fa7fdb95de6d4ae559981830","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.173","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"275b9ba235447b95fc3204d32ca2c5a8bf2ca599","size":5965,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.173.tgz","integrity":"sha512-weH16m8as+4Fy4XJxrn/nFXsIqB7zkxERhvj/5YX2HE4HB8MCu98Wsef4E3mu0krIT27ic0bGsr+TvqYrUn6Qg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.173_1561435357085_0.7747827271314356"},"_hasShrinkwrap":false,"publish_time":1561435357252,"_cnpm_publish_time":1561435357252,"_cnpmcore_publish_time":"2021-12-15T21:12:39.980Z"},"1.3.172":{"name":"electron-to-chromium","version":"1.3.172","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.149.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fe86ff17ecb657fad7609c445dfc61d7479313e3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.172","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1eafb3afdc47bcb9c2a2249b2736be352016da4b","size":5961,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.172.tgz","integrity":"sha512-bHgFvYeHBiQNNuY/WvoX37zLosPgMbR8nKU1r4mylHptLvuMMny/KG/L28DTIlcoOCJjMAhEimy3DHDgDayPbg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.172_1561363352883_0.4039664239355061"},"_hasShrinkwrap":false,"publish_time":1561363353001,"_cnpm_publish_time":1561363353001,"_cnpmcore_publish_time":"2021-12-15T21:12:40.200Z"},"1.3.171":{"name":"electron-to-chromium","version":"1.3.171","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.148.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d1c9a2ce457ccbbb39b6d3a30e7c62c35d9d2263","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.171","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ca226f0dcc3e02d9762de4d40948b0a116e6ef51","size":5960,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.171.tgz","integrity":"sha512-pZi+t0RWITPiIYaGBWBm6gl+rnpygLSInIEq6kCo3/g1KHDHJVL9+DsCw+PfF55JltIACYAaw6c3CUlGW/0qTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.171_1561348956067_0.0736062146046863"},"_hasShrinkwrap":false,"publish_time":1561348956209,"_cnpm_publish_time":1561348956209,"_cnpmcore_publish_time":"2021-12-15T21:12:40.397Z"},"1.3.170":{"name":"electron-to-chromium","version":"1.3.170","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.147.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"50268deff105f31b58894f58b09605862e6cfece","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.170","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2dc858f8a9bb51bbfe3a429312c11f565b456e61","size":5956,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.170.tgz","integrity":"sha512-vDEhHcwMogbM+WXDTh6ZktwQOqLcK7MJdCOM99UZXRI1ct3Y9OeYYJTrIHnswzv+IYwoXNj0Furh+K6UotcHVg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.170_1561262554882_0.07600656604124012"},"_hasShrinkwrap":false,"publish_time":1561262554990,"_cnpm_publish_time":1561262554990,"_cnpmcore_publish_time":"2021-12-15T21:12:40.592Z"},"1.3.169":{"name":"electron-to-chromium","version":"1.3.169","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.146.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"248e1bb7fe8a89da87f3e3a60545e4c08f455aa7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.169","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f9722d3f6a18a19c1fc1216bf9e1654daafab539","size":5949,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.169.tgz","integrity":"sha512-CxKt4ONON7m0ekVaFzvTZakHgGQsLMRH0J8W6h4lhyBNgskj3CIJz4bj+bh5+G26ztAe6dZjmYUeEW4u/VSnLQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.169_1561190557750_0.08950809985503416"},"_hasShrinkwrap":false,"publish_time":1561190557897,"_cnpm_publish_time":1561190557897,"_cnpmcore_publish_time":"2021-12-15T21:12:40.813Z"},"1.3.168":{"name":"electron-to-chromium","version":"1.3.168","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.145.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"c36506abe379fa0c56350c5f6f387a541183e13c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.168","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5153da97cacb718dde876b925b2a7a64f9fbaa81","size":5939,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.168.tgz","integrity":"sha512-Jm2oiuJPzPvsN9Jg4yGbDrflqMFPUtT88Y+ZlCxDdDEXSbt7cVzyzlxGKJkfa0NfcaykDtisCSz7BJ6mDW/NpA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.168_1561176155921_0.12179015234915647"},"_hasShrinkwrap":false,"publish_time":1561176156041,"_cnpm_publish_time":1561176156041,"_cnpmcore_publish_time":"2021-12-15T21:12:41.020Z"},"1.3.167":{"name":"electron-to-chromium","version":"1.3.167","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.144.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3416c5287a6b0b034d5a1690426210495e4c3744","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.167","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6c22e5384a6b54fb13136ca5b3ade5daac9bf894","size":5935,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.167.tgz","integrity":"sha512-84IjpeRudjP43Q0+K7tlS7ESoHOl0W6CIdzs5reS9p+sAjCQEDiaAyiXN2v1qLUdL+Of6ZSaH4Cq6bl+sfzy8A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.167_1561132954148_0.23326437910091147"},"_hasShrinkwrap":false,"publish_time":1561132954319,"_cnpm_publish_time":1561132954319,"_cnpmcore_publish_time":"2021-12-15T21:12:41.257Z"},"1.3.166":{"name":"electron-to-chromium","version":"1.3.166","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.143.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"4f670ec9d85568fc42347c6082616113c15f48e4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.166","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"99d267514f4b92339788172400bc527545deb75b","size":5926,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.166.tgz","integrity":"sha512-7XwtJz81H/PBnkmQ/07oVPOGTkBZs6ibZN8OqXNUrxjRPzR0Xj+MFcMmRZEXGilEg1Pm+97V8BZVI63qnBX1hQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.166_1561003355437_0.7516644315212042"},"_hasShrinkwrap":false,"publish_time":1561003355569,"_cnpm_publish_time":1561003355569,"_cnpmcore_publish_time":"2021-12-15T21:12:41.437Z"},"1.3.165":{"name":"electron-to-chromium","version":"1.3.165","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.142.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"da777a71cbc95868d88dedf8a2667c4b008256b2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.165","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"51864c9e3c9bd9e1c020b9493fddcc0f49888e3a","size":5921,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.165.tgz","integrity":"sha512-iIS8axR524EAnvUtWUNnREnYjQrS0zUvutIKYgTVuN3MzcjrV31EuJYKw7DGOtFO9DQw+JiXeaVDPQWMskG1wQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.165_1560916950802_0.8176396475633674"},"_hasShrinkwrap":false,"publish_time":1560916950923,"_cnpm_publish_time":1560916950923,"_cnpmcore_publish_time":"2021-12-15T21:12:41.774Z"},"1.3.164":{"name":"electron-to-chromium","version":"1.3.164","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.141.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6a9a93c742af1a0889fd896ec63bbc5d238fd0b3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.164","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8680b875577882c1572c42218d53fa9ba5f71d5d","size":5904,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.164.tgz","integrity":"sha512-VLlalqUeduN4+fayVtRZvGP2Hl1WrRxlwzh2XVVMJym3IFrQUS29BFQ1GP/BxOJXJI1OFCrJ5BnFEsAe8NHtOg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.164_1560758558672_0.7908180612001754"},"_hasShrinkwrap":false,"publish_time":1560758558926,"_cnpm_publish_time":1560758558926,"_cnpmcore_publish_time":"2021-12-15T21:12:41.981Z"},"1.3.163":{"name":"electron-to-chromium","version":"1.3.163","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.140.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"24f2f49c11199ca7e6a6777ae6654a70b0c126af","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.163","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7fc3d637f5d8fa4ca4a052cad0de7675bd98b911","size":5905,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.163.tgz","integrity":"sha512-uCEoqQeKrjlhUSUudY0XvyNVDhWR5XmnCIV0WXr2Qo9PVzEVXI75LHGtzwro9Qh8NNetRjSitrm8AfQvPGaSqA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.163_1560715349157_0.9025842826843913"},"_hasShrinkwrap":false,"publish_time":1560715349289,"_cnpm_publish_time":1560715349289,"_cnpmcore_publish_time":"2021-12-15T21:12:42.204Z"},"1.3.162":{"name":"electron-to-chromium","version":"1.3.162","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.139.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6083c45846203d2e7de2be92e83f8584b4fca521","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.162","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e006e3a2aeebaf942064a16b24c6dfc864510de1","size":5899,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.162.tgz","integrity":"sha512-/cCwFlLV0lImvAfNsJpEVIZFhJBoutb7L0AHd56K4h8McUqpdkbBvAbMnY/mfNKnCqkX6GZVvQc+BVod4t2EMw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.162_1560657757282_0.2354030521648649"},"_hasShrinkwrap":false,"publish_time":1560657757376,"_cnpm_publish_time":1560657757376,"_cnpmcore_publish_time":"2021-12-15T21:12:42.398Z"},"1.3.161":{"name":"electron-to-chromium","version":"1.3.161","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.138.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b1e0792eed8e1d529c6af96a2856bffc4e9a60c2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.161","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"48cb3de7a53d07c1ce654e8bc6e3f6b602f1ee3c","size":5892,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.161.tgz","integrity":"sha512-i8cuS1zf7TW2t/NrfiaF8amTggCH4yLRe7Pirdf6gVDESP146jXO9NXttM8bJk1aupwA1NVMoaikBSbnTHgZGA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.161_1560585758529_0.5593585941697363"},"_hasShrinkwrap":false,"publish_time":1560585758654,"_cnpm_publish_time":1560585758654,"_cnpmcore_publish_time":"2021-12-15T21:12:42.631Z"},"1.3.160":{"name":"electron-to-chromium","version":"1.3.160","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.137.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"b0a91147f05ca7879bcefcf38e2b1b2a16c4ed39","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.160","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0153f6c479869ba7f19b009296a56d954b284c11","size":5887,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.160.tgz","integrity":"sha512-kmpBwawcCbEaGOePtjJF56p7YIWM/XBtP5cdR68mh48zjpZYgR9ulqDhXkSFcTH2G4gynKysDZ+tVAgefzrasw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.160_1560571356440_0.8008144763782559"},"_hasShrinkwrap":false,"publish_time":1560571356588,"_cnpm_publish_time":1560571356588,"_cnpmcore_publish_time":"2021-12-15T21:12:42.848Z"},"1.3.159":{"name":"electron-to-chromium","version":"1.3.159","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.136.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"188f101d865ce0de771e1d76af2065ff74fddd42","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.159","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4292643c5cb77678821ce01557ba6dd0f562db5e","size":5878,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.159.tgz","integrity":"sha512-bhiEr8/A97GUBcUzNb9MFNhzQOjakbKmEKBEAa6UMY45zG2e8PM63LOgAPXEJE9bQiaQH6nOdYiYf8X821tZjQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.159_1560484953651_0.09108908558227768"},"_hasShrinkwrap":false,"publish_time":1560484953775,"_cnpm_publish_time":1560484953775,"_cnpmcore_publish_time":"2021-12-15T21:12:43.075Z"},"1.3.158":{"name":"electron-to-chromium","version":"1.3.158","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.135.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9749e64690dff8d671537acf703cce165896b073","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.158","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5e16909dcfd25ab7cd1665114ee381083a3ee858","size":5873,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.158.tgz","integrity":"sha512-wJsJaWsViNQ129XPGmyO5gGs1jPMHr9vffjHAhUje1xZbEzQcqbENdvfyRD9q8UF0TgFQFCCUbaIpJarFbvsIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.158_1560369754693_0.2067752104153613"},"_hasShrinkwrap":false,"publish_time":1560369754780,"_cnpm_publish_time":1560369754780,"_cnpmcore_publish_time":"2021-12-15T21:12:43.282Z"},"1.3.157":{"name":"electron-to-chromium","version":"1.3.157","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.134.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"d67e84798028397bc2765ae2ec97a0e1d84e21c5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.157","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6211d69e8c4ee18df8c84e74e8644bcafc09486c","size":5869,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.157.tgz","integrity":"sha512-vxGi3lOGqlupuogZxJOMfu+Q1vaOlG6XbsblWw8XnUZSr/ptbt3D6jhHT5LJPZuFUpKhbEo1u4QipivSory1Kg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.157_1560297755591_0.8388929902670312"},"_hasShrinkwrap":false,"publish_time":1560297755698,"_cnpm_publish_time":1560297755698,"_cnpmcore_publish_time":"2021-12-15T21:12:43.514Z"},"1.3.156":{"name":"electron-to-chromium","version":"1.3.156","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.133.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"18e2f0e0c78a332e6c508a11940c07cb09780ddd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.156","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"fb07b651516e96af2f7b89f05c9598a46e718801","size":5856,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.156.tgz","integrity":"sha512-mQOd8SAYDoIYRfTS/sr9rjX+PjBdAKU62vzS7CVfVx62KG5GRCWMz0c5Ebt0cb2kPFdl5UVNMXa8eSZt3VHvBw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.156_1560283351619_0.3030368492984241"},"_hasShrinkwrap":false,"publish_time":1560283351748,"_cnpm_publish_time":1560283351748,"_cnpmcore_publish_time":"2021-12-15T21:12:43.754Z"},"1.3.155":{"name":"electron-to-chromium","version":"1.3.155","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.132.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e3df824530b3751d507809381caab0e357f79493","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.155","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ebf0cc8eeaffd6151d1efad60fd9e021fb45fd3a","size":5849,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.155.tgz","integrity":"sha512-/ci/XgZG8jkLYOgOe3mpJY1onxPPTDY17y7scldhnSjjZqV6VvREG/LvwhRuV7BJbnENFfuDWZkSqlTh4x9ZjQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.155_1560110553581_0.8638450184222224"},"_hasShrinkwrap":false,"publish_time":1560110553696,"_cnpm_publish_time":1560110553696,"_cnpmcore_publish_time":"2021-12-15T21:12:43.955Z"},"1.3.154":{"name":"electron-to-chromium","version":"1.3.154","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.131.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"3f52e1846b5609b76f94003577da62ef7089ca67","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.154","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e5b73beecd4db9f024d807ba1faad93fe1fb98aa","size":5842,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.154.tgz","integrity":"sha512-r3jVJRWvQIKDdjAbtmvJ7NihBFNUpU4VJKsslAzruv9dnYde3v8U2T7J62Vap3c6l6Ku4J56kxlciIO/E93cQg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.154_1560052953607_0.4970052618480185"},"_hasShrinkwrap":false,"publish_time":1560052953723,"_cnpm_publish_time":1560052953723,"_cnpmcore_publish_time":"2021-12-15T21:12:44.171Z"},"1.3.153":{"name":"electron-to-chromium","version":"1.3.153","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.130.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e9b8abe5b6efa49c864eadbfd574eb4aa3fff4e0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.153","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9b7b21566bbbe542213286eefb05e51ecc023b26","size":5842,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.153.tgz","integrity":"sha512-FtjRc/vpfWzR6WX1FXUlNoFZIRFPwN/XOw+2oAFEk33V1frukrXuUZimAWL0mXIdOlbzJOnI4Wu8qMs/ChDd3g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.153_1560038554647_0.1513883469993118"},"_hasShrinkwrap":false,"publish_time":1560038555806,"_cnpm_publish_time":1560038555806,"_cnpmcore_publish_time":"2021-12-15T21:12:44.387Z"},"1.3.152":{"name":"electron-to-chromium","version":"1.3.152","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.129.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5c8a96cde0e622599ca41d5a5a343cdeea2df3de","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.152","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8f1c08e101d58fe2ef72655481bbf8c83f9450fa","size":5838,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.152.tgz","integrity":"sha512-Ah10cGMWIXYD8aUTH2Y7lGRhaOFQLyWuxvXmCPCZCbUIGJ4swnNmT6P4aA8RTgUmNw9kmcDL6SoU8TZC4YuZGg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.152_1559952153458_0.7329691549971626"},"_hasShrinkwrap":false,"publish_time":1559952153618,"_cnpm_publish_time":1559952153618,"_cnpmcore_publish_time":"2021-12-15T21:12:44.599Z"},"1.3.151":{"name":"electron-to-chromium","version":"1.3.151","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.128.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"150d85aa3d62856099d21a0550be28839d0b18cc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.151","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d4099131871ba2448706141162095ab977db805c","size":5833,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.151.tgz","integrity":"sha512-Lk5HHXw8hSGB6vYJO/yosy4U2JgVFoXn+uDMmZ0sYxltaKon5mKl2AbjNPkY+zBX9asnGDqEJzuzRq1t2aPm1Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.151_1559937759722_0.783670761697806"},"_hasShrinkwrap":false,"publish_time":1559937759879,"_cnpm_publish_time":1559937759879,"_cnpmcore_publish_time":"2021-12-15T21:12:44.812Z"},"1.3.150":{"name":"electron-to-chromium","version":"1.3.150","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.127.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"084ea6dc103112369f32daf49a83c7ff1aaaf99c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.150","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"afb972b53a702b37c76db843c39c967e9f68464b","size":5829,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.150.tgz","integrity":"sha512-5wuYlaXhXbBvavSTij5ZyidICB6sAK/1BwgZZoPCgsniid1oDgzVvDOV/Dw6J25lKV9QZ9ZdQCp8MEfF0/OIKA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.150_1559865752302_0.05096164480526677"},"_hasShrinkwrap":false,"publish_time":1559865752446,"_cnpm_publish_time":1559865752446,"_cnpmcore_publish_time":"2021-12-15T21:12:45.010Z"},"1.3.149":{"name":"electron-to-chromium","version":"1.3.149","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.126.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2dbd1907441df86764bdc4553d4b1ef2f5641505","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.149","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"80c9ea1cf9d2bcebc4fbdcc9c829bebf636d6dac","size":5827,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.149.tgz","integrity":"sha512-XO+s6imdgjUS5hHDwh31fpkzxiIz7hFX8B5qnJdlP/BnzqqDF2A/YoitbGt5TknCm8dS9tIYdiXwDbarsonaFA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.149_1559851352867_0.8897254315709131"},"_hasShrinkwrap":false,"publish_time":1559851353000,"_cnpm_publish_time":1559851353000,"_cnpmcore_publish_time":"2021-12-15T21:12:45.270Z"},"1.3.148":{"name":"electron-to-chromium","version":"1.3.148","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.125.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2cf3512d2973ae0d06d3dbce242d18299dbf0dca","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.148","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5796c0d9eb0358d397163413b90bf376c5d8bf08","size":5821,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.148.tgz","integrity":"sha512-nuCOlXNlGMQmdzihIPGm2K3Yf3H1hke/1rK381i02pH8wNliJU9hVNnOi/xjmxt+mjABd/BzufP5nPHWKshLWA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.148_1559779353113_0.08085728509608603"},"_hasShrinkwrap":false,"publish_time":1559779353239,"_cnpm_publish_time":1559779353239,"_cnpmcore_publish_time":"2021-12-15T21:12:45.510Z"},"1.3.147":{"name":"electron-to-chromium","version":"1.3.147","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.124.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"48fbe9cfa85db156b46755540007783091ce907b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.147","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5d804484f9ab836536a9f5db6020e3eb91d0a322","size":5818,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.147.tgz","integrity":"sha512-pHE+9S2OMXOLAze6KvKMA9Te56M5e4WIdPPPeZ2JiSNvpXkDrn9FoBot1yeeXMRClWvQGI6vj06kQFqCADrspQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.147_1559764950967_0.8874854181026723"},"_hasShrinkwrap":false,"publish_time":1559764951112,"_cnpm_publish_time":1559764951112,"_cnpmcore_publish_time":"2021-12-15T21:12:45.723Z"},"1.3.146":{"name":"electron-to-chromium","version":"1.3.146","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.123.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fda7c4a0118d59ee5a245cd5b322ce0b7cef942e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.146","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d7010f417f87c2068fbb6700ae57767e2393eba7","size":5805,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.146.tgz","integrity":"sha512-BrUq08sx7eR4PCwLbjFxXmjcbDro6DSoc1pN8VCxq76U+o9JQzJlWH/NVtcpAqcktwpE5CVvMyqHqTQfCETNoQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.146_1559707351275_0.00076990641987007"},"_hasShrinkwrap":false,"publish_time":1559707351445,"_cnpm_publish_time":1559707351445,"_cnpmcore_publish_time":"2021-12-15T21:12:45.929Z"},"1.3.145":{"name":"electron-to-chromium","version":"1.3.145","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.122.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"26441bef0b5b08b72d598f893f0f8951476f48e9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.145","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"762ffd398664051353b54af322fcbbd1267c34c3","size":5792,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.145.tgz","integrity":"sha512-2uDL0CszZ002mkJsgorZv15YNz8xKuOOi/MfnMnGla9J6p/j4zicc0RkcpZzMZZOJb6H2CJXOxC3PK98aQunEQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.145_1559692951064_0.9061199967078595"},"_hasShrinkwrap":false,"publish_time":1559692951186,"_cnpm_publish_time":1559692951186,"_cnpmcore_publish_time":"2021-12-15T21:12:46.503Z"},"1.3.144":{"name":"electron-to-chromium","version":"1.3.144","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.121.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"875f0a150434e2e3b481b4a684191225c40f0d2c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.144","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d742d2c451090798303a4a5eea4f33f5e60f5d94","size":5775,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.144.tgz","integrity":"sha512-jNRFJpfNrYm5uJ4x0q9oYMOfbL0JPOlkNli8GS/5zEmCjnE5jAtoCo4BYajHiqSPqEeAjtTdItL4p7EZw+jSfg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.144_1559592150361_0.9030357992721678"},"_hasShrinkwrap":false,"publish_time":1559592150482,"_cnpm_publish_time":1559592150482,"_cnpmcore_publish_time":"2021-12-15T21:12:47.096Z"},"1.3.143":{"name":"electron-to-chromium","version":"1.3.143","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.120.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"11be11da3f58f9f207dcc7cd3803a195f7db6700","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.143","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8b2a631ab75157aa53d0c2933275643b99ef580b","size":5767,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.143.tgz","integrity":"sha512-J9jOpxIljQZlV6GIP2fwAWq0T69syawU0sH3EW3O2Bgxquiy+veeIT5mBDRz+i3oHUSL1tvVgRKH3/4QiQh9Pg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.143_1559505751567_0.12825159423699373"},"_hasShrinkwrap":false,"publish_time":1559505751699,"_cnpm_publish_time":1559505751699,"_cnpmcore_publish_time":"2021-12-15T21:12:47.299Z"},"1.3.142":{"name":"electron-to-chromium","version":"1.3.142","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.119.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"eb86ec3fe61bed00b6e5dbddf2178f0a8829fa69","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.142","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d3db509ac0f0f5a212af234ff3b500d8cc4ea812","size":5758,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.142.tgz","integrity":"sha512-GLOB/wAA2g9l5Hwg1XrPqd6br2WNOPIY8xl/q+g5zZdv3b5fB69oFOooxKxc0DfDfDS1RqaF6hKjwt6v4fuFUw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.142_1559332949430_0.8852051305299644"},"_hasShrinkwrap":false,"publish_time":1559332949526,"_cnpm_publish_time":1559332949526,"_cnpmcore_publish_time":"2021-12-15T21:12:47.513Z"},"1.3.141":{"name":"electron-to-chromium","version":"1.3.141","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.118.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"65a4c0e13aba0ca12de91cc87215b7fce7658764","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.141","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5858d3a74ceafe71e7824e7c809ea2cc59c8e104","size":5752,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.141.tgz","integrity":"sha512-DdQaeP8yQNYFdivOrp37UNAZMvyZP//+SWYMVJD31A/3gbI1J6olQs8tuRaHL2ij7dubhCDXhlE4F97mrT8KGQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.141_1559289751890_0.5599536490932955"},"_hasShrinkwrap":false,"publish_time":1559289752035,"_cnpm_publish_time":1559289752035,"_cnpmcore_publish_time":"2021-12-15T21:12:47.707Z"},"1.3.140":{"name":"electron-to-chromium","version":"1.3.140","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.117.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f60974515d0aba792cf80015c1d3d05b82757265","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.140","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8b554dd0fdccdf1d8eb5a67426e610fef42fdd7f","size":5747,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.140.tgz","integrity":"sha512-gznkq18tTzRWd/nHdmt9CQ/AC9Xv/TWstqKb6bhuVWE+koLg9NFlnXMwvQAUYKxIjPI2lS5TsuqqlRsCVuVdTg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.140_1559246548959_0.5556307628315398"},"_hasShrinkwrap":false,"publish_time":1559246549071,"_cnpm_publish_time":1559246549071,"_cnpmcore_publish_time":"2021-12-15T21:12:48.690Z"},"1.3.139":{"name":"electron-to-chromium","version":"1.3.139","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.115.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"e47ddac9d3a161bdfd39f1f9f73d7b6bdd52c609","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.139","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"17a149701d934bbb91d2aa4ae09e5270c38dc0ff","size":5736,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.139.tgz","integrity":"sha512-8cR7h6doIC/XLgPdsTM3BXpfWLzqrHS6jWrvWLsdZWZWFvVQQUJTbU/wUZsjRGK33OY5ZIiS1n6JbqowuWrmYg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.139_1559174550330_0.7064684860905996"},"_hasShrinkwrap":false,"publish_time":1559174550561,"_cnpm_publish_time":1559174550561,"_cnpmcore_publish_time":"2021-12-15T21:12:48.894Z"},"1.3.138":{"name":"electron-to-chromium","version":"1.3.138","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.114.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"de01a9292a42083d1c955410d062696d0d90b954","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.138","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3c27814d48040d3988eaee56ab839d032987aff4","size":5721,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.138.tgz","integrity":"sha512-V6gvA2zuVp2l8gT8tvaFp3z2IOnx0UeCPuG6Fyw4x/eZEbt9xD9npSgia6emmDFHAz3TU0bElnpKZ3xZ0CUNDw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.138_1559160151257_0.6677841341772568"},"_hasShrinkwrap":false,"publish_time":1559160151433,"_cnpm_publish_time":1559160151433,"_cnpmcore_publish_time":"2021-12-15T21:12:49.472Z"},"1.3.129":{"name":"electron-to-chromium","version":"1.3.129","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.100.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5dd833dad6f5fc78d819b113bac69ef84d68137a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.129","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"bff32e1840775554aafa301e9dc5002d565aae80","size":5620,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.129.tgz","integrity":"sha512-puirJsgZnedlFEmRa7WEUIaS8ZgHHn7d7inph+RiapCc0x80hdoDyEEpR9z3aRUSZy4fGxOTOFcxnGmySlrmhA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.129_1556740951322_0.6835505926666636"},"_hasShrinkwrap":false,"publish_time":1556740951462,"_cnpm_publish_time":1556740951462,"_cnpmcore_publish_time":"2021-12-15T21:12:51.481Z"},"1.3.128":{"name":"electron-to-chromium","version":"1.3.128","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.99.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"23c3a107a94f501c5ab2453da72aa77e4119b37b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.128","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1f9ffa31397da2f220d583dbb2b763e365dfbbc5","size":5611,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.128.tgz","integrity":"sha512-1QK+KELj1mhC9iE7grSP9PP2f06F85UgTs0M9qjuvSuKwxbyifhyPB8dZ27IlYvzMBnLtO4oHNBKTQoN6Tg5mg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.128_1556697753128_0.6781939550991205"},"_hasShrinkwrap":false,"publish_time":1556697753300,"_cnpm_publish_time":1556697753300,"_cnpmcore_publish_time":"2021-12-15T21:12:51.837Z"},"1.3.126":{"name":"electron-to-chromium","version":"1.3.126","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.97.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"a3b6e8408aa16f4cdf442abb98327a717b16ba15","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.126","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"39363f76e55cf2bc06cd919cb76c808b3acaed30","size":5574,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.126.tgz","integrity":"sha512-anr0OeQkZvOGzsz1ZM7BliJjHKfEsodQWoncklQWryDCSXMdVtt/fXlQBKfXXmbMVDhpiydwL3jaonbWuk/F6g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.126_1556136160651_0.9101772622026629"},"_hasShrinkwrap":false,"publish_time":1556136160750,"_cnpm_publish_time":1556136160750,"_cnpmcore_publish_time":"2021-12-15T21:12:52.258Z"},"1.3.125":{"name":"electron-to-chromium","version":"1.3.125","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.96.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f237dc978267c26bb45cfd2818025fc8ffdf5a14","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.125","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"dbde0e95e64ebe322db0eca764d951f885a5aff2","size":5560,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.125.tgz","integrity":"sha512-XxowpqQxJ4nDwUXHtVtmEhRqBpm2OnjBomZmZtHD0d2Eo0244+Ojezhk3sD/MBSSe2nxCdGQFRXHIsf/LUTL9A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.125_1555732953230_0.4031680338191108"},"_hasShrinkwrap":false,"publish_time":1555732953350,"_cnpm_publish_time":1555732953350,"_cnpmcore_publish_time":"2021-12-15T21:12:52.447Z"},"1.3.124":{"name":"electron-to-chromium","version":"1.3.124","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.94.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"435cf7225b9d654deb136dcb55539019aec25724","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.124","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"861fc0148748a11b3e5ccebdf8b795ff513fa11f","size":5549,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.124.tgz","integrity":"sha512-glecGr/kFdfeXUHOHAWvGcXrxNU+1wSO/t5B23tT1dtlvYB26GY8aHzZSWD7HqhqC800Lr+w/hQul6C5AF542w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.124_1554454530490_0.0028921950842322186"},"_hasShrinkwrap":false,"publish_time":1554454530613,"_cnpm_publish_time":1554454530613,"_cnpmcore_publish_time":"2021-12-15T21:12:52.692Z"},"1.3.122":{"name":"electron-to-chromium","version":"1.3.122","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.92.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"5e38b0d5354a77257f7365ec8e117026d5bf64cf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.122","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b32a0805f48557bd3c3b8104eadc7fa511b14a9a","size":5530,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.122.tgz","integrity":"sha512-3RKoIyCN4DhP2dsmleuFvpJAIDOseWH88wFYBzb22CSwoFDSWRc4UAMfrtc9h8nBdJjTNIN3rogChgOy6eFInw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.122_1553889754307_0.8405367149386072"},"_hasShrinkwrap":false,"publish_time":1553889754471,"_cnpm_publish_time":1553889754471,"_cnpmcore_publish_time":"2021-12-15T21:12:52.896Z"},"1.3.121":{"name":"electron-to-chromium","version":"1.3.121","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.90.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"0d02dfb8c39c3dcb513cf0d0546bd5271a90f5de","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.121","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"761aaec1ec947b8ed3e9538177598d8f6ca3b5bd","size":5527,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.121.tgz","integrity":"sha512-ALxUkgrnQ6zg2SN9zHnwDcDRy577haGT9dqsbq8lfeAgmEUPC+58SrrU8vIHpGRf7SEyyBYy4mlfonDnoKxONw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.121_1553817759122_0.8479738241165102"},"_hasShrinkwrap":false,"publish_time":1553817759254,"_cnpm_publish_time":1553817759254,"_cnpmcore_publish_time":"2021-12-15T21:12:53.180Z"},"1.3.120":{"name":"electron-to-chromium","version":"1.3.120","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.87.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"f38c6a72266601ebc23edddee59977cd713ee059","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.120","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ee94e683f4686683674be0f626a5e468cccf7d15","size":5518,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.120.tgz","integrity":"sha512-p1pgKOSSgcROCRiZoJ5H5wFmhqdA0L3yLL9mlfcmdA4V60IDCrsvhNqN8rLPe9e3B772Gm02kBkL1GM/g2lENg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.120_1553745750542_0.7168955892616033"},"_hasShrinkwrap":false,"publish_time":1553745750692,"_cnpm_publish_time":1553745750692,"_cnpmcore_publish_time":"2021-12-15T21:12:53.420Z"},"1.3.119":{"name":"electron-to-chromium","version":"1.3.119","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.86.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"70823c41c258a0fb31fdd08eeca1001defb94466","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.119","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9a7770da667252aeb81f667853f67c2b26e00197","size":5508,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.119.tgz","integrity":"sha512-3mtqcAWa4HgG+Djh/oNXlPH0cOH6MmtwxN1nHSaReb9P0Vn51qYPqYwLeoSuAX9loU1wrOBhFbiX3CkeIxPfgg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.119_1553212952517_0.16041473697273112"},"_hasShrinkwrap":false,"publish_time":1553212952656,"_cnpm_publish_time":1553212952656,"_cnpmcore_publish_time":"2021-12-15T21:12:53.633Z"},"1.3.118":{"name":"electron-to-chromium","version":"1.3.118","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.85.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1d922cb37b07b8087363e62ce8125dd137c10e8e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.118","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5c82b0445a40934e6cae9c2f40bfaaa986ea44a3","size":5501,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.118.tgz","integrity":"sha512-/1FpHvmKmKo2Z6CCza2HfkrKvKhU7Rq4nvyX1FOherdTrdTufhVrJbCrcrIqgqUCI+BG6JC2rlY4z5QA1G0NOw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.118_1553126558916_0.657112816550365"},"_hasShrinkwrap":false,"publish_time":1553126559035,"_cnpm_publish_time":1553126559035,"_cnpmcore_publish_time":"2021-12-15T21:12:53.849Z"},"1.3.117":{"name":"electron-to-chromium","version":"1.3.117","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.84.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"cc86c0ca9c99be1f79483c4d105c695aaea3d515","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.117","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4155184de82a284b8a598eab8e37b5875280c363","size":5491,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.117.tgz","integrity":"sha512-BxNTJ9Zu+WW5hbBg0fnjGfS1X8AOfJEtBmYlVDenPmkmkXmt3WgbPw7y/47mAZomcVB4F2/NZQB/KNz7OdCC2g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.117_1553112158838_0.5362252154824256"},"_hasShrinkwrap":false,"publish_time":1553112158937,"_cnpm_publish_time":1553112158937,"_cnpmcore_publish_time":"2021-12-15T21:12:54.069Z"},"1.3.116":{"name":"electron-to-chromium","version":"1.3.116","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.82.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"15b8d6f14db9e69f2916df21f2670a427f03860c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.116","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1dbfee6a592a0c14ade77dbdfe54fef86387d702","size":5479,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.116.tgz","integrity":"sha512-NKwKAXzur5vFCZYBHpdWjTMO8QptNLNP80nItkSIgUOapPAo9Uia+RvkCaZJtO7fhQaVElSvBPWEc2ku6cKsPA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.116_1552536151550_0.3574313262291102"},"_hasShrinkwrap":false,"publish_time":1552536151711,"_cnpm_publish_time":1552536151711,"_cnpmcore_publish_time":"2021-12-15T21:12:54.325Z"},"1.3.113":{"name":"electron-to-chromium","version":"1.3.113","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"fce24a9ced5ed78f1fba290488f6a85b1c88ff89","_id":"electron-to-chromium@1.3.113","_shasum":"b1ccf619df7295aea17bc6951dc689632629e4a9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b1ccf619df7295aea17bc6951dc689632629e4a9","size":5318,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz","integrity":"sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.113_1549242151996_0.054469750481638934"},"_hasShrinkwrap":false,"publish_time":1549242152117,"_cnpm_publish_time":1549242152117,"_cnpmcore_publish_time":"2021-12-15T21:12:54.969Z"},"1.3.112":{"name":"electron-to-chromium","version":"1.3.112","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"71c78cafc1964cbcd37724dc5ad7e037fa327abc","_id":"electron-to-chromium@1.3.112","_shasum":"1f40a68ceda6328f95218dffeda0f4f3d5412a2f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1f40a68ceda6328f95218dffeda0f4f3d5412a2f","size":5310,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.112.tgz","integrity":"sha512-FyVLdiRZnLw2WE5ECtveN0JJ7klyiz/HMfKE1/Rjff3l7pe4vfkYtBlcCqTckvR8E7asjJGh0m9gRPR3Anp/UA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.112_1549126953768_0.7370768047533403"},"_hasShrinkwrap":false,"publish_time":1549126953936,"_cnpm_publish_time":1549126953936,"_cnpmcore_publish_time":"2021-12-15T21:12:55.179Z"},"1.3.111":{"name":"electron-to-chromium","version":"1.3.111","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"9bcef93ec0aded894540a7dee8bf9791191d311d","_id":"electron-to-chromium@1.3.111","_shasum":"9bde11c953425c1756f85c66e61de2b74ced75d0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9bde11c953425c1756f85c66e61de2b74ced75d0","size":5307,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.111.tgz","integrity":"sha512-I2QjmmxWULp89fEHlFwRpKXSw4Y/Igo3u41py4MkzJTrgDOf/S4oq/IMuTUHze/5TTPpwem74oQiPMEgFtuDRA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.111_1548982950653_0.4586253394304305"},"_hasShrinkwrap":false,"publish_time":1548982950735,"_cnpm_publish_time":1548982950735,"_cnpmcore_publish_time":"2021-12-15T21:12:55.401Z"},"1.3.110":{"name":"electron-to-chromium","version":"1.3.110","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"6be5106c315f94c2c814bc5b7fb7cf1ce6c6902c","_id":"electron-to-chromium@1.3.110","_shasum":"659e18f4caa0c3578a5a08850ba35569191ff5e5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"659e18f4caa0c3578a5a08850ba35569191ff5e5","size":5305,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.110.tgz","integrity":"sha512-LS2Osf3ags8xVmcgRcH06fQjVbSEPhFtMfmjXDv5jHUzg73sNsEflv9rltZ33IAe0RLgU+7ln+1r+U7d6/k0KQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.110_1548968555089_0.012053137104231837"},"_hasShrinkwrap":false,"publish_time":1548968555181,"_cnpm_publish_time":1548968555181,"_cnpmcore_publish_time":"2021-12-15T21:12:55.684Z"},"1.3.108":{"name":"electron-to-chromium","version":"1.3.108","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"023d8762aa470f42632b38545b356328be2b2f78","_id":"electron-to-chromium@1.3.108","_shasum":"2e79a6fcaa4b3e7c75abf871505bda8e268c910e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2e79a6fcaa4b3e7c75abf871505bda8e268c910e","size":5292,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.108.tgz","integrity":"sha512-/QI4hMpAh48a1Sea6PALGv+kuVne9A2EWGd8HrWHMdYhIzGtbhVVHh6heL5fAzGaDnZuPyrlWJRl8WPm4RyiQQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.108_1548406950832_0.3077277121282107"},"_hasShrinkwrap":false,"publish_time":1548406950936,"_cnpm_publish_time":1548406950936,"_cnpmcore_publish_time":"2021-12-15T21:12:56.075Z"},"1.3.107":{"name":"electron-to-chromium","version":"1.3.107","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"97b22cc0f9db6730ffde2763ae96a359bdd98f91","_id":"electron-to-chromium@1.3.107","_shasum":"9f30731b7554bef2c734e8effeaf70da23ebf42a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9f30731b7554bef2c734e8effeaf70da23ebf42a","size":5275,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.107.tgz","integrity":"sha512-EEbV1rhZE6DfbZg/Dt85fyXd8S0oDNXvwgUqkQvxsVXmhNfHxDXRZXUURu/y2J6HSgk+58a56Qqk20U9X7KEbQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.107_1548378150455_0.9228479445397906"},"_hasShrinkwrap":false,"publish_time":1548378150607,"_cnpm_publish_time":1548378150607,"_cnpmcore_publish_time":"2021-12-15T21:12:56.314Z"},"1.3.106":{"name":"electron-to-chromium","version":"1.3.106","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"1a0f87f6d7a577056df0e9c51128817b7fe56ef6","_id":"electron-to-chromium@1.3.106","_shasum":"672183160e783cb546cff83d9a98d5f69cd91874","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"672183160e783cb546cff83d9a98d5f69cd91874","size":5252,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.106.tgz","integrity":"sha512-eXX45p4q9CRxG0G8D3ZBZYSdN3DnrcZfrFvt6VUr1u7aKITEtRY/xwWzJ/UZcWXa7DMqPu/pYwuZ6Nm+bl0GmA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.106_1548205349081_0.5386161192935612"},"_hasShrinkwrap":false,"publish_time":1548205349178,"_cnpm_publish_time":1548205349178,"_cnpmcore_publish_time":"2021-12-15T21:12:56.504Z"},"1.3.105":{"name":"electron-to-chromium","version":"1.3.105","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.44.0","nyc":"^13.1.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"46679a0d8ef967a13e91f44e5cd8ed4c73aaa316","_id":"electron-to-chromium@1.3.105","_shasum":"73907fb2c97b01febe0572e3c550117537fbce59","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"73907fb2c97b01febe0572e3c550117537fbce59","size":5242,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.105.tgz","integrity":"sha512-MWZZTThmQR82yzSPOn0BJ2ayZL1l7QyQpS22Frkxn1se9ZJ1WlSwnH8/CeBVhv4IStRxUDBvypeNy2dqsKR6sQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.105_1548190951018_0.37358008027980527"},"_hasShrinkwrap":false,"publish_time":1548190951117,"_cnpm_publish_time":1548190951117,"_cnpmcore_publish_time":"2021-12-15T21:12:57.068Z"},"1.3.103":{"name":"electron-to-chromium","version":"1.3.103","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"4ec2f2d736b75786c877dec94650f7758eb0037d","_id":"electron-to-chromium@1.3.103","_shasum":"a695777efdbc419cad6cbb0e58458251302cd52f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a695777efdbc419cad6cbb0e58458251302cd52f","size":5229,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.103.tgz","integrity":"sha512-tObPqGmY9X8MUM8i3MEimYmbnLLf05/QV5gPlkR8MQ3Uj8G8B2govE1U4cQcBYtv3ymck9Y8cIOu4waoiykMZQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.103_1547514144144_0.1829508858506177"},"_hasShrinkwrap":false,"publish_time":1547514144313,"_cnpm_publish_time":1547514144313,"_cnpmcore_publish_time":"2021-12-15T21:12:57.519Z"},"1.3.102":{"name":"electron-to-chromium","version":"1.3.102","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"9836443efc1d2c983a278a6a29028e2e19fe48a7","_id":"electron-to-chromium@1.3.102","_shasum":"3ac43a037c8a63bca3dfa189eb3d90f097196787","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3ac43a037c8a63bca3dfa189eb3d90f097196787","size":5227,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.102.tgz","integrity":"sha512-2nzZuXw/KBPnI3QX3UOCSRvJiVy7o9+VHRDQ3D/EHCvVc89X6aj/GlNmEgiR2GBIhmSWXIi4W1M5okA5ScSlNg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.102_1547254941489_0.44921298613956173"},"_hasShrinkwrap":false,"publish_time":1547254941660,"_cnpm_publish_time":1547254941660,"_cnpmcore_publish_time":"2021-12-15T21:12:57.722Z"},"1.3.100":{"name":"electron-to-chromium","version":"1.3.100","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"7226c2f2eb933083df12c3dcf54a5bff621ed538","_id":"electron-to-chromium@1.3.100","_shasum":"899fb088def210aee6b838a47655bbb299190e13","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"899fb088def210aee6b838a47655bbb299190e13","size":5225,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.100.tgz","integrity":"sha512-cEUzis2g/RatrVf8x26L8lK5VEls1AGnLHk6msluBUg/NTB4wcXzExTsGscFq+Vs4WBBU2zbLLySvD4C0C3hwg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.100_1546909347299_0.6374008935138828"},"_hasShrinkwrap":false,"publish_time":1546909347484,"_cnpm_publish_time":1546909347484,"_cnpmcore_publish_time":"2021-12-15T21:12:58.470Z"},"1.3.99":{"name":"electron-to-chromium","version":"1.3.99","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c9cde6ade02ad4ed0e89432f673149ee0ae11617","_id":"electron-to-chromium@1.3.99","_shasum":"1b676afb6bce62165a3db7533bab3e2f8184bfcf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.16.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1b676afb6bce62165a3db7533bab3e2f8184bfcf","size":5186,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.99.tgz","integrity":"sha512-2+EyjU/3Iu+UEwcZimGLQ3VVloCjoLYcjm88vXW89UsqAwsXjgjNrnsK5iaxj6/H8CECSsaiMKlLIASjGhNuBg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.99_1546894945371_0.37610719552647254"},"_hasShrinkwrap":false,"publish_time":1546894945505,"_cnpm_publish_time":1546894945505,"_cnpmcore_publish_time":"2021-12-15T21:12:58.687Z"},"1.3.97":{"name":"electron-to-chromium","version":"1.3.97","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8bb1c696b73030e6b903e0db8b36e93ef2174166","_id":"electron-to-chromium@1.3.97","_shasum":"61918815c3baa03cdf42e91e32fae2f7c5c29b65","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"61918815c3baa03cdf42e91e32fae2f7c5c29b65","size":5172,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.97.tgz","integrity":"sha512-cElMxsoUl8BoY+DnTNXebdVuDz/l0HS5ijpq1uUcHNMrzFiQRKmADn39luHVIaeISO8qtFbNmqhSBU/BQCHwig=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.97_1546635745372_0.039909231277169166"},"_hasShrinkwrap":false,"publish_time":1546635745509,"_cnpm_publish_time":1546635745509,"_cnpmcore_publish_time":"2021-12-15T21:12:59.125Z"},"1.3.96":{"name":"electron-to-chromium","version":"1.3.96","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8ed743b871ac41a6afb254956b9ac4498849f94c","_id":"electron-to-chromium@1.3.96","_shasum":"25770ec99b8b07706dedf3a5f43fa50cb54c4f9a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"25770ec99b8b07706dedf3a5f43fa50cb54c4f9a","size":5165,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.96.tgz","integrity":"sha512-ZUXBUyGLeoJxp4Nt6G/GjBRLnyz8IKQGexZ2ndWaoegThgMGFO1tdDYID5gBV32/1S83osjJHyfzvanE/8HY4Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.96_1545354143366_0.5178707416638615"},"_hasShrinkwrap":false,"publish_time":1545354143492,"_cnpm_publish_time":1545354143492,"_cnpmcore_publish_time":"2021-12-15T21:12:59.356Z"},"1.3.95":{"name":"electron-to-chromium","version":"1.3.95","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8afc0d3007293adba0463170291947a2d2524a9b","_id":"electron-to-chromium@1.3.95","_shasum":"79fac438813ca7f3db182a525c2ab432934f6484","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"79fac438813ca7f3db182a525c2ab432934f6484","size":5154,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.95.tgz","integrity":"sha512-0JZEDKOQAE05EO/4rk3vLAE+PYFI9OLCVLAS4QAq1y+Bb2y1N6MyQJz62ynzHN/y0Ka/nO5jVJcahbCEdfiXLQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.95_1545181346758_0.6102572518554386"},"_hasShrinkwrap":false,"publish_time":1545181346973,"_cnpm_publish_time":1545181346973,"_cnpmcore_publish_time":"2021-12-15T21:12:59.566Z"},"1.3.94":{"name":"electron-to-chromium","version":"1.3.94","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"5576948ff1293c45b0d4bcf103af6facb0160801","_id":"electron-to-chromium@1.3.94","_shasum":"896dba14f6fefb431295b90543874925ee0cd46e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"896dba14f6fefb431295b90543874925ee0cd46e","size":5147,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.94.tgz","integrity":"sha512-miQqXALb6eBD3OetCtg3UM5XTLMwHISux0l6mh14iiV5SE+qvftgOCXT9Vvp53fWaCLET4sfA/SmIMYHXkaNmw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.94_1545094944384_0.054264077939900845"},"_hasShrinkwrap":false,"publish_time":1545094944501,"_cnpm_publish_time":1545094944501,"_cnpmcore_publish_time":"2021-12-15T21:12:59.786Z"},"1.3.93":{"name":"electron-to-chromium","version":"1.3.93","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b7324540a4154ad9853b5709ee52669f981436cc","_id":"electron-to-chromium@1.3.93","_shasum":"70bee859e9a0da365cb5ae23ab498a3bb8ec1681","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"70bee859e9a0da365cb5ae23ab498a3bb8ec1681","size":5144,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.93.tgz","integrity":"sha512-H+tt+fedI+C5zl4yGtzdk17e6mOYAyawolXuAojWBULIbqOz9VR7h0cG5YcivQ1yCXrpw+Rjk6cBw47HlYtnKg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.93_1545080544739_0.5007560187474589"},"_hasShrinkwrap":false,"publish_time":1545080544956,"_cnpm_publish_time":1545080544956,"_cnpmcore_publish_time":"2021-12-15T21:13:00.002Z"},"1.3.92":{"name":"electron-to-chromium","version":"1.3.92","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"9db58e1a253d9f833069d6dffd6144a3acbb74ec","_id":"electron-to-chromium@1.3.92","_shasum":"9027b5abaea400045edd652c0e4838675c814399","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9027b5abaea400045edd652c0e4838675c814399","size":5132,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.92.tgz","integrity":"sha512-En051LMzMl3/asMWGZEtU808HOoVWIpmmZx1Ep8N+TT9e7z/X8RcLeBU2kLSNLGQ+5SuKELzMx+MVuTBXk6Q9w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.92_1544835744286_0.2902128268315036"},"_hasShrinkwrap":false,"publish_time":1544835744445,"_cnpm_publish_time":1544835744445,"_cnpmcore_publish_time":"2021-12-15T21:13:00.210Z"},"1.3.91":{"name":"electron-to-chromium","version":"1.3.91","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"166645e37ed1b8148620557f96d63fd2ec89b02b","_id":"electron-to-chromium@1.3.91","_shasum":"d74437a753b122aa6eca7c722055004d3627635d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d74437a753b122aa6eca7c722055004d3627635d","size":5122,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.91.tgz","integrity":"sha512-wOWwM4vQpmb97VNkExnwE5e/sUMUb7NXurlEnhE89JOarUp6FOOMKjtTGgj9bmqskZkeRA7u+p0IztJ/y2OP5Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.91_1544734948435_0.144184394627473"},"_hasShrinkwrap":false,"publish_time":1544734948527,"_cnpm_publish_time":1544734948527,"_cnpmcore_publish_time":"2021-12-15T21:13:00.408Z"},"1.3.90":{"name":"electron-to-chromium","version":"1.3.90","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8fa274a2d85c7b8f99f374de6d67939c29dd9de4","_id":"electron-to-chromium@1.3.90","_shasum":"b4c51b8303beff18f2b74817402bf4898e09558a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b4c51b8303beff18f2b74817402bf4898e09558a","size":5116,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.90.tgz","integrity":"sha512-IjJZKRhFbWSOX1w0sdIXgp4CMRguu6UYcTckyFF/Gjtemsu/25eZ+RXwFlV+UWcIueHyQA1UnRJxocTpH5NdGA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.90_1544504545591_0.1968203688495027"},"_hasShrinkwrap":false,"publish_time":1544504545736,"_cnpm_publish_time":1544504545736,"_cnpmcore_publish_time":"2021-12-15T21:13:00.650Z"},"1.3.89":{"name":"electron-to-chromium","version":"1.3.89","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6492f0a56ba8be217bf4bf96cff4db47bfe6542f","_id":"electron-to-chromium@1.3.89","_shasum":"8e8688923c058af9444684dd7a62e18c1e4458aa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8e8688923c058af9444684dd7a62e18c1e4458aa","size":5107,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.89.tgz","integrity":"sha512-Vb6lmZZdqMX4+v2G5SCTgy/cYtACuG5pAlFrC6AoyOpQaXBft32Vv9ejjPW7+rYWA/ww1iGKMDUCpnmqab6XBg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.89_1544490144226_0.17041104626399406"},"_hasShrinkwrap":false,"publish_time":1544490144547,"_cnpm_publish_time":1544490144547,"_cnpmcore_publish_time":"2021-12-15T21:13:01.260Z"},"1.3.88":{"name":"electron-to-chromium","version":"1.3.88","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6ae085613fa7c5085e91d91e611f755ea9c05459","_id":"electron-to-chromium@1.3.88","_shasum":"f36ab32634f49ef2b0fdc1e82e2d1cc17feb29e7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f36ab32634f49ef2b0fdc1e82e2d1cc17feb29e7","size":5102,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.88.tgz","integrity":"sha512-UPV4NuQMKeUh1S0OWRvwg0PI8ASHN9kBC8yDTk1ROXLC85W5GnhTRu/MZu3Teqx3JjlQYuckuHYXSUSgtb3J+A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.88_1543899755360_0.40647409193968076"},"_hasShrinkwrap":false,"publish_time":1543899755524,"_cnpm_publish_time":1543899755524,"_cnpmcore_publish_time":"2021-12-15T21:13:01.483Z"},"1.3.87":{"name":"electron-to-chromium","version":"1.3.87","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"145b791f5f1be271f1873192fbecc61e6cda115c","_id":"electron-to-chromium@1.3.87","_shasum":"f0481ca84824752bced51673396e9a6c74fe5ec7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f0481ca84824752bced51673396e9a6c74fe5ec7","size":5097,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.87.tgz","integrity":"sha512-EV5FZ68Hu+n9fHVhOc9AcG3Lvf+E1YqR36ulJUpwaQTkf4LwdvBqmGIazaIrt4kt6J8Gw3Kv7r9F+PQjAkjWeA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.87_1543784556502_0.018698093375767444"},"_hasShrinkwrap":false,"publish_time":1543784556657,"_cnpm_publish_time":1543784556657,"_cnpmcore_publish_time":"2021-12-15T21:13:01.720Z"},"1.3.86":{"name":"electron-to-chromium","version":"1.3.86","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"d48df25aba35c53a21ffeb290040aaad9cc3407d","_id":"electron-to-chromium@1.3.86","_shasum":"a45ea01da5b26500d12bca5e0f194ebb3e1fd14e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.15.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a45ea01da5b26500d12bca5e0f194ebb3e1fd14e","size":5088,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.86.tgz","integrity":"sha512-BcmXOu37FCPxrrh0wyKgKi5dAjIu2ohxN5ptapkLPKRC3IBK2NeIwh9n1x/8HzSRQiEKamJkDce1ZgOGgEX9iw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.86_1543597356513_0.20943155547967973"},"_hasShrinkwrap":false,"publish_time":1543597356590,"_cnpm_publish_time":1543597356590,"_cnpmcore_publish_time":"2021-12-15T21:13:01.985Z"},"1.3.85":{"name":"electron-to-chromium","version":"1.3.85","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"ee5c50ed84587bdb910cda1b241d7e1dfaf73ef6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.85","_npmVersion":"6.4.1","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5c46f790aa96445cabc57eb9d17346b1e46476fe","size":5088,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.85.tgz","integrity":"sha512-kWSDVVF9t3mft2OHVZy4K85X2beP6c6mFm3teFS/mLSDJpQwuFIWHrULCX+w6H1E55ZYmFRlT+ATAFRwhrYzsw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.85_1543315761162_0.6140185418992736"},"_hasShrinkwrap":false,"publish_time":1543315761290,"_cnpm_publish_time":1543315761290,"_cnpmcore_publish_time":"2021-12-15T21:13:02.218Z"},"1.3.84":{"name":"electron-to-chromium","version":"1.3.84","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^3.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"77330da2a76b97056000cb41a4bfc7067c911534","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.84","_npmVersion":"6.4.1","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2e55df59e818f150a9f61b53471ebf4f0feecc65","size":5072,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.84.tgz","integrity":"sha512-IYhbzJYOopiTaNWMBp7RjbecUBsbnbDneOP86f3qvS0G0xfzwNSvMJpTrvi5/Y1gU7tg2NAgeg8a8rCYvW9Whw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.84_1541754140781_0.6284335846222644"},"_hasShrinkwrap":false,"publish_time":1541754140962,"_cnpm_publish_time":1541754140962,"_cnpmcore_publish_time":"2021-12-15T21:13:02.457Z"},"1.3.81":{"name":"electron-to-chromium","version":"1.3.81","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"7956a5c33a8b74bb07b9d7354ffc258075d605a7","_id":"electron-to-chromium@1.3.81","_shasum":"32af69206ef78973b6a6771b0c8450c2ce253913","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"32af69206ef78973b6a6771b0c8450c2ce253913","size":5047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.81.tgz","integrity":"sha512-+rym2xtzwPWmoi8AYRrCdW65QOT0vfUHjZb5mjgh0VLyj31pGM3CpP3znKhQNBzQaWujR/KEl/mfC2lnKYgADA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.81_1540310547604_0.14260611965847492"},"_hasShrinkwrap":false,"publish_time":1540310547760,"_cnpm_publish_time":1540310547760,"_cnpmcore_publish_time":"2021-12-15T21:13:03.226Z"},"1.3.80":{"name":"electron-to-chromium","version":"1.3.80","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"f6c054c11db5f0742562239a524aca792f8472c9","_id":"electron-to-chromium@1.3.80","_shasum":"e99ec7efe64c2c6a269d3885ff411ea88852fa53","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e99ec7efe64c2c6a269d3885ff411ea88852fa53","size":5038,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.80.tgz","integrity":"sha512-WClidEWEUNx7OfwXehB0qaxCuetjbKjev2SmXWgybWPLKAThBiMTF/2Pd8GSUDtoGOavxVzdkKwfFAPRSWlkLw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.80_1539921744812_0.3500569645734801"},"_hasShrinkwrap":false,"publish_time":1539921744937,"_cnpm_publish_time":1539921744937,"_cnpmcore_publish_time":"2021-12-15T21:13:03.460Z"},"1.3.79":{"name":"electron-to-chromium","version":"1.3.79","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"62b60604155e28cb836e743d23409d2cab467128","_id":"electron-to-chromium@1.3.79","_shasum":"774718f06284a4bf8f578ac67e74508fe659f13a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"774718f06284a4bf8f578ac67e74508fe659f13a","size":5019,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.79.tgz","integrity":"sha512-LQdY3j4PxuUl6xfxiFruTSlCniTrTrzAd8/HfsLEMi0PUpaQ0Iy+Pr4N4VllDYjs0Hyu2lkTbvzqlG+PX9NsNw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.79_1539388944998_0.012980185832210944"},"_hasShrinkwrap":false,"publish_time":1539388945142,"_cnpm_publish_time":1539388945142,"_cnpmcore_publish_time":"2021-12-15T21:13:04.077Z"},"1.3.78":{"name":"electron-to-chromium","version":"1.3.78","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"bac4367a54856c2a184bb9251519953cf480cee0","_id":"electron-to-chromium@1.3.78","_shasum":"ecb72b5b166ba6598efb384461d63cad74678ebf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ecb72b5b166ba6598efb384461d63cad74678ebf","size":5022,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.78.tgz","integrity":"sha512-p4D/5iX08c3LNep5bWn/X3dFmec1K9le6O43lgRsO/vYKBTH2smWDMDfkGlPtERFcLVkI8xdKW5EokBZODh1xg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.78_1539316949107_0.1581500412273975"},"_hasShrinkwrap":false,"publish_time":1539316949198,"_cnpm_publish_time":1539316949198,"_cnpmcore_publish_time":"2021-12-15T21:13:04.311Z"},"1.3.77":{"name":"electron-to-chromium","version":"1.3.77","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8ac42838dd0e91233cb32be1e764b8900fb8fea0","_id":"electron-to-chromium@1.3.77","_shasum":"9207a874a21a8fcb665bb4ff1675a11ba65517f4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9207a874a21a8fcb665bb4ff1675a11ba65517f4","size":5008,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.77.tgz","integrity":"sha512-XIfQcdU9L4qUte31fFATwptHodMH0Otf53N8y1AKxd1+79vR+2UYpLq+Z1Zbtbuy+w0xd7KwIUrvlnje/htiOg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.77_1539244944607_0.7266782842124329"},"_hasShrinkwrap":false,"publish_time":1539244944785,"_cnpm_publish_time":1539244944785,"_cnpmcore_publish_time":"2021-12-15T21:13:04.539Z"},"1.3.76":{"name":"electron-to-chromium","version":"1.3.76","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"25915311f78698b801b01607ed21dd3b804ed0b1","_id":"electron-to-chromium@1.3.76","_shasum":"2597c9c461f805298696f2de7a1ad1791f6d6226","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2597c9c461f805298696f2de7a1ad1791f6d6226","size":4995,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.76.tgz","integrity":"sha512-qKQQzjRqpTqiVV7fP0DZRqndQFkzzp5knBvNkqdNIKd7Of/+d9tvNVtY3ffSDUD5UrMepe7IOmBflugDPhPNtA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.76_1539187344659_0.8355048910310263"},"_hasShrinkwrap":false,"publish_time":1539187344776,"_cnpm_publish_time":1539187344776,"_cnpmcore_publish_time":"2021-12-15T21:13:04.747Z"},"1.3.75":{"name":"electron-to-chromium","version":"1.3.75","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a508ed74c8f2ddd6713a66e1aa49a9f61012219d","_id":"electron-to-chromium@1.3.75","_shasum":"dd04551739e7371862b0ac7f4ddaa9f3f95b7e68","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"dd04551739e7371862b0ac7f4ddaa9f3f95b7e68","size":4968,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.75.tgz","integrity":"sha512-nLo03Qpw++8R6BxDZL/B1c8SQvUe/htdgc5LWYHe5YotV2jVvRUMP5AlOmxOsyeOzgMiXrNln2mC05Ixz6vuUQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.75_1538884943816_0.9557183031075098"},"_hasShrinkwrap":false,"publish_time":1538884944008,"_cnpm_publish_time":1538884944008,"_cnpmcore_publish_time":"2021-12-15T21:13:05.016Z"},"1.3.74":{"name":"electron-to-chromium","version":"1.3.74","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"2c72d69a994bdae9397b0da3995aa2be4b6d7970","_id":"electron-to-chromium@1.3.74","_shasum":"443f60655e0de630491ca4e48e4436bc375debd1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"443f60655e0de630491ca4e48e4436bc375debd1","size":4960,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.74.tgz","integrity":"sha512-MJm7r64Kt1jQCLEiyfgfcu9lbO6/7jjfpH8x2FrutQ4Cb93aS+6dlfW+G65rPhVTjlTmwCfjQGCKZVEaaltOwQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.74_1538827346525_0.8326075054546926"},"_hasShrinkwrap":false,"publish_time":1538827346692,"_cnpm_publish_time":1538827346692,"_cnpmcore_publish_time":"2021-12-15T21:13:05.247Z"},"1.3.73":{"name":"electron-to-chromium","version":"1.3.73","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"042804d1345fa8fa59a694e29344b280da6552d7","_id":"electron-to-chromium@1.3.73","_shasum":"aa67787067d58cc3920089368b3b8d6fe0fc12f6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"aa67787067d58cc3920089368b3b8d6fe0fc12f6","size":4935,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.73.tgz","integrity":"sha512-6PIg7v9zRoVGh6EheRF8h6Plti+3Yo/qtHobS4/Htyt53DNHmKKGFqSae1AIk0k1S4gCQvt7I2WgpbuZNcDY+g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.73_1538424144028_0.376086656056406"},"_hasShrinkwrap":false,"publish_time":1538424144149,"_cnpm_publish_time":1538424144149,"_cnpmcore_publish_time":"2021-12-15T21:13:05.495Z"},"1.3.72":{"name":"electron-to-chromium","version":"1.3.72","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"742e2a1c0f25aedbb0c14556e7d038997654414e","_id":"electron-to-chromium@1.3.72","_shasum":"b69683081d5b7eee6e1ea07b2f5fa30b3c72252d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b69683081d5b7eee6e1ea07b2f5fa30b3c72252d","size":4813,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.72.tgz","integrity":"sha512-OFbXEC01Lq7A66e3UywkvWYNN00HO1I9MAPereGe0NIXrt2MeaovL1bbY+951HKG0euUdPBe0L7yfKxgqxBMMw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.72_1538092944961_0.27153962552934097"},"_hasShrinkwrap":false,"publish_time":1538092945082,"_cnpm_publish_time":1538092945082,"_cnpmcore_publish_time":"2021-12-15T21:13:05.706Z"},"1.3.71":{"name":"electron-to-chromium","version":"1.3.71","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"af160fbdcfa2a90242a3f16fc5c0bf876fe91082","_id":"electron-to-chromium@1.3.71","_shasum":"baecb282e8b27247bbfcf2f3e0254d6fe9a76789","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"baecb282e8b27247bbfcf2f3e0254d6fe9a76789","size":4810,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.71.tgz","integrity":"sha512-VjZ6mQbbgF3GZ3eeQOMMgkdP8pWAHoW9UA+CNAVB4qSaOES4usB9RVIW764mYffdT2GOWF10Udt82RIZnTCTMg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.71_1538020945858_0.5882355009882589"},"_hasShrinkwrap":false,"publish_time":1538020946161,"_cnpm_publish_time":1538020946161,"_cnpmcore_publish_time":"2021-12-15T21:13:05.924Z"},"1.3.70":{"name":"electron-to-chromium","version":"1.3.70","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"70edf3faaba522f4d6acbc3eddf9baa4a7aa0e37","_id":"electron-to-chromium@1.3.70","_shasum":"ded377256d92d81b4257d36c65aa890274afcfd2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ded377256d92d81b4257d36c65aa890274afcfd2","size":4803,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.70.tgz","integrity":"sha512-WYMjqCnPVS5JA+XvwEnpwucJpVi2+q9cdCFpbhxgWGsCtforFBEkuP9+nCyy/wnU/0SyLcLRIeZct9ayMGcXoQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.70_1537358545972_0.8055896672380949"},"_hasShrinkwrap":false,"publish_time":1537358546131,"_cnpm_publish_time":1537358546131,"_cnpmcore_publish_time":"2021-12-15T21:13:06.137Z"},"1.3.69":{"name":"electron-to-chromium","version":"1.3.69","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a7a4859a8b8d6e180dffc6d7d20e3219ffb77892","_id":"electron-to-chromium@1.3.69","_shasum":"0fd5d4bfd89ba6a431a144375245aea65073e3ca","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0fd5d4bfd89ba6a431a144375245aea65073e3ca","size":4796,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.69.tgz","integrity":"sha512-BXOfu4dyeouzx9CuSnU2fV6ElZYUlVxADxkJI4jUl1DlmkmaaEqDhgm7balB5yR0jMtk2p+h68geOv9z1/F10g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.69_1537300946125_0.6388915664875665"},"_hasShrinkwrap":false,"publish_time":1537300946270,"_cnpm_publish_time":1537300946270,"_cnpmcore_publish_time":"2021-12-15T21:13:06.337Z"},"1.3.68":{"name":"electron-to-chromium","version":"1.3.68","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b6015266dae5853e2f80aa7f18e84c7a84cdf47a","_id":"electron-to-chromium@1.3.68","_shasum":"bb3ccbadcdd06de2afea8fb73e31a60b6558de1f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"bb3ccbadcdd06de2afea8fb73e31a60b6558de1f","size":4792,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.68.tgz","integrity":"sha512-NHs9Xm6+ZUDkRj7t1tFwizzfMO2XZg0nmHNRRTurXHDUcEoz3Kdjs2mxXsd8drpEDfg5aVL0S8aypUCTA0HJ/Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.68_1537214544040_0.7344119265316817"},"_hasShrinkwrap":false,"publish_time":1537214544201,"_cnpm_publish_time":1537214544201,"_cnpmcore_publish_time":"2021-12-15T21:13:06.585Z"},"1.3.67":{"name":"electron-to-chromium","version":"1.3.67","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"d6ffb3d9d0c2d0707320a29e77bb4a82b32a2efa","_id":"electron-to-chromium@1.3.67","_shasum":"5e8f3ffac89b4b0402c7e1a565be06f3a109abbc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"5e8f3ffac89b4b0402c7e1a565be06f3a109abbc","size":4789,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.67.tgz","integrity":"sha512-h3zEBLdHvsKfaXv1SHAtykJyNtwYFEKkrWGSFyW1BzGgPQ4ykAzD5Hd8C5MZGTAEhkCKmtyIwYUrapsI0xfKww=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.67_1536796943826_0.5894756355403783"},"_hasShrinkwrap":false,"publish_time":1536796944005,"_cnpm_publish_time":1536796944005,"_cnpmcore_publish_time":"2021-12-15T21:13:06.796Z"},"1.3.66":{"name":"electron-to-chromium","version":"1.3.66","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"0d4068a7e218b2de90fe3046b007d6e844b6a7f7","_id":"electron-to-chromium@1.3.66","_shasum":"1410d8f8768a14dcd09d96222990f43c969af270","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1410d8f8768a14dcd09d96222990f43c969af270","size":4787,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.66.tgz","integrity":"sha512-EXfLtc9JxX2AZxISZ10o6hXEXTtnLtj7il5eye5YMgmDf4HbBbg+QDXpUEspsFrUcUugJZd5QJ4iIkRrmQQqIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.66_1536753746574_0.18110287507739864"},"_hasShrinkwrap":false,"publish_time":1536753746642,"_cnpm_publish_time":1536753746642,"_cnpmcore_publish_time":"2021-12-15T21:13:07.079Z"},"1.3.65":{"name":"electron-to-chromium","version":"1.3.65","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"23f51bff97377f3605689746c4634d89123eeb45","_id":"electron-to-chromium@1.3.65","_shasum":"0655c238e45fea7e0e0e81fd0cac62b8186129c2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0655c238e45fea7e0e0e81fd0cac62b8186129c2","size":4783,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.65.tgz","integrity":"sha512-tyGr+wh2c/JYBVMeflKpZ3ricwtBPyVBMtRNxYGObl7TP5bAeupgz4VZnBzQSFleZViXYTws1yZtKKFQYZyiYw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.65_1536609745788_0.515850905325473"},"_hasShrinkwrap":false,"publish_time":1536609745857,"_cnpm_publish_time":1536609745857,"_cnpmcore_publish_time":"2021-12-15T21:13:07.310Z"},"1.3.64":{"name":"electron-to-chromium","version":"1.3.64","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"31e19bbe5ce77e583259627dcfcc4ffc27ba1abc","_id":"electron-to-chromium@1.3.64","_shasum":"39f5a93bf84ab7e10cfbb7522ccfc3f1feb756cf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"39f5a93bf84ab7e10cfbb7522ccfc3f1feb756cf","size":4783,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.64.tgz","integrity":"sha512-CU5ta5MbzRre+WhzKfPBM3HlyZGM7bwNKmiByzFzCfxP3q7cNmGLKopq5Q+LGXza69aIHXk2sZZSh/Oh7TKPIQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.64_1536393746073_0.7516012576362276"},"_hasShrinkwrap":false,"publish_time":1536393746175,"_cnpm_publish_time":1536393746175,"_cnpmcore_publish_time":"2021-12-15T21:13:07.619Z"},"1.3.63":{"name":"electron-to-chromium","version":"1.3.63","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c9d14da76946322d2a90fa4ffdb5d18109aaefc2","_id":"electron-to-chromium@1.3.63","_shasum":"6485f5f4f3375358aa8fa23c2029ada208483b8d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6485f5f4f3375358aa8fa23c2029ada208483b8d","size":4773,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.63.tgz","integrity":"sha512-Ec35NNY040HKuSxMAzBMgz/uUI78amSWpBUD9x2gN7R7gkb/wgAcClngWklcLP0/lm/g0UUYHnC/tUIlZj8UvQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.63_1536206543236_0.4755228429215266"},"_hasShrinkwrap":false,"publish_time":1536206543352,"_cnpm_publish_time":1536206543352,"_cnpmcore_publish_time":"2021-12-15T21:13:07.857Z"},"1.3.62":{"name":"electron-to-chromium","version":"1.3.62","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6fd6d8b721645b4e2adf1f0cf0400042f1fe9178","_id":"electron-to-chromium@1.3.62","_shasum":"2e8e2dc070c800ec8ce23ff9dfcceb585d6f9ed8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2e8e2dc070c800ec8ce23ff9dfcceb585d6f9ed8","size":4763,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.62.tgz","integrity":"sha512-x09ndL/Gjnuk3unlAyoGyUg3wbs4w/bXurgL7wL913vXHAOWmMhrLf1VNGRaMLngmadd5Q8gsV9BFuIr6rP+Xg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.62_1535529742869_0.2900346898873176"},"_hasShrinkwrap":false,"publish_time":1535529743036,"_cnpm_publish_time":1535529743036,"_cnpmcore_publish_time":"2021-12-15T21:13:08.072Z"},"1.3.61":{"name":"electron-to-chromium","version":"1.3.61","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"daaf661da8d18f95aabe64417df50104c1d8bf77","_id":"electron-to-chromium@1.3.61","_shasum":"a8ac295b28d0f03d85e37326fd16b6b6b17a1795","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a8ac295b28d0f03d85e37326fd16b6b6b17a1795","size":4762,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.61.tgz","integrity":"sha512-XjTdsm6x71Y48lF9EEvGciwXD70b20g0t+3YbrE+0fPFutqV08DSNrZXkoXAp3QuzX7TpL/OW+/VsNoR9GkuNg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.61_1534982544467_0.7543374882353864"},"_hasShrinkwrap":false,"publish_time":1534982544532,"_cnpm_publish_time":1534982544532,"_cnpmcore_publish_time":"2021-12-15T21:13:08.362Z"},"1.3.60":{"name":"electron-to-chromium","version":"1.3.60","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"985e6226f839d2226d5fa71f030fa744bac93fe2","_id":"electron-to-chromium@1.3.60","_shasum":"85a28db8484f3dd84de46bdcb7aa829e2f016423","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"85a28db8484f3dd84de46bdcb7aa829e2f016423","size":4747,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.60.tgz","integrity":"sha512-nOZ40zMIpmAtbZBqbMFOprS02+vIIjzLobXvwz9RALT28PtVu4Ekrm8Zk6VrjmWSnv7PLL/e6Va+hLG5nREnvA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.60_1534968145093_0.013185468053556804"},"_hasShrinkwrap":false,"publish_time":1534968145346,"_cnpm_publish_time":1534968145346,"_cnpmcore_publish_time":"2021-12-15T21:13:08.597Z"},"1.3.59":{"name":"electron-to-chromium","version":"1.3.59","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"19acad3c9f4d717407741ef335521fea63629d5a","_id":"electron-to-chromium@1.3.59","_shasum":"6377db04d8d3991d6286c72ed5c3fde6f4aaf112","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6377db04d8d3991d6286c72ed5c3fde6f4aaf112","size":4741,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.59.tgz","integrity":"sha512-PbJGGpDSNn3fyUN1eQESAmnMT+a1QAO4NEZgikDuGOn7tbAuMHF87jNna+NoVsMBfEEYzfpn/ay88HgDCJUbQA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.59_1534795343951_0.1853363784542974"},"_hasShrinkwrap":false,"publish_time":1534795344046,"_cnpm_publish_time":1534795344046,"_cnpmcore_publish_time":"2021-12-15T21:13:08.820Z"},"1.3.58":{"name":"electron-to-chromium","version":"1.3.58","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8637284c512280e5a8debeef18154df4e567976f","_id":"electron-to-chromium@1.3.58","_shasum":"8267a4000014e93986d9d18c65a8b4022ca75188","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8267a4000014e93986d9d18c65a8b4022ca75188","size":4732,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.58.tgz","integrity":"sha512-AGJxlBEn2wOohxqWZkISVsOjZueKTQljfEODTDSEiMqSpH0S+xzV+/5oEM9AGaqhu7DzrpKOgU7ocQRjj0nJmg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.58_1534190543992_0.3427803177324933"},"_hasShrinkwrap":false,"publish_time":1534190544066,"_cnpm_publish_time":1534190544066,"_cnpmcore_publish_time":"2021-12-15T21:13:09.065Z"},"1.3.57":{"name":"electron-to-chromium","version":"1.3.57","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"27b0f15566e1ef144911055cea8cdbeef98de9f9","_id":"electron-to-chromium@1.3.57","_shasum":"61b2446f16af26fb8873210007a7637ad644c82d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"61b2446f16af26fb8873210007a7637ad644c82d","size":4730,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.57.tgz","integrity":"sha512-YYpZlr6mzR8cK5VRmTZydEt5Mp+WMg1/syrO40PoQzl76vJ+oQchL2d3FmEcWzw3FYqJVYJP/kYYSzTa7FLXwg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.57_1533859344929_0.9793783309287918"},"_hasShrinkwrap":false,"publish_time":1533859345005,"_cnpm_publish_time":1533859345005,"_cnpmcore_publish_time":"2021-12-15T21:13:09.289Z"},"1.3.56":{"name":"electron-to-chromium","version":"1.3.56","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"90415aaa2d4606c8baf1fe6e97681ea4609a06c8","_id":"electron-to-chromium@1.3.56","_shasum":"aad1420d23e9dd8cd2fc2bc53f4928adcf85f02f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"aad1420d23e9dd8cd2fc2bc53f4928adcf85f02f","size":4703,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.56.tgz","integrity":"sha512-h4FnvXgyfJaA1egXqCwfpecFu1k6U4sPqwvCeux2yEWbu+Avlsa9i07iB5M+M1M2iyfEUnuQDWYCkPCkfO5cpg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.56_1533772943872_0.9121572531599127"},"_hasShrinkwrap":false,"publish_time":1533772943970,"_cnpm_publish_time":1533772943970,"_cnpmcore_publish_time":"2021-12-15T21:13:09.521Z"},"1.3.55":{"name":"electron-to-chromium","version":"1.3.55","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"801560d6d0dbfd8b0aef2904ee0273d5e4f7c261","_id":"electron-to-chromium@1.3.55","_shasum":"f150e10b20b77d9d41afcca312efe0c3b1a7fdce","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f150e10b20b77d9d41afcca312efe0c3b1a7fdce","size":4689,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.55.tgz","integrity":"sha512-p+of9Vn1cPxrvq2V6OmOu6u5OD8S0xWXA4DlFWouRTMlnF7dLFLRtC4Bv41eswos4+X4KbNnRHcP839XU9sZsw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.55_1533168142306_0.523866251524254"},"_hasShrinkwrap":false,"publish_time":1533168142386,"_cnpm_publish_time":1533168142386,"_cnpmcore_publish_time":"2021-12-15T21:13:09.793Z"},"1.3.54":{"name":"electron-to-chromium","version":"1.3.54","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js","LICENSE"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"edc9110f43bb47cda7171718c9d545e93ab6a6af","_id":"electron-to-chromium@1.3.54","_shasum":"2121a34b5cd2ba994ad89f8778ea9ae5ebc40cab","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2121a34b5cd2ba994ad89f8778ea9ae5ebc40cab","size":4678,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.54.tgz","integrity":"sha512-Z2wWXm8YNJMqWDNkKu5yCUe9FOHOQ0GVD4haHWqzVxYppOHzINKx4MiO0oAlOfCXon2ZnDE87X7CuF1yTN7Gcw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.54_1533134472253_0.7955821125743852"},"_hasShrinkwrap":false,"publish_time":1533134472368,"_cnpm_publish_time":1533134472368,"_cnpmcore_publish_time":"2021-12-15T21:13:10.031Z"},"1.3.52":{"name":"electron-to-chromium","version":"1.3.52","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"cb45dd5b1219d085e1109eb02db07ab709c02b6b","_id":"electron-to-chromium@1.3.52","_shasum":"d2d9f1270ba4a3b967b831c40ef71fb4d9ab5ce0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d2d9f1270ba4a3b967b831c40ef71fb4d9ab5ce0","size":4149,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.52.tgz","integrity":"sha512-CABgSxJdAn7sZjjYfJ3ceXvjUV7f0mgnL8zYfEs4wdbqofIXn9OUCaZ6C7bxd08J2NDOn65oj41CUH18UcA12g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.52_1531267341283_0.16263475884711487"},"_hasShrinkwrap":false,"publish_time":1531267341374,"_cnpm_publish_time":1531267341374,"_cnpmcore_publish_time":"2021-12-15T21:13:10.295Z"},"1.3.51":{"name":"electron-to-chromium","version":"1.3.51","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b191a7edbc1d28b8389ebdc09362606a264f77e6","_id":"electron-to-chromium@1.3.51","_shasum":"6a42b49daaf7f22a5b37b991daf949f34dbdb9b5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6a42b49daaf7f22a5b37b991daf949f34dbdb9b5","size":4141,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.51.tgz","integrity":"sha512-IkgCpVtXKNMuli3sO5CV6H7LBoHJdl0FhxpP4hNMAxsCk9k9QiaMmdilf0Wqx9mvH+PJL/Q5glbK2hpF+Wgh1A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.51_1530648143132_0.47723126415519457"},"_hasShrinkwrap":false,"publish_time":1530648143182,"_cnpm_publish_time":1530648143182,"_cnpmcore_publish_time":"2021-12-15T21:13:10.585Z"},"1.3.50":{"name":"electron-to-chromium","version":"1.3.50","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"3e36ef9020436e62c6b558cb7255a5b756a37aa1","_id":"electron-to-chromium@1.3.50","_shasum":"7438b76f92b41b919f3fbdd350fbd0757dacddf7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7438b76f92b41b919f3fbdd350fbd0757dacddf7","size":4137,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.50.tgz","integrity":"sha512-HDlGrPdGxEsbGa6SUyrl7ccBqB6gwFXe1YyrPx7EKuDZSXY78/QqPd0bb/XP9FEVbjUrc7PAbE9wVnpSWtvhfA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.50_1529611341249_0.08599326060590151"},"_hasShrinkwrap":false,"publish_time":1529611341312,"_cnpm_publish_time":1529611341312,"_cnpmcore_publish_time":"2021-12-15T21:13:10.792Z"},"1.3.49":{"name":"electron-to-chromium","version":"1.3.49","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"260135e3bd184e70c3fb8edb74437db4f86a9962","_id":"electron-to-chromium@1.3.49","_shasum":"651384b0d81f078a96639b2b36975141b7915004","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"651384b0d81f078a96639b2b36975141b7915004","size":4126,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.49.tgz","integrity":"sha512-AItzAb+PHz8fIKXufwvJAGddrGIEtbAzZj+QRCcXko63Oul854OrnRTyi5i0cwCTshAYfG5NKUGuL/OVcqVgQg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.49_1529553742037_0.9813357280220407"},"_hasShrinkwrap":false,"publish_time":1529553742184,"_cnpm_publish_time":1529553742184,"_cnpmcore_publish_time":"2021-12-15T21:13:11.013Z"},"1.3.48":{"name":"electron-to-chromium","version":"1.3.48","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"022c97b2de1ee4aef03063142eef6595e43150b9","_id":"electron-to-chromium@1.3.48","_shasum":"d3b0d8593814044e092ece2108fc3ac9aea4b900","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d3b0d8593814044e092ece2108fc3ac9aea4b900","size":4087,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz","integrity":"sha512-4j7xXdldg43v/r8lira9GM1nLUErsspj5Gwff6Yp1xGYiJ/UIeWp9OFLmoiJ2JZizrwq/EsSE2PRk2VP7kl29A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.48_1527033744238_0.4683174377421948"},"_hasShrinkwrap":false,"publish_time":1527033744325,"_cnpm_publish_time":1527033744325,"_cnpmcore_publish_time":"2021-12-15T21:13:11.232Z"},"1.3.47":{"name":"electron-to-chromium","version":"1.3.47","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"7f199c54d016554d36dc8b11696d5f55449a4951","_id":"electron-to-chromium@1.3.47","_shasum":"764e887ca9104d01a0ac8eabee7dfc0e2ce14104","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"764e887ca9104d01a0ac8eabee7dfc0e2ce14104","size":4083,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz","integrity":"sha512-NIpW37QYhudeKMO8jsI54MlQg6Xbsh4OJKv+5zd2JXx+BKbdpOvZVHnRz+8sQBxJDJxERUccjXr+JHC6owZq4A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.47_1526500944662_0.2630428962590663"},"_hasShrinkwrap":false,"publish_time":1526500944781,"_cnpm_publish_time":1526500944781,"_cnpmcore_publish_time":"2021-12-15T21:13:11.452Z"},"1.3.46":{"name":"electron-to-chromium","version":"1.3.46","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a5ad7ea28dc1737c49721e8fbb80c86d675fd4e1","_id":"electron-to-chromium@1.3.46","_shasum":"00e85e22275415a887505e4ab49737194f18b9b0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"00e85e22275415a887505e4ab49737194f18b9b0","size":4068,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.46.tgz","integrity":"sha512-jWL+/5faYTCUSTVE/CDx1JEIsyZ8IZrmTBwwa/HMucuZakwiHYh6jDYKJ7mWMA7O/4DLXW4yoRz+z55fesaS8g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.46_1526414544699_0.6451003815326333"},"_hasShrinkwrap":false,"publish_time":1526414544768,"_cnpm_publish_time":1526414544768,"_cnpmcore_publish_time":"2021-12-15T21:13:11.641Z"},"1.3.45":{"name":"electron-to-chromium","version":"1.3.45","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"1f9a0533861d2b2f6e65c5a4142d5186abaec016","_id":"electron-to-chromium@1.3.45","_shasum":"458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8","size":4063,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz","integrity":"sha512-ZYWiquTaGLo+TNY0tgl4TSBkaLnvrgwZ0tvb/nqZJGA/qJpfljKC9p74tkutAMMmDvyC17GTMOonWADHMIl2+g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.45_1525219343372_0.11551951664618376"},"_hasShrinkwrap":false,"publish_time":1525219343521,"_cnpm_publish_time":1525219343521,"_cnpmcore_publish_time":"2021-12-15T21:13:11.866Z"},"1.3.44":{"name":"electron-to-chromium","version":"1.3.44","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"66aadd74b3f39913f0274335e03816cf49ae7be3","_id":"electron-to-chromium@1.3.44","_shasum":"ef6b150a60d523082388cadad88085ecd2fd4684","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"ef6b150a60d523082388cadad88085ecd2fd4684","size":4065,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.44.tgz","integrity":"sha512-+8WtGtssSd86e7ufG8uilR8VB3mtWpgPUqhygVh3St6KFl+niLm+Nht3QpPKUiG//9inf8nUbtYJqCOTLZLsyQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.44_1524801742415_0.6979506662072887"},"_hasShrinkwrap":false,"publish_time":1524801742525,"_cnpm_publish_time":1524801742525,"_cnpmcore_publish_time":"2021-12-15T21:13:12.093Z"},"1.3.43":{"name":"electron-to-chromium","version":"1.3.43","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"61a7c977f3c56144ee41585552c95da688554556","_id":"electron-to-chromium@1.3.43","_shasum":"8902e524625a231b33b5093268c4d3e18b5656a7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8902e524625a231b33b5093268c4d3e18b5656a7","size":4058,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.43.tgz","integrity":"sha512-Iu33FJhILR1SFgLnWqjQTWPK0FVxYnm7myawf9EIBDon2vW4iDU1AqE+mrCdXI7GbpHeiaZheXJsRCkVFDc6FQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.43_1524772942769_0.19822046928665338"},"_hasShrinkwrap":false,"publish_time":1524772943093,"_cnpm_publish_time":1524772943093,"_cnpmcore_publish_time":"2021-12-15T21:13:12.325Z"},"1.3.42":{"name":"electron-to-chromium","version":"1.3.42","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"93e738460f8826ec10b8f0dbb47d8c340061f7ad","_id":"electron-to-chromium@1.3.42","_shasum":"95c33bf01d0cc405556aec899fe61fd4d76ea0f9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.14.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"95c33bf01d0cc405556aec899fe61fd4d76ea0f9","size":4040,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.42.tgz","integrity":"sha512-PeAxC5+LoUYkhsR+Ah/V1otH825MTKM//HWRA6b+ir9h3BcJX9LAD1RptjYYY+t75CTdI9qd4bmla57s8Z8vug=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.42_1522800141494_0.8327126918043664"},"_hasShrinkwrap":false,"publish_time":1522800141575,"_cnpm_publish_time":1522800141575,"_cnpmcore_publish_time":"2021-12-15T21:13:12.525Z"},"1.3.41":{"name":"electron-to-chromium","version":"1.3.41","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"19b94b0e461c7578d73fa686c23d701429d501cf","_id":"electron-to-chromium@1.3.41","_shasum":"7e33643e00cd85edfd17e04194f6d00e73737235","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7e33643e00cd85edfd17e04194f6d00e73737235","size":4042,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.41.tgz","integrity":"sha512-i430YqYH3T6Ff4xr4eZ324f21XFJljWazN7MXi0qsdLHDWH4wTwuoowlSuXvH4CZDkhPk07OUy0kSSYCkmtcng=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.41_1522195340812_0.7135597914751908"},"_hasShrinkwrap":false,"publish_time":1522195341014,"_cnpm_publish_time":1522195341014,"_cnpmcore_publish_time":"2021-12-15T21:13:12.744Z"},"1.3.40":{"name":"electron-to-chromium","version":"1.3.40","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"5c577d5c1b53d3f19ba4d3fcd75f4ea33ace0e49","_id":"electron-to-chromium@1.3.40","_shasum":"1fbd6d97befd72b8a6f921dc38d22413d2f6fddf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1fbd6d97befd72b8a6f921dc38d22413d2f6fddf","size":4032,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.40.tgz","integrity":"sha512-pUwdHn9F71lBHdr4J0w2d/2vFzZmaK53Adfe+3nogCpgLFE+fMNIiU4AxFLf8H8bK7GoTtdAT0TPj9FomhCpag=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.40_1521590541045_0.5043673172638492"},"_hasShrinkwrap":false,"publish_time":1521590541114,"_cnpm_publish_time":1521590541114,"_cnpmcore_publish_time":"2021-12-15T21:13:12.947Z"},"1.3.39":{"name":"electron-to-chromium","version":"1.3.39","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c22c6adb34ac18725d6553368cfa631df1651f06","_id":"electron-to-chromium@1.3.39","_shasum":"d7a4696409ca0995e2750156da612c221afad84d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d7a4696409ca0995e2750156da612c221afad84d","size":4028,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.39.tgz","integrity":"sha512-MJIemAEzUXKsIaOdaeCM/fLLF5E+oJyDF1tCGOadVP91jQ5pHXF55G6RxA2QA0MmG7bxf14wpL5d3E6RLzZD1A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.39_1521230540099_0.8213216959749343"},"_hasShrinkwrap":false,"publish_time":1521230540205,"_cnpm_publish_time":1521230540205,"_cnpmcore_publish_time":"2021-12-15T21:13:13.150Z"},"1.3.38":{"name":"electron-to-chromium","version":"1.3.38","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"00a31ca1eab3af341fba4a2aadf7f9826d2b81af","_id":"electron-to-chromium@1.3.38","_shasum":"49234b00c0592f62921f9426bccefee23de086bb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"49234b00c0592f62921f9426bccefee23de086bb","size":4024,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.38.tgz","integrity":"sha512-GiaCbwohbzGfgU+DAOJHk6I4/MO7XgbRGdMbV01VwaQ27u+YaIzhMxrBRTV+foAEJInN6LHPC6oEQrgSOzXWFQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.38_1521144141334_0.04809362408403772"},"_hasShrinkwrap":false,"publish_time":1521144141383,"_cnpm_publish_time":1521144141383,"_cnpmcore_publish_time":"2021-12-15T21:13:13.384Z"},"1.3.37":{"name":"electron-to-chromium","version":"1.3.37","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a6cbebf8fafa2e5d4b6f677ce403923a24c9e395","_id":"electron-to-chromium@1.3.37","_shasum":"4a92734e0044c8cf0b1553be57eae21a4c6e5fab","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4a92734e0044c8cf0b1553be57eae21a4c6e5fab","size":4019,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.37.tgz","integrity":"sha512-KNilOqnv2eAhFYQHgLXv3x2QoiYULzTGfGtcUYBs1DDHChjX7Y+lCsNxA0E9zsKEEqnXtJGIlOUhPAMOaj4dIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.37_1520614941366_0.7833094861584289"},"_hasShrinkwrap":false,"publish_time":1520614941436,"_cnpm_publish_time":1520614941436,"_cnpmcore_publish_time":"2021-12-15T21:13:13.635Z"},"1.3.36":{"name":"electron-to-chromium","version":"1.3.36","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"dc2fe43f01e9931f9128b5a76c88aee1dc03727b","_id":"electron-to-chromium@1.3.36","_shasum":"0eabf71a9ebea9013fb1cc35a390e068624f27e8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0eabf71a9ebea9013fb1cc35a390e068624f27e8","size":4003,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.36.tgz","integrity":"sha512-XyQWfWwkjVzJr/c2lKsr9Zac83w8Y+XVn0wtNEhpPWPbxQFSUFpaB1hwNoXIMmxiHY7eny1vMe9WYkQfuAG9gA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.36_1520312542415_0.4958831993868813"},"_hasShrinkwrap":false,"publish_time":1520312542461,"_cnpm_publish_time":1520312542461,"_cnpmcore_publish_time":"2021-12-15T21:13:13.966Z"},"1.3.35":{"name":"electron-to-chromium","version":"1.3.35","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"d4cb15455a6aea4683b0fa4f48fa91e835dac0d6","_id":"electron-to-chromium@1.3.35","_shasum":"693c17cfb93841d38cb59b8df019d17e356985f0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.13.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"693c17cfb93841d38cb59b8df019d17e356985f0","size":3993,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.35.tgz","integrity":"sha512-yxGILIVnjcPcTV0u3wOdIsKB+qBi66U+d6m4n2FgOmpk742GqQvwy9iog8ZdEZ/86Djl3My3gDNbm5Nr59h9Fw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.35_1520283742991_0.6897086509086117"},"_hasShrinkwrap":false,"publish_time":1520283743044,"_cnpm_publish_time":1520283743044,"_cnpmcore_publish_time":"2021-12-15T21:13:14.183Z"},"1.3.34":{"name":"electron-to-chromium","version":"1.3.34","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"93fd75315568bd5c0f24e53f04bb65a455e62ff5","_id":"electron-to-chromium@1.3.34","_shasum":"d93498f40391bb0c16a603d8241b9951404157ed","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d93498f40391bb0c16a603d8241b9951404157ed","size":3989,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.34.tgz","integrity":"sha512-ShlGO1Unpt+mJKL83hAkCreMrynW/QLr4q4h6TwBQ37HTXh4QTPaNGk6+Ho6vpt1dmLtEcyjl9lwN7xKA5eQQQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.34_1519333342043_0.5395958605517235"},"_hasShrinkwrap":false,"publish_time":1519333342119,"_cnpm_publish_time":1519333342119,"_cnpmcore_publish_time":"2021-12-15T21:13:14.377Z"},"1.3.33":{"name":"electron-to-chromium","version":"1.3.33","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"f040fa3c5a8514ce66bb5edb49e0f9d44cbf3047","_id":"electron-to-chromium@1.3.33","_shasum":"bf00703d62a7c65238136578c352d6c5c042a545","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"bf00703d62a7c65238136578c352d6c5c042a545","size":3940,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz","integrity":"sha512-dhO83k/R0Mi4DNWIQp+X75q2NsYfqCDl0ap3+LHhAa9gKcXLA4Vx9gEO/Qf0Fa6Qp//cmm8no8HICysjL1LYDg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.33_1517979742173_0.0810598444522388"},"publish_time":1517979742823,"_hasShrinkwrap":false,"_cnpm_publish_time":1517979742823,"_cnpmcore_publish_time":"2021-12-15T21:13:14.579Z"},"1.3.32":{"name":"electron-to-chromium","version":"1.3.32","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b8e8bee834d180ade714cf472dec9df98091e36a","_id":"electron-to-chromium@1.3.32","_shasum":"11d0684c0840e003c4be8928f8ac5f35dbc2b4e6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"11d0684c0840e003c4be8928f8ac5f35dbc2b4e6","size":3937,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.32.tgz","integrity":"sha512-KBkwy2AQL4QgIePqgc89jTgKmPDJZ3YK8F1Df18eOcvaxSOIKaPAs6qN5MZlML2GP4Zkk+NnOJ8Sa3Cf6CCnIw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.32.tgz_1517446938845_0.5939548243768513"},"directories":{},"publish_time":1517446939042,"_hasShrinkwrap":false,"_cnpm_publish_time":1517446939042,"_cnpmcore_publish_time":"2021-12-15T21:13:14.830Z"},"1.3.31":{"name":"electron-to-chromium","version":"1.3.31","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","electron-releases":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"7ed9c737c27ca83aa170724aaba0976d2c212e07","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.31","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"00d832cba9fe2358652b0c48a8816c8e3a037e9f","size":3941,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.31.tgz","integrity":"sha512-XE4CLbswkZgZFn34cKFy1xaX+F5LHxeDLjY1+rsK9asDzknhbrd9g/n/01/acbU25KTsUSiLKwvlLyA+6XLUOA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.31.tgz_1516188870797_0.07796025299467146"},"directories":{},"publish_time":1516188873417,"_hasShrinkwrap":false,"_cnpm_publish_time":1516188873417,"_cnpmcore_publish_time":"2021-12-15T21:13:15.020Z"},"1.3.30":{"name":"electron-to-chromium","version":"1.3.30","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"dependencies":{"electron-releases":"^2.1.0"},"gitHead":"1254dd7d23887a9a1e36e3e38558684048166787","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.30","_npmVersion":"5.6.0","_nodeVersion":"8.9.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9666f532a64586651fc56a72513692e820d06a80","size":3948,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz","integrity":"sha512-zx1Prv7kYLfc4OA60FhxGbSo4qrEjgSzpo1/37i7l9ltXPYOoQBtjQxY9KmsgfHnBxHlBGXwLlsbt/gub1w5lw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.30.tgz_1513803675907_0.10527921747416258"},"directories":{},"publish_time":1513803676790,"_hasShrinkwrap":false,"_cnpm_publish_time":1513803676790,"_cnpmcore_publish_time":"2021-12-15T21:13:15.217Z"},"1.3.29":{"name":"electron-to-chromium","version":"1.3.29","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c8bae50a1fee07d4f8c80d4f99c628f7d6d0d974","_id":"electron-to-chromium@1.3.29","_shasum":"7a58236b95468c3e7660091348522d65d7736b36","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"7a58236b95468c3e7660091348522d65d7736b36","size":3979,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.29.tgz","integrity":"sha512-P0XALMcvr3WTgCOz4skNNiFYKBawWUW+XwBAuFK9ue1bgQz/rk4W/quv3/IPVwKxYrXJjtOycaX97aWkzAtYOg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.29.tgz_1513674136779_0.9609864531084895"},"directories":{},"publish_time":1513674137706,"_hasShrinkwrap":false,"_cnpm_publish_time":1513674137706,"_cnpmcore_publish_time":"2021-12-15T21:13:15.415Z"},"1.3.28":{"name":"electron-to-chromium","version":"1.3.28","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c8f5d69958495fb0d39da829bce94e4cbd03526a","_id":"electron-to-chromium@1.3.28","_shasum":"8dd4e6458086644e9f9f0a1cf32e2a1f9dffd9ee","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8dd4e6458086644e9f9f0a1cf32e2a1f9dffd9ee","size":3886,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.28.tgz","integrity":"sha512-qkfTHMfQWACmGiOr1P55r1gpFy9DYDHu2HVsz+khzTKFO8+IXaQolV1FKSINyFl5oR92pqOykr7AWOUaimx4/Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.28.tgz_1512464537327_0.42214976996183395"},"directories":{},"publish_time":1512464538254,"_hasShrinkwrap":false,"_cnpm_publish_time":1512464538254,"_cnpmcore_publish_time":"2021-12-15T21:13:15.610Z"},"1.3.27":{"name":"electron-to-chromium","version":"1.3.27","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6b1391abee8d05cdd23df0950903f4c036611185","_id":"electron-to-chromium@1.3.27","_shasum":"78ecb8a399066187bb374eede35d9c70565a803d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"78ecb8a399066187bb374eede35d9c70565a803d","size":3877,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz","integrity":"sha512-yo+GkiEB1iSQeXiurVsS2qUUQ0rzcCA9b/ZvTVEfz2hfFkNZ2+ooDc2/LCkh3v/Ic+9wC6vEujn4KmG1OBsX8Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.27.tgz_1508486546622_0.7984280632808805"},"directories":{},"publish_time":1508486547516,"_hasShrinkwrap":false,"_cnpm_publish_time":1508486547516,"_cnpmcore_publish_time":"2021-12-15T21:13:15.929Z"},"1.3.26":{"name":"electron-to-chromium","version":"1.3.26","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"9c535ac6120f7e3dca585dd80967c077e238c5f3","_id":"electron-to-chromium@1.3.26","_shasum":"996427294861a74d9c7c82b9260ea301e8c02d66","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"996427294861a74d9c7c82b9260ea301e8c02d66","size":3868,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.26.tgz","integrity":"sha512-XO3o1ckQtXQCQtDNogFfBl973jvBeeF01GVnfin5+ncWmKsiSIWctt95etTWx9nIxpaFZrICehdfg7gsA1iZLQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.26.tgz_1507795346380_0.06714960536919534"},"directories":{},"publish_time":1507795347312,"_hasShrinkwrap":false,"_cnpm_publish_time":1507795347312,"_cnpmcore_publish_time":"2021-12-15T21:13:16.185Z"},"1.3.25":{"name":"electron-to-chromium","version":"1.3.25","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"37c12ff69c9da9307c19dc7f2ddc5ee45c06092b","_id":"electron-to-chromium@1.3.25","_shasum":"453b21009836d0997d86035601ff6cae4791c460","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"453b21009836d0997d86035601ff6cae4791c460","size":3860,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.25.tgz","integrity":"sha512-cXjAG/SXq96amazWKlSXRJ4GsuwVWInAVw42D7qdNtPtKXzNAtRE7jrDKD2kpeEFDRlHKFW2LyjNsJH0yGzThw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.25.tgz_1507708949025_0.09745085705071688"},"directories":{},"publish_time":1507708950087,"_hasShrinkwrap":false,"_cnpm_publish_time":1507708950087,"_cnpmcore_publish_time":"2021-12-15T21:13:16.388Z"},"1.3.24":{"name":"electron-to-chromium","version":"1.3.24","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"2a6d4ae67023e90de69119d53dbcde1a4eaa9618","_id":"electron-to-chromium@1.3.24","_shasum":"9b7b88bb05ceb9fa016a177833cc2dde388f21b6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9b7b88bb05ceb9fa016a177833cc2dde388f21b6","size":3851,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz","integrity":"sha512-6N7msL1huBiV3ydMepn2IZ3KtLa4CzhywENUTge6G6ukDzVkJotyZpsxOmWv0B2esDcQD/Pj5DmULIKLdiI3Sw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.24.tgz_1506672143606_0.2207907414995134"},"directories":{},"publish_time":1506672144533,"_hasShrinkwrap":false,"_cnpm_publish_time":1506672144533,"_cnpmcore_publish_time":"2021-12-15T21:13:16.611Z"},"1.3.23":{"name":"electron-to-chromium","version":"1.3.23","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"746fd658f90d6370beb81c9ea20107c13f512524","_id":"electron-to-chromium@1.3.23","_shasum":"e6668ab18cb69afb8f577c8a9fc23d002788be74","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e6668ab18cb69afb8f577c8a9fc23d002788be74","size":3848,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.23.tgz","integrity":"sha512-daWmlCDpkc+w8qBGTnTqYUtzoqO5qk4gPBT20a6vt16aAOZNhT7hEluz76OPHSE0qMaQWGZxQw+Ox0zYFcD/VQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.23.tgz_1506585744987_0.7553674462251365"},"directories":{},"publish_time":1506585745853,"_hasShrinkwrap":false,"_cnpm_publish_time":1506585745853,"_cnpmcore_publish_time":"2021-12-15T21:13:16.878Z"},"1.3.22":{"name":"electron-to-chromium","version":"1.3.22","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"93ae9d4ff92ab4dc155c1c47b4c24aad718727f9","_id":"electron-to-chromium@1.3.22","_shasum":"4322d52c151406e3eaef74ad02676883e8416418","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4322d52c151406e3eaef74ad02676883e8416418","size":3835,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.22.tgz","integrity":"sha512-ik86fJqB9KzDg0Nvy53J9ODDI1B/CvVD9A2LD6hiOSP447GRXcKJLNabA6n0Z7lQWmWvMcBdW+q6f0820GQV7w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.22.tgz_1506240142092_0.8831702652387321"},"directories":{},"publish_time":1506240143059,"_hasShrinkwrap":false,"_cnpm_publish_time":1506240143059,"_cnpmcore_publish_time":"2021-12-15T21:13:17.087Z"},"1.3.21":{"name":"electron-to-chromium","version":"1.3.21","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"765d6c94bc978930a63c38c99c6fdcfffc4a16fe","_id":"electron-to-chromium@1.3.21","_shasum":"a967ebdcfe8ed0083fc244d1894022a8e8113ea2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"a967ebdcfe8ed0083fc244d1894022a8e8113ea2","size":3826,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.21.tgz","integrity":"sha512-muE502b2NkmSpOwRn5BONx6jVnUzUEGyaR0yenUOoDoNnutCwlMxe2xCf+6oV2yOdpzQXFJ9rWClhRiqwGKoLw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.21.tgz_1504771354798_0.24371353001333773"},"directories":{},"publish_time":1504771355658,"_hasShrinkwrap":false,"_cnpm_publish_time":1504771355658,"_cnpmcore_publish_time":"2021-12-15T21:13:17.301Z"},"1.3.20":{"name":"electron-to-chromium","version":"1.3.20","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"15a7d5a5ffd84ae98ec3c934d390a97b82410021","_id":"electron-to-chromium@1.3.20","_shasum":"2eedd5ccbae7ddc557f68ad1fce9c172e915e4e5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"2eedd5ccbae7ddc557f68ad1fce9c172e915e4e5","size":3821,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.20.tgz","integrity":"sha512-CjfRdGO4vljBZ2FDPV/c/xsB7xjRy26Xh2us7vK1yRiBJonXcJbyQeA0Aons+DMIqWOJIhDaxZZEEc2KPJ30Sg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.20.tgz_1504252944693_0.6937273689545691"},"directories":{},"publish_time":1504252945562,"_hasShrinkwrap":false,"_cnpm_publish_time":1504252945562,"_cnpmcore_publish_time":"2021-12-15T21:13:17.503Z"},"1.3.19":{"name":"electron-to-chromium","version":"1.3.19","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"33c38d7eae9b805b900334a5ce104f200636996a","_id":"electron-to-chromium@1.3.19","_shasum":"73d97b0e8b05aa776cedf3cdce7fdc0538037675","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"73d97b0e8b05aa776cedf3cdce7fdc0538037675","size":3794,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.19.tgz","integrity":"sha512-0uBUFzMs1jNEb9Ju1d2x7k9B+gla4v8NF/3WsIAK/Zi1ttMqWce5hoGrxj2884KQG7oy86xyhW0Y5s564y0IRg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.19.tgz_1504166547213_0.5017413049936295"},"directories":{},"publish_time":1504166548168,"_hasShrinkwrap":false,"_cnpm_publish_time":1504166548168,"_cnpmcore_publish_time":"2021-12-15T21:13:17.713Z"},"1.3.18":{"name":"electron-to-chromium","version":"1.3.18","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"cf365ce9fd85268ef703cdaddd56f7023e1f4e4e","_id":"electron-to-chromium@1.3.18","_shasum":"3dcc99da3e6b665f6abbc71c28ad51a2cd731a9c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3dcc99da3e6b665f6abbc71c28ad51a2cd731a9c","size":3789,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.18.tgz","integrity":"sha512-uMQp4vatJoNWtHbE5ZogbDQMme6JD/4qXLkSlGQQ/0UYm39zHoJhNnWR9E7ps2Ewp6FRMAODVv4KwjJIZW30Qg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.18.tgz_1502352143173_0.49543727189302444"},"directories":{},"publish_time":1502352144089,"_hasShrinkwrap":false,"_cnpm_publish_time":1502352144089,"_cnpmcore_publish_time":"2021-12-15T21:13:17.936Z"},"1.3.17":{"name":"electron-to-chromium","version":"1.3.17","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a8627a9cd356af344c3d356804d2852ab2b1d8d6","_id":"electron-to-chromium@1.3.17","_shasum":"41c13457cc7166c5c15e767ae61d86a8cacdee5d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"41c13457cc7166c5c15e767ae61d86a8cacdee5d","size":3782,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.17.tgz","integrity":"sha512-78UzqzxTBygkAHnBrCfKT0JxoNo9QHb2BLk3QerdeXMApdo8Exk7sJ8QNgMRAA+ijUCx0fEUnWmH9jnWb6wVmg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.17.tgz_1501833745574_0.9266932613682002"},"directories":{},"publish_time":1501833746426,"_hasShrinkwrap":false,"_cnpm_publish_time":1501833746426,"_cnpmcore_publish_time":"2021-12-15T21:13:18.121Z"},"1.3.16":{"name":"electron-to-chromium","version":"1.3.16","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b43ddb602e67f36791f00a99ebcab6ac3e30f19e","_id":"electron-to-chromium@1.3.16","_shasum":"d0e026735754770901ae301a21664cba45d92f7d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d0e026735754770901ae301a21664cba45d92f7d","size":3779,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz","integrity":"sha512-Y8B7JxixmSDCbXiD8qyPklLGn9Z53Sq5/fsvUgiyToRfvEeasNeUmxYkLTb+Yu8mm7NKdsnuhxuvKooIrpAjCA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.16.tgz_1500364942846_0.9922554695513099"},"directories":{},"publish_time":1500364943723,"_hasShrinkwrap":false,"_cnpm_publish_time":1500364943723,"_cnpmcore_publish_time":"2021-12-15T21:13:18.333Z"},"1.3.15":{"name":"electron-to-chromium","version":"1.3.15","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"16ea7abd7a7331b7261861d8ccf0d89f4bd15877","_id":"electron-to-chromium@1.3.15","_shasum":"08397934891cbcfaebbd18b82a95b5a481138369","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"08397934891cbcfaebbd18b82a95b5a481138369","size":3774,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.15.tgz","integrity":"sha512-jufgWf20QKiINjJtGB805B0rp8Tin5p6AYlEJWhtuzlKPgLXIIO/A/lpPPo2XFFouEqlySAshEPTl3+YEz3L9Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.15.tgz_1498723344831_0.02470641885884106"},"directories":{},"publish_time":1498723345887,"_hasShrinkwrap":false,"_cnpm_publish_time":1498723345887,"_cnpmcore_publish_time":"2021-12-15T21:13:18.547Z"},"1.3.14":{"name":"electron-to-chromium","version":"1.3.14","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"af58590caa9284df4cdad98b571d4d8351ce55db","_id":"electron-to-chromium@1.3.14","_shasum":"64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43","size":3771,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz","integrity":"sha512-FdSQG+8HFJ/gWDJBp0jIG4p7xDq5RUxrXjQfSiNUU8wyy82GJsGcEzppvzz/vaa3jdjhJQ6i0lMVG3lvfXY43Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.14.tgz_1496995341264_0.7802606513723731"},"directories":{},"publish_time":1496995342298,"_hasShrinkwrap":false,"_cnpm_publish_time":1496995342298,"_cnpmcore_publish_time":"2021-12-15T21:13:18.756Z"},"1.3.13":{"name":"electron-to-chromium","version":"1.3.13","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"db62c5862c12baa80d2d1ac2e3da0e06efc3d16b","_id":"electron-to-chromium@1.3.13","_shasum":"1b3a5eace6e087bb5e257a100b0cbfe81b2891fc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"1b3a5eace6e087bb5e257a100b0cbfe81b2891fc","size":3764,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.13.tgz","integrity":"sha512-mxWtv71MHfN9/GLAOjmNYmYGzLWfX7jOS9VqfO3cg3YEO4QWywBTn1E+FgEJGo7Vx6TkGdtEpf89inurtiqMIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.13.tgz_1495872141824_0.029175792122259736"},"directories":{},"publish_time":1495872142851,"_hasShrinkwrap":false,"_cnpm_publish_time":1495872142851,"_cnpmcore_publish_time":"2021-12-15T21:13:18.960Z"},"1.3.12":{"name":"electron-to-chromium","version":"1.3.12","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"73e1a71c3d53184ef70d1c1eac05e30d9ff36672","_id":"electron-to-chromium@1.3.12","_shasum":"62f33e4a59b4855f0de4bb8972bf1b841b98b6d2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"62f33e4a59b4855f0de4bb8972bf1b841b98b6d2","size":3756,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.12.tgz","integrity":"sha512-ht7zWYPkguuch5wTfP8ezqb3XQyEqvCThoSzW0PHwImJnBO+DjmmgxhwtOO2GRKkIIopt5jfi8XEP4efGIJCeQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium-1.3.12.tgz_1495785744330_0.04336451692506671"},"directories":{},"publish_time":1495785745319,"_hasShrinkwrap":false,"_cnpm_publish_time":1495785745319,"_cnpmcore_publish_time":"2021-12-15T21:13:19.203Z"},"1.3.11":{"name":"electron-to-chromium","version":"1.3.11","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"8dba5f60572693af960ad0e6268715be173c7bec","_id":"electron-to-chromium@1.3.11","_shasum":"744761df1d67b492b322ce9aa0aba5393260eb61","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"744761df1d67b492b322ce9aa0aba5393260eb61","size":3755,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz","integrity":"sha512-tOqkFVjmMe7I+Pe1nGApIHEuT9VsXoFptg4lE8JJaQdy9kW3tj6qI49LxA71gpSuEehj1vG42D4FFQ1UroBmbA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.11.tgz_1495008142628_0.547611253336072"},"directories":{},"publish_time":1495008144464,"_hasShrinkwrap":false,"_cnpm_publish_time":1495008144464,"_cnpmcore_publish_time":"2021-12-15T21:13:19.403Z"},"1.3.10":{"name":"electron-to-chromium","version":"1.3.10","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"06db338c0e10c2c32b115b1e117fe9057ce1dec0","_id":"electron-to-chromium@1.3.10","_shasum":"63d62b785471f0d8dda85199d64579de8a449f08","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"63d62b785471f0d8dda85199d64579de8a449f08","size":3740,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.10.tgz","integrity":"sha512-1/vzMBVlo2O+dsoErn2GbkCC4O58i8+koYYqP95swxFnQxlcbhKmuD7C1A5HGWWcUULVoc2U/jjGThc2lznc8Q=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.10.tgz_1494489744059_0.23204518808051944"},"directories":{},"publish_time":1494489745430,"_hasShrinkwrap":false,"_cnpm_publish_time":1494489745430,"_cnpmcore_publish_time":"2021-12-15T21:13:19.600Z"},"1.3.9":{"name":"electron-to-chromium","version":"1.3.9","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"601abb965542f0a6914f79e3b4b4e96a509b2202","_id":"electron-to-chromium@1.3.9","_shasum":"db1cba2a26aebcca2f7f5b8b034554468609157d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"db1cba2a26aebcca2f7f5b8b034554468609157d","size":3707,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.9.tgz","integrity":"sha512-+I74/buRgXpbOVdxZsfn1kopIe2o8VqGJf8riZ8Uv02ROy7DFK2IPX52k+mD0eRHl4J9UaUkHzyI4rRkQ5BnRQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.9.tgz_1493712148020_0.27724357624538243"},"directories":{},"publish_time":1493712148660,"_hasShrinkwrap":false,"_cnpm_publish_time":1493712148660,"_cnpmcore_publish_time":"2021-12-15T21:13:19.804Z"},"1.3.8":{"name":"electron-to-chromium","version":"1.3.8","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"730f63e8e43a7920045851c94100f5802de2b555","_id":"electron-to-chromium@1.3.8","_shasum":"b2c8a2c79bb89fbbfd3724d9555e15095b5f5fb6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b2c8a2c79bb89fbbfd3724d9555e15095b5f5fb6","size":3692,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.8.tgz","integrity":"sha512-PJmmq8g2Y28bo5RIzhS0pAjWP66MBpSQVxWinm6C4Uu5NP/lSd3dPpj3z6GDPJ7ZGu3YWBgrrEu674Dm2Lh7+w=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.8.tgz_1492934541124_0.5397853157483041"},"directories":{},"publish_time":1492934542988,"_hasShrinkwrap":false,"_cnpm_publish_time":1492934542988,"_cnpmcore_publish_time":"2021-12-15T21:13:20.004Z"},"1.3.7":{"name":"electron-to-chromium","version":"1.3.7","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"c818f776e9a77f0b3032ea5e66e747da92dcc45b","_id":"electron-to-chromium@1.3.7","_shasum":"9fb75a2417f28114425d364de118d1cfd681432b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9fb75a2417f28114425d364de118d1cfd681432b","size":3689,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.7.tgz","integrity":"sha512-nT3YGqWZiiS685R1lFdFgqp7grJjpr1Jih3JAsx2+NDkiUKr3HELF0fl5gplFyoz+jA7ZWpG/WIH4c15kyzUsw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.7.tgz_1492848147290_0.8697106288745999"},"directories":{},"publish_time":1492848149179,"_hasShrinkwrap":false,"_cnpm_publish_time":1492848149179,"_cnpmcore_publish_time":"2021-12-15T21:13:20.205Z"},"1.3.6":{"name":"electron-to-chromium","version":"1.3.6","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"78965fe81211640dd27acb0ec626465a74c3cae9","_id":"electron-to-chromium@1.3.6","_shasum":"b90ff7e9094e6f7dd343761a001e82592d937db2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b90ff7e9094e6f7dd343761a001e82592d937db2","size":3691,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.6.tgz","integrity":"sha512-2J6YclHdyhqfDGh5JMac4bfMHpvNsm0jP1+xzdMOUBBkXzNDhrFIk0cEKRFW9jsWDVZs9DgW2tME9PPdZJtTtw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.6.tgz_1492761746231_0.25041661271825433"},"directories":{},"publish_time":1492761746934,"_hasShrinkwrap":false,"_cnpm_publish_time":1492761746934,"_cnpmcore_publish_time":"2021-12-15T21:13:20.404Z"},"1.3.5":{"name":"electron-to-chromium","version":"1.3.5","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"4e53c42837ee841fc465b5cba4e0b3c5bf870321","_id":"electron-to-chromium@1.3.5","_shasum":"6cd6ff2106224a6130e235f21050f9546bc3e729","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"6cd6ff2106224a6130e235f21050f9546bc3e729","size":3681,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.5.tgz","integrity":"sha512-5MsmEBEEyZQ0yf3SXYQW5cLNZRSkZg3SOs0q+0L5v7kVeLwAv5yNU8Mr0V7sEtaaMBGhBXf1PHMIjW46lDTqaA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.5.tgz_1492675341296_0.7776130074635148"},"directories":{},"publish_time":1492675341892,"_hasShrinkwrap":false,"_cnpm_publish_time":1492675341892,"_cnpmcore_publish_time":"2021-12-15T21:13:20.615Z"},"1.3.4":{"name":"electron-to-chromium","version":"1.3.4","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"2cfcd3f296148581abb30a4042d196fc8e01d767","_id":"electron-to-chromium@1.3.4","_shasum":"e51769c0cf550e0cf5aedf6aa2b803a264b3a900","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e51769c0cf550e0cf5aedf6aa2b803a264b3a900","size":3681,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.4.tgz","integrity":"sha512-TVUJDMTK1++abjUX0teuQzXl0SqyT75KbhUTbdDCo6aOqOeQ6QrvYUP9oXQl5jludYBdpTe0uYGr4IKKwYzLKg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.4.tgz_1492588941983_0.6868567955680192"},"directories":{},"publish_time":1492588943923,"_hasShrinkwrap":false,"_cnpm_publish_time":1492588943923,"_cnpmcore_publish_time":"2021-12-15T21:13:20.819Z"},"1.3.3":{"name":"electron-to-chromium","version":"1.3.3","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^0.18.2","codecov":"^2.1.0","nyc":"^10.2.0","request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a79cd607c68e83145c0b30741cb2244d129b42d4","_id":"electron-to-chromium@1.3.3","_shasum":"651eb63fe89f39db70ffc8dbd5d9b66958bc6a0e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"651eb63fe89f39db70ffc8dbd5d9b66958bc6a0e","size":3635,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.3.tgz","integrity":"sha512-vCbeyGXBqKEJFwbAQD/bKqHp/D/oeORAmwNW50ffz6x+rY8xavV8QCImLm5nFe1yBY98aaC3hEgDjirCwx7nGA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.3.tgz_1491680125696_0.4403350562788546"},"directories":{},"publish_time":1491680127609,"_hasShrinkwrap":false,"_cnpm_publish_time":1491680127609,"_cnpmcore_publish_time":"2021-12-15T21:13:21.007Z"},"1.3.2":{"name":"electron-to-chromium","version":"1.3.2","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"92054ab8138125ce0fbab00a9c40b472c06f0b5d","_id":"electron-to-chromium@1.3.2","_shasum":"b8ce5c93b308db0e92f6d0435c46ddec8f6363ab","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.10.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"b8ce5c93b308db0e92f6d0435c46ddec8f6363ab","size":3419,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.2.tgz","integrity":"sha512-tQ6jPlBdjYHOWASO05oOuZDndPfPR5JGf5BhP6HSZ4w4uhQ0es3ho1RFz9sqdVObIXh52Xd16g99nHTHHdDZhw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.2.tgz_1490728874645_0.5027889315970242"},"directories":{},"publish_time":1490728875244,"_hasShrinkwrap":false,"_cnpm_publish_time":1490728875244,"_cnpmcore_publish_time":"2021-12-15T21:13:21.224Z"},"1.3.1":{"name":"electron-to-chromium","version":"1.3.1","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"9721d4919593295a74be588f36830faa6124469d","_id":"electron-to-chromium@1.3.1","_shasum":"75697666b0abd80104577b53a96a6d06ca2b7f2c","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.10.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"75697666b0abd80104577b53a96a6d06ca2b7f2c","size":3418,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.1.tgz","integrity":"sha512-lszzIg4q1SS9OgKwjClcckrXpRlT0kDsdGVllrKoSkMfarCcDQD6rcdfln4NbNTCQX+jI/PcGgKgnccCmPs5uQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.1.tgz_1490727491762_0.38601419725455344"},"directories":{},"publish_time":1490727492384,"_hasShrinkwrap":false,"_cnpm_publish_time":1490727492384,"_cnpmcore_publish_time":"2021-12-15T21:13:21.451Z"},"1.3.0":{"name":"electron-to-chromium","version":"1.3.0","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","files":["versions.js","full-versions.js","chromium-versions.js","full-chromium-versions.js"],"scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6b3120c7050f12420588395198b935fac5c67840","_id":"electron-to-chromium@1.3.0","_shasum":"8fd5aee0eb85e024c3be88bfa99c8b560b661259","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.10.1","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"8fd5aee0eb85e024c3be88bfa99c8b560b661259","size":3416,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.0.tgz","integrity":"sha512-httVpww6zb4h/kym1lBt/WNUpPT+Brlv2TNVRw1u5aDH/DJIG6gVZ/pNTsKYVXX5UBIUoctCiFAAkRLImrKTuw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.3.0.tgz_1490726204432_0.20584455667994916"},"directories":{},"publish_time":1490726204995,"_hasShrinkwrap":false,"_cnpm_publish_time":1490726204995,"_cnpmcore_publish_time":"2021-12-15T21:13:21.696Z"},"1.2.8":{"name":"electron-to-chromium","version":"1.2.8","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"84add61844be4053c318b35e27e3469ccf63bf9e","_id":"electron-to-chromium@1.2.8","_shasum":"22c2e6200d350da27d6050db7e3f6f85d18cf4ed","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"22c2e6200d350da27d6050db7e3f6f85d18cf4ed","size":4965,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.8.tgz","integrity":"sha512-8sRKEV+vLsmi+9oWe97xE6+Ue97OcnsPc6J9QENm6ovUy+QvMdXZkIZ+Acc9NhGozRHmOa21JXOvC6WkAcrB+g=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.8.tgz_1490256137887_0.038161497097462416"},"directories":{},"publish_time":1490256139911,"_hasShrinkwrap":false,"_cnpm_publish_time":1490256139911,"_cnpmcore_publish_time":"2021-12-15T21:13:21.882Z"},"1.2.7":{"name":"electron-to-chromium","version":"1.2.7","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"03c8399c9fc103c55add6f51f67cb6d0ce8e2c86","_id":"electron-to-chromium@1.2.7","_shasum":"4f748061407e478c76256d04496972b71f647407","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4f748061407e478c76256d04496972b71f647407","size":4957,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.7.tgz","integrity":"sha512-gmeDF36vzZ950Kz3YWyed19wryWmYF2h5E9CgtVAabyIRKHRIkp0JAFMJ2L9ECy2E28GcZV0BCNcx5de/b70NQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.7.tgz_1489564937052_0.6935563776642084"},"directories":{},"publish_time":1489564938837,"_hasShrinkwrap":false,"_cnpm_publish_time":1489564938837,"_cnpmcore_publish_time":"2021-12-15T21:13:22.110Z"},"1.2.6":{"name":"electron-to-chromium","version":"1.2.6","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"ac66c0092892351ce5d6c5a8735394bc7ca39c8a","_id":"electron-to-chromium@1.2.6","_shasum":"f38ad51d1919b06bc07275c62629db803ddca05a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"f38ad51d1919b06bc07275c62629db803ddca05a","size":4949,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.6.tgz","integrity":"sha512-5Mz1LUkGkq0LChC9tlchlwNL09hQdUfDkKOUvLd297VkiXA+J5YFgj68+Ce2b3Z7El1yuzWO8JNaVKZ0CUinHA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.6.tgz_1488963738523_0.14865225739777088"},"directories":{},"publish_time":1488963739067,"_hasShrinkwrap":false,"_cnpm_publish_time":1488963739067,"_cnpmcore_publish_time":"2021-12-15T21:13:22.326Z"},"1.2.5":{"name":"electron-to-chromium","version":"1.2.5","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"b91e752fcc96967148eaf5b42bad07e2c0a0dab1","_id":"electron-to-chromium@1.2.5","_shasum":"d373727228843dfd8466c276089f13b40927a952","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"d373727228843dfd8466c276089f13b40927a952","size":4946,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.5.tgz","integrity":"sha512-u5JZX6zqhxsim8s4OiOfDZno9ZX3rCtoDtpQLiZ2nGigZ1RmQj/FwNi37cXlCH9bzvk01n/rXONoGstDwk1qSQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.5.tgz_1488445335642_0.8376345650758594"},"directories":{},"publish_time":1488445336287,"_hasShrinkwrap":false,"_cnpm_publish_time":1488445336287,"_cnpmcore_publish_time":"2021-12-15T21:13:22.523Z"},"1.2.4":{"name":"electron-to-chromium","version":"1.2.4","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"6d1a08168ec50e14a633717039211bda43dc529d","_id":"electron-to-chromium@1.2.4","_shasum":"9751cbea89fa120bf88c226ba41eb8d0b6f1b597","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.10.0","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"9751cbea89fa120bf88c226ba41eb8d0b6f1b597","size":3284,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.4.tgz","integrity":"sha512-ts+A0Yo/izFAs100qVW3chCX7ioEQ13DamrTE6oemPrva7K3Q/UmSFPSs7dix5cKWeBL0erF32n6qYkyE934hg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.4.tgz_1488051810930_0.6490363539196551"},"directories":{},"publish_time":1488051811604,"_hasShrinkwrap":false,"_cnpm_publish_time":1488051811604,"_cnpmcore_publish_time":"2021-12-15T21:13:22.725Z"},"1.2.3":{"name":"electron-to-chromium","version":"1.2.3","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"7a0ba8e6e886a209167c6195dc86e2222a05c722","_id":"electron-to-chromium@1.2.3","_shasum":"4b4d04d237c301f72e2d15c2137b2b79f9f5ab76","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"4b4d04d237c301f72e2d15c2137b2b79f9f5ab76","size":4779,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.3.tgz","integrity":"sha512-Ni1y9GDBDvStS91vD0RoptvbtJ1OjuaA7d8Bs22XXVTxjdSNswjJ/YYmw+vZfW8BN0BiUChde3b9jN9IRdGCIg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.3.tgz_1487754135693_0.4941995656117797"},"directories":{},"publish_time":1487754136227,"_hasShrinkwrap":false,"_cnpm_publish_time":1487754136227,"_cnpmcore_publish_time":"2021-12-15T21:13:22.990Z"},"1.2.2":{"name":"electron-to-chromium","version":"1.2.2","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"20fed92a6206cf0204fe2985325c07ae84eb8630","_id":"electron-to-chromium@1.2.2","_shasum":"e41bc9488c88e3cfa1e94bde28e8420d7d47c47c","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"e41bc9488c88e3cfa1e94bde28e8420d7d47c47c","size":4777,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.2.tgz","integrity":"sha512-nqVYbLd5gQn2u+FMe80bXPwaB6B49A8WTwAZ12dJr4JjXjlSvgTH2Sb6kop4V6xvWB7R3g6X46TlyHn3umBmsA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.2.tgz_1486458134569_0.09101767628453672"},"directories":{},"publish_time":1486458136441,"_hasShrinkwrap":false,"_cnpm_publish_time":1486458136441,"_cnpmcore_publish_time":"2021-12-15T21:13:23.221Z"},"1.2.1":{"name":"electron-to-chromium","version":"1.2.1","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"90471b5128d47a6c6a0b9ae8c74915cdd8b85840","_id":"electron-to-chromium@1.2.1","_shasum":"63ac7579a1c5bedb296c8607621f2efc9a54b968","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"63ac7579a1c5bedb296c8607621f2efc9a54b968","size":4754,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.1.tgz","integrity":"sha512-iTnLkpboQNvRpJk99q47Sss+huCB1GJYlh1xR6nBjYEXPcA8QO6HE2JvtL5RfcbIyhXXDZlONUWbQ0H5uep8FA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.1.tgz_1485334935034_0.5473744415212423"},"directories":{},"publish_time":1485334936839,"_hasShrinkwrap":false,"_cnpm_publish_time":1485334936839,"_cnpmcore_publish_time":"2021-12-15T21:13:23.407Z"},"1.2.0":{"name":"electron-to-chromium","version":"1.2.0","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"a3596fb327da65880ad43ba39bd6e28b048f0e77","_id":"electron-to-chromium@1.2.0","_shasum":"3bd7761f85bd4163602259ae6c7ed338050b17e7","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"3bd7761f85bd4163602259ae6c7ed338050b17e7","size":3047,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.2.0.tgz","integrity":"sha512-BtyzcJ4JT+GTAs+TbZ9PF5h5cRrmpCWL1fUSX8b9kXziP+Lj7Zo05QMH7iSNkoMhoJTZxVF97dzYZumq/7akNw=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.2.0.tgz_1484950705670_0.46012867614626884"},"directories":{},"publish_time":1484950706305,"_hasShrinkwrap":false,"_cnpm_publish_time":1484950706305,"_cnpmcore_publish_time":"2021-12-15T21:13:23.630Z"},"1.1.1":{"name":"electron-to-chromium","version":"1.1.1","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0","shelljs":"^0.7.6"},"gitHead":"476f25d6674ca4be4993fd7335adbf5ed4a82512","_id":"electron-to-chromium@1.1.1","_shasum":"c27f9ec8e6bbbbe55e6076a1d9eec02519627b79","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c27f9ec8e6bbbbe55e6076a1d9eec02519627b79","size":4662,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.1.1.tgz","integrity":"sha512-RR6hFbVPVg05KxQgJeJUOGEjzAjpks81GDQc1ozp5QvveBUu42iA0uWB4DQJBM7ohZyelyrL01+7j+65EVOWMg=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.1.1.tgz_1484902935524_0.8286812109872699"},"directories":{},"publish_time":1484902937351,"_hasShrinkwrap":false,"_cnpm_publish_time":1484902937351,"_cnpmcore_publish_time":"2021-12-15T21:13:23.861Z"},"1.1.0":{"name":"electron-to-chromium","version":"1.1.0","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0"},"gitHead":"8d67eeea8844dc240858534fd75b3439479fee7e","_id":"electron-to-chromium@1.1.0","_shasum":"c0c5d5bed6843da24c0f68a4d5206207795afbf9","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"c0c5d5bed6843da24c0f68a4d5206207795afbf9","size":2642,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.1.0.tgz","integrity":"sha512-BFlIOrdkwK4/2c1cLvreaF3IID1PNKGLEQ+E8Kbk24Hu4/B5bdBjLi1LU8pA+rtX7dLNX3ulPDwHskBD6tPOwA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.1.0.tgz_1484603301226_0.8368372416589409"},"directories":{},"publish_time":1484603302997,"_hasShrinkwrap":false,"_cnpm_publish_time":1484603302997,"_cnpmcore_publish_time":"2021-12-15T21:13:24.080Z"},"1.0.1":{"name":"electron-to-chromium","version":"1.0.1","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0"},"gitHead":"133ce16fa934bbbbd76cf4f16c8a78a5786ca842","_id":"electron-to-chromium@1.0.1","_shasum":"0d792c55dc927110bec0feca989b5b2616df5b43","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"0d792c55dc927110bec0feca989b5b2616df5b43","size":2442,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.0.1.tgz","integrity":"sha512-NnkX1tsO9u0P3iXiGvuAu3e3K6vyfVaaM8SH/Ha4m+6OpXO7cDWsdkX9ZovAZl4HySuFBA3SsGSbaPhgPs8K7A=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.0.1.tgz_1484586028659_0.6731794176157564"},"directories":{},"publish_time":1484586029381,"_hasShrinkwrap":false,"_cnpm_publish_time":1484586029381,"_cnpmcore_publish_time":"2021-12-15T21:13:24.285Z"},"1.0.0":{"name":"electron-to-chromium","version":"1.0.0","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js"},"repository":{"type":"git","url":"https://github.com/kilian/electron-to-chromium/"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"request":"^2.79.0"},"gitHead":"d0919e2fa3a5fdf0cdfbae7c801484c0d7b29dce","_id":"electron-to-chromium@1.0.0","_shasum":"984a5364268933e7070f863c2a250720f78b01dc","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.4","_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"dist":{"shasum":"984a5364268933e7070f863c2a250720f78b01dc","size":2430,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.0.0.tgz","integrity":"sha512-AD91dPraPvg/efN/iR0itmo82r06tl0yvzbAeDMHvLS6MCTd2zrEdCQ4e+sbSIaG8MbH6UBFUPD/+eRXE4OcAA=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/electron-to-chromium-1.0.0.tgz_1484498449561_0.11160134500823915"},"directories":{},"publish_time":1484498450100,"_hasShrinkwrap":false,"_cnpm_publish_time":1484498450100,"_cnpmcore_publish_time":"2021-12-15T21:13:24.529Z"},"1.4.20":{"name":"electron-to-chromium","version":"1.4.20","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.890.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"415c27af1742a5dc451c0b8b0570dbf84351ab6a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.20","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-N7ZVNrdzX8NE90OXEFBMsBf3fp8P/vVDUER3WCUZjzC7OkNTXHVoF6W9qVhq8+dA8tGnbDajzUpj2ISNVVyj+Q==","shasum":"8fbf9677ccac19b4249c0a6204e0943d9d66ce30","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.20.tgz","fileCount":13,"unpackedSize":151339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuuSECRA9TVsSAnZWagAA6vYQAJhEPt91YQMYFlonfsTe\n4qeXXAg3AHSN+WUkJEMCKt/63IpzfRUmSymFGAd8HZTAUbInVr4xGGf+iuto\nRf5vP05SqqTYH4c4KeG7r7DnWRWSn5u06+VVBK9ppJO0S9471+iZG/IwrbB8\nRFDBvHjeg17aeB1xUfBDtZr9GukeuY0NTJFC1VW4UbxmToe0xwEpRW0eTpx7\nP4mBttsQC5TVIA4FhUkP++Qxen3jcvG4l45n6s7rfgmjrOuwZoqV1QGz2blx\nppXfqI8AdNJVAUtPhujEpGYPSdWjGHjzV1+jF/8OuuWZv/Ze4TI7TSZ3kakv\nE5cwhX/YbfH1eHKpgA173pDOZr3fCtc4QnORJA8iACGp5wYr/xduq2lv3eGl\nwFiU3QZr4ZmpFGdnPxFLcuybF9MDN68YlCoaGw9Jyavn995mXFnY4ioHcQPZ\nEDnEZOuzOZaiW3Ls4Fetg6ZURz5hREEu6qqAqfEDKuGhLA7QqQGwnthym+fO\n3tT5My05RDiR5ockXpsPI6nz9yAFY/TFoT2fRTeZ3lG4nrLzU/K3IAfEb4Q2\ng/x/f3K9i7jdU0RUzMUYCxTlXvwJqQcr5oII4DI56lVizqgNLRkPXhf8l94B\n21DoETg48wUUHUFcPwjCoeVUTlkheGI6NcoAWL/nhi5/EH8kgFDeVlGowGpH\nn1BT\r\n=dCGa\r\n-----END PGP SIGNATURE-----\r\n","size":23819,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.20_1639638148486_0.8023503668832275"},"_hasShrinkwrap":false,"publish_time":1639638148639,"_cnpm_publish_time":1639638148639,"_cnpmcore_publish_time":"2021-12-16T11:58:30.970Z"},"1.3.308":{"name":"electron-to-chromium","version":"1.3.308","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^1.1.0","codecov":"^3.1.0","electron-releases":"^3.283.0","nyc":"^13.3.0","request":"^2.88.0","shelljs":"^0.7.6"},"gitHead":"2d90347f77de9c725dcf19956cabc90d77f4d253","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.3.308","_nodeVersion":"10.15.3","_npmVersion":"6.13.0","dist":{"shasum":"73c2cd8f865abc1c31623725e4f89225e9e209e6","size":6977,"noattachment":false,"tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.3.308.tgz","integrity":"sha512-IwU/0LTzTa03Q0YDzg11RlK8e/V92tmPqFOaTEsdv7JJXtC/+v/H4bT2FmsA/xaFQWJvi0ZVcRppw8o0AD9XJQ=="},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.3.308_1574298153583_0.5613185142063342"},"_hasShrinkwrap":false,"publish_time":1574298153684,"_cnpm_publish_time":1574298153684,"_cnpmcore_publish_time":"2021-12-16T11:58:31.200Z"},"1.4.21":{"name":"electron-to-chromium","version":"1.4.21","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.891.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"af2051179c097912479e5bb153aed56a80b08a7b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.21","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-T04U2ciApGbm+dESFEBbewi2Xt0Dgyww8M4n4sOt9lnmFuYbaHEDWCROkx4jvAZDUWWry9YOdnAs+7468q80Qg==","shasum":"edf7d9477980079d840570c34ab4c4a5bef4c2bd","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.21.tgz","fileCount":13,"unpackedSize":151477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhu41FCRA9TVsSAnZWagAAyVkP/1qLn39V5Irm19d0FaAr\nyT4qPTA+Lnf5sHLvw2grLJ+b6Fpgojp3S+VjcO7oQctoq3eBEQK8H7uroT7/\n7cfLRY8e9CG7Eypd5AXzzq0I4RhdvS5e8DPXqpUEn7H6nBWq6h5HOmQeXhoM\nIpjKh6o2569I3HsB57I7IGerLx0AlrHPGYmvvuF5en0Z/dmBOk3sgANgq2a0\nWgERAxRKLaG351dxWpunuqKhlppqL5zp6fYlDyBzxAbnyfAtIZIRAtIsOKra\nrKeVTZZH/MZzuKliO0vwpfjxCC9QVUZ8hOCD53EBYHt8/ruLVTZYycwx6445\nxxnXFGRb+wQf2W0jQv46KzzXQ7TZMcX9W4iPgUD5Mqi3sy/VMoMmDWYF3PEI\nwrO8Ys6/q6qnAOzQWvep3yI8uNYWT12jzIGMhF9LvkK/AjxFOKQdg4vJM28k\nZ7/laSgninBZoMUkdDuBb/aHVJMhvQOaTYGJK1Jlr24g+mHP81xduqvJhkK0\nN7Zetefc2vnhs/BsZdxaNZaY689r+8ReQCzZDi9sTNMeS3pSm0eMsjch/tnB\nIQ47L0BRGtGv6DrXmEi4BUJ4B7PZsurehH5cONC2pcjqBXBmOik1UTBQFbyQ\nvXS0zBw1ta6mHLNXDTQTCY/HQotU4YrqWH6XshwcBfN3pSGk9q1hiRmKuYav\nEjgM\r\n=MNMH\r\n-----END PGP SIGNATURE-----\r\n","size":23830,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.21_1639681349267_0.32561397455191954"},"_hasShrinkwrap":false,"publish_time":1639681349498,"_cnpm_publish_time":1639681349498,"_cnpmcore_publish_time":"2021-12-16T22:08:47.514Z"},"1.4.22":{"name":"electron-to-chromium","version":"1.4.22","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.892.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a40506b27fce677a58495e108fdccb954fe9e382","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.22","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-IiW8cV8eyjMhuWqk9wwHRPOVN+5Fa7NHOTjogrwg2H9TNiLVA8ywjOJnVKoywaqUHryDUOpK7Mg6P1FETisi0g==","shasum":"57b7deee38b812e8b5f8f530709cfdb62a8e0bcc","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.22.tgz","fileCount":13,"unpackedSize":151621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhu/3BCRA9TVsSAnZWagAAlgcP/2r6JVlMHbAJoW5I2etZ\ntBdooOMRvO/xXF1YGRLrotZkIXZaXQ4WRKlXfhft9iyOnlQhcVmRQDorzgly\nhML08iie67S+3sG4ZD0veHGWzOXbW0vFfnV6Uu76fhty1O3FZqPTkQcwZJMA\njTJt2FBMXS3YsSg5GS6M31twW8JQFkq74l7qWmFvk7678p+dq/k02yKx/4Lq\nWKZPcfxRZb0yzKltb+Bf2cYtoNSrdD0oioOBOLEkuA7gK+ZOPidvy3+W929u\n3bU4DaxvadxPGKeO5me6+Jojr9IZUJPGkBgxUUDR/LADQUR1eIrwE6PCeh77\nDYIgANMVy0kaxlNIgFWFA1HvjGWVJTTV0kUWO6PZhrwjq0KE4OsU14SV1+Zs\nacWK95JS7s9QzehS0Hvkyx22q1drxxfOniwMkWROO3vM//7HK2bQlmzB93mB\nUq3z34dKN0VeNALkp1wd17AKSoQ5tCzwwHBHomZZt3sgsi0GVAurJh1pv/8t\n3d+eQPlQ27QhBZASXlj8os/uygQaVvoVRLiM3+IINlhnvCIVPlPAGFOCK0HB\nCgEEClCTtpC/9yZj8qxdFYf9wcEdWvqquUFUiSP/5hLhzRUUPpMizTt32rUQ\n1d6gMusxBEl3+0EKCXMKg8cVh/IlsTZ2ZxF9xwfVZ0eSb/LF0v4t0bTi8y0g\nQKhR\r\n=Y+QA\r\n-----END PGP SIGNATURE-----\r\n","size":23855,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.22_1639710145232_0.4216177188165804"},"_hasShrinkwrap":false,"publish_time":1639710145406,"_cnpm_publish_time":1639710145406,"_cnpmcore_publish_time":"2021-12-17T03:31:17.459Z"},"1.4.23":{"name":"electron-to-chromium","version":"1.4.23","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.893.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e929276042451d61d859d3506983eea99c9829c4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.23","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-q3tB59Api3+DMbLnDPkW/UBHBO7KTGcF+rDCeb0GAGyqFj562s6y+c/2tDKTS/y5lbC+JOvT4MSUALJLPqlcSA==","shasum":"c8fa28db6354062bbd388e24d95c4a263fff5cac","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.23.tgz","fileCount":13,"unpackedSize":151693,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvDYDCRA9TVsSAnZWagAAwycP/RuqIAUJpQRSyNV6rUBf\nKFAy3c5kb+pvvS2MBocsPBJbyoAQsRgyXoBJwoyO2Ra3KaXNtQPKsbIOJt7e\nXbWShDmTVq2c3f4E4q65qaTVVC6on7BwNKflXf73vHmtx7g99M5Xi/18nKtL\niClJk4TGW1jclv+YTGu8fLAWyY1pmcuIElt+88+ET0VZPWLlKdZU2nsNI3m7\nJOCYNSq9X25Xxhfjw++VP74DmESo4m7wprvaZcpWpr6uqTeF39ia/8Vr6oVh\nG5cYQeTlATHh252SV3aKEDYQUtAY89r6p39FHFb2GADODHneYiuwYfBRlIWR\nRR+US4ypTer3XQGsPZrFB6sT9buk9Ba36T0ZP5DEeupJ3JkZDGVpUAUNDgvw\nN1QbULH2cCeqfXHXcu46Dszldx4T5P3akEdLi93s1xSQYByTohFwdn66sgzW\ncnkYVcmqCkh02YZ78u2EQERsH9IivGvFEsoiIDhfWLNdqwDkr24yP5RYJrvg\nDjB27aStHtXcZzzMdcy5ZZx/rHzRPTdfvkwIAR2n9jNUD8BBvs3kCdvYdxuz\n4EyZy3fGIfBmKM7d81dM+x33Ji7Rs8PnTt69JDbEUuDurg5FM6d8bB+MESrb\na2S7skqMCEEzwH2b9f+XTpvi2m/4Mu8MJStfplOGXbcwF7EBIDGgPm/lxv8O\nykSB\r\n=EH46\r\n-----END PGP SIGNATURE-----\r\n","size":23862,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.23_1639724547344_0.8593589870710452"},"_hasShrinkwrap":false,"publish_time":1639724547544,"_cnpm_publish_time":1639724547544,"_cnpmcore_publish_time":"2021-12-17T07:07:14.562Z"},"1.4.24":{"name":"electron-to-chromium","version":"1.4.24","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.894.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"cc10b301678611e5616b4ed600ae93f9698439d7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.24","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-erwx5r69B/WFfFuF2jcNN0817BfDBdC4765kQ6WltOMuwsimlQo3JTEq0Cle+wpHralwdeX3OfAtw/mHxPK0Wg==","shasum":"9cf8a92d5729c480ee47ff0aa5555f57467ae2fa","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.24.tgz","fileCount":13,"unpackedSize":151831,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvN7GCRA9TVsSAnZWagAAb74QAJM9D6XSbQ9SAzZU14Dw\nowt0ZbD4hy35/iiugBC3bd8uZMFVTN5qDEBR5ElBow/FELqjZ0qNqcx06BpW\nd4XLDD5D+cA4rmfDOLxZhGLf+9GLv/TfPPuRUGifQ2UJcYCh1p4ysxeG/7hW\nRXD3OD7ulwn203CunaxcEDfOcQn7Lpd4VniBPwHc3jXCCnlGECajvqu/aASH\nQ3z6e/t2mWcg8ZNgp0/D8YGPT3ksi9SJLuciVXuaN5piU/Ql2/kRYx+E4cJj\njm/ijWsTG0gT4F2f0/BkSbF8mJezNooCywm8TlLkVviYb7PWcZRaw481sXXs\nYqGy5tZ/ctLRUZ8QLE5dHfhhVF3kuck333indjlEqmT+YMab/VykGaAfaxCX\nfnkgXMpY3fzqedNwy/XM5Orx64Bq1BEvOohSKkv/rgAW4dmzjMxzOgy7aZLX\nc1PWS2sSNUCHXFPoHL9cn0JAnaY5Bd0W7tqTiULnZfiu7lrH24BPq157/B5E\nzsjpa83o6moSSZrR1Ox6n6Ae6M7nH3Bkq4PCv4gWHKjAESS3NLWJz3oKgorO\nREVIOfevO5jcJj6/yjHEScGDUnzBd7g57KhNC4YY/t/E6Vgb51ANXoiONxAN\nzVfPBBplHOu3CbetlavWlUgzzB1s5Zs8lt9DZ5RuICj1yjDJHSGMkM40eegG\no8+V\r\n=3n0S\r\n-----END PGP SIGNATURE-----\r\n","size":23874,"noattachment":false},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.24_1639767749831_0.36660314450277354"},"_hasShrinkwrap":false,"publish_time":1639767750012,"_cnpm_publish_time":1639767750012,"_cnpmcore_publish_time":"2021-12-17T19:11:28.562Z"},"1.4.25":{"name":"electron-to-chromium","version":"1.4.25","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.896.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"42ea890136419d08feb7d3eaa82a730f78a70fcd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.25","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-bTwub9Y/76EiNmfaiJih+hAy6xn7Ns95S4KvI2NuKNOz8TEEKKQUu44xuy0PYMudjM9zdjKRS1bitsUvHTfuUg==","shasum":"ce95e6678f8c6893ae892c7e95a5000e83f1957f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.25.tgz","fileCount":13,"unpackedSize":151969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwUPCCRA9TVsSAnZWagAAn90P/119sYpX+PCo6rpvnuKB\neup5UdnlJGFIs9ILI2NLNTLUXrZCUXr636Xg3HMZYSSpZqr21XX2wThQvdu7\n1c1CWy6dBzZm0AByyNY4XTK5doLAmZK8K8/vbw+cRYn+ZA0yK+ETtx6e6x+W\nWMDgXN9m9YF0s2zfPA/MGf5NvMDDIESRlQm92UWA+tTbHJLCHf/2W3SDxVOF\nOap3BJ2NnvU3PwZmEXgZbVvIQJM4xCOZaYY2SP9dfxK8NuTFWgnyFHkwpyqL\nsT/wv9Lq3GH3NFlbMXVjNrs8ZlnNY6AgBt1kGc25whwRGPs9M5z4pnMWNzD+\n/Mr4gugHgBQiWR0sSStSl56+sBBP5ZYgkj3dmLmdmxpTy+OuRXq3rShcvR5J\n4upUI5HHa2mVclheDE8sIpATlKa4WVHU0Ju1PhcjXls8KUW+34V7foK97gp1\nf4p3VLk5hqAKKDl449h1xj9xkpKaXCwklL0V5X8RLc2VOMQNMQgzfUz1nkGb\nqnm6BYeqhRbfBX7sFqgXfW0lh4+Cgn//vOZPKPrt7i/E2GSAo3LyK1/uTkMu\nE7lVSxLqJ/3kmtxZKOLSah9I8NUEt/CXqcGjef1j/SxBIKXtZzCdWefCoVv7\nmoTIrawFolBJ7M0XWF6HIPEbrErlnIYVri+b5ToNbtt2DAFrxUVz1f279Im4\nehqF\r\n=kvUi\r\n-----END PGP SIGNATURE-----\r\n","size":23883},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.25_1640055746422_0.6721680243907346"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-21T03:12:38.789Z"},"1.4.26":{"name":"electron-to-chromium","version":"1.4.26","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.898.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"79e7e6b75bd6f854a869288b0ddeb448eb8746f0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.26","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-cA1YwlRzO6TGp7yd3+KAqh9Tt6Z4CuuKqsAJP6uF/H5MQryjAGDhMhnY5cEXo8MaRCczpzSBhMPdqRIodkbZYw==","shasum":"d71b9da220543cf10614a576c3d5ebbe43d96efb","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.26.tgz","fileCount":13,"unpackedSize":152107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwiTFCRA9TVsSAnZWagAApAAP/0zICWsXilXXHGys4hG4\nPnbnyx37kqgsSY1e63qXpgbmW6hMgB2HLzjcDP27Igr8o3TcQN+HdxO5Ggt+\nFKV8MyKtC6vQ7YugEC41G6035QskMTOiRSwBArOOQ/JC9bLPQ07LVlYFKh22\nXlSLGPJt5dI+LS8t7NDcUQiVsuQG5q0F7b8+c6aTFsrWGmZ3sToTPbLLdIb1\ntLetfBOn3GiEVc4ZSP/DNwLy4vFUI5LK+QlnkBla5mR9wSXRNftJqy470yi4\nNfIEzqkI+tJJrerdx+es2QMQYCVMiEAIZQhTZL6Rvg4qR2JzFJS8eVOFbQSD\nDWePYCAva8Pr00eXGQwZtWEvVoYAzBoICSVeUhY+wrz9V+xa468tMiX1iBYF\nCh5oU1af3tAHhQojHHZIrDD2Bvgijj21IX1BMCQg8ow+tweIAjTyB6bDPvTg\noSqJyloWlfndrI/6a/CNQc9Kje4SGWV6P0Y1fS7DT7nGNoNRAtbKNSdPD64l\nz070hRoWqqbvRBhAl/D0BKbqaWjmAArJYC/Sw8w5MCvVFL0N2A3kgnYG5wtr\nVnGMfsnoDMGGNaXVcqZ12C6cVbNlkasyb0wOgWZPTLQDSqXWdhK8mSVyO+6R\nfLiCLG+6Iw37yuB3QXYLyZcja+1gAxgCFdjG0r+i4clHM1BAskjKR7I9WGYD\nv2uX\r\n=d4H3\r\n-----END PGP SIGNATURE-----\r\n","size":23911},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.26_1640113348764_0.2849869879870013"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-21T19:02:54.525Z"},"1.4.27":{"name":"electron-to-chromium","version":"1.4.27","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.899.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"07594de59ba4d5c0a89603cc468bf7035bf4257a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.27","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-uZ95szi3zUbzRDx1zx/xnsCG+2xgZyy57pDOeaeO4r8zx5Dqe8Jv1ti8cunvBwJHVI5LzPuw8umKwZb3WKYxSQ==","shasum":"bfc6e798d8a56a17d658312f4b7ae1a7ca87724f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.27.tgz","fileCount":13,"unpackedSize":152245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhw3ZJCRA9TVsSAnZWagAALpkQAIjQDEq5mfeailKRKuP6\njrrSCDaesKHnHq5SlHzTwQ+V6j7r5h8Anz/NkXgpqLWm1E8pS1wUPTZ+55Ut\nLKovg6P9u4BpdemnIlIXbIhQZ/TFSqs86CTkDBSlYGtTVu3zzOJqVfJhms0M\nXVjsLI2hrUQCHhPN417KpBgpNPJPZJKrz79yTtjRGVPdJcSAQtfgcyMeXuae\ntljZEMCNqiEjbMAAtfWOYArFzxcjzwDyud8X2+j034mU7PM+lt9dlP4xWIHL\nMLAIbjklEstYi2F4BbumGblfKxIM6ree0TrC0bKHB/eaB/e5QTm2e1LWGsHW\n0CT/U3Toa4xPUy4gf3Vb58xsT6CkynB/ecW94FecGkvj5YudbcjQB7mDKk92\nZXOlpPcGRo9QcDU84D+ArYW9bGa439P1tTIkMVEO7bhtluyYhC+DzM+DoOXN\nK5lxV9KtDWp9ZQfUi0h0SpLW65RdmaTNWkXucW24+qIAirwBwXXKkX9btTjC\nEJoHsSPpt6YXbhh3gcRpF/cR08TX5roWanIr/pwk2l3G9y+dEucpj77pFE9s\nXCNZeGI81UYSMNloXK+1/w2T5XFnwhoUG91XJ929EhzzJ5kwnquuYrPJ5A1E\ntEwraNACZwIjkj3XE3WxxbKMfWGsYfnxszE40fFHgGkF9tJmkfPlLnd+lvZj\nUQVe\r\n=kUZE\r\n-----END PGP SIGNATURE-----\r\n","size":23927},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.27_1640199753259_0.2556890791858404"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-22T23:33:58.035Z"},"1.4.28":{"name":"electron-to-chromium","version":"1.4.28","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.900.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"53690a56da67fba3c1c1acc50e00a75aa345e33f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.28","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-Gzbf0wUtKfyPaqf0Plz+Ctinf9eQIzxEqBHwSvbGfeOm9GMNdLxyu1dNiCUfM+x6r4BE0xUJNh3Nmg9gfAtTmg==","shasum":"fef0e92e281df6d568f482d8d53c34ca5374de48","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.28.tgz","fileCount":13,"unpackedSize":152383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxXCGCRA9TVsSAnZWagAAcAwP/3YjKGYceRsYf+o/x4+U\nu6CDzPUf52y9QOetX7DJ9ipyza4NgU2FXUQy/NNuHpba/6m/w+N5qzAIQMwi\nFHcs+8+77WD7MKE//iluW9Mu/z9fq01+bKMJ31xAyXpaLJB2X4dwbULUswIA\nXNgC/npZNPI720i+r80vpAI6UqjGGFZII0L6s9JxdVyUnTaI8kdRiKxwdxaE\niE1prYxtS0A+971AGFhCaNggfH09mEQGwdI0fhGiRD41Hxu1rfBXcRYcBnOf\n3b7N0KzzZUp7xL/gQdMiqmV4HdR0Gw1C+S3PekbVWqQytwCUN9IwUPooDxCr\nP39Uq+0oq9nbp6xA8wL34smMbYkGBjIy32v+ii8y+RRrOdOzb3VSNJVWip94\njWLtbl0OoNhyertBwzS7P/SpcgpoRsi0Ce5hvk6dgv/FKPgyqTxj3KN1TRvD\nEX8mBtpRqBmbiIcKn36plBsIhaRkJZB9plxVsskuNRWx/98r6F2o4VezExWI\nrEuKeCyrBAEjpRAIEsvvX8ioVKYvScYjrsn40YsT8jw7rXjGaSvIuULByz8D\nUpp4VGXxBMKo6jkQ/V3KPncRgyqUfNbm2A8BPGr+c9lcC4+jjonW+uKAJX+T\nDplUfqKEf00rWYrQAHvR9hhKQmmhyUfSOcGOJYvHYJCISd/WaAvTl/80XWkr\ngTls\r\n=mfLx\r\n-----END PGP SIGNATURE-----\r\n","size":23939},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.28_1640329350196_0.436954114338274"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-25T23:34:20.725Z"},"1.4.29":{"name":"electron-to-chromium","version":"1.4.29","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.902.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"972e699a33702709f9eee2e5a913f1bcce563b64","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.29","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-N2Jbwxo5Rum8G2YXeUxycs1sv4Qme/ry71HG73bv8BvZl+I/4JtRgK/En+ST/Wh/yF1fqvVCY4jZBgMxnhjtBA==","shasum":"a9b85ab888d0122124c9647c04d8dd246fae94b6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.29.tgz","fileCount":13,"unpackedSize":152521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhy19GCRA9TVsSAnZWagAABbIP/A3eKAYvq79InGIV6MEz\njl+ie3OeLf8YpFOf98HlRuJ/LA+sdgBlZix7x6xfbP6vHhcXilkH/HcrAmzu\nsxmugrR089edRdIf771BYu+wPnjKq78o+tFQGnYQu6bJfUcD3svZcR0lbely\niDZWxl542lYjO+axluddRwOak11uZzQ7ffap7fs2SyNsELBIhLFtd7UAo6i0\n87BQZoQW0mihOLcI+CaX2cphlAEIDjyrkXqthGdHLzH/GsibtddmM7nLK7yw\n7e4i1h1btZJOmjx5Y2M7a9qSa8dCXIc2otnYZEEDVgT2WjFNFiPpZ7qHCkw4\nfH5qa9T7/cn+g9hKgtPYzKRkXK0DZVUlg4VpJvgjlk8PZ8TOqqg5d1IrX1f5\nk9nGM7wHE7c6gRbyGJhtouPGm9jVPBG1g1EI7eP4hBB81CrCSbqZkz5g3sQy\nRolj1o5Om06DS9tCEwDIAkJyyL2THTntQq/RQ9MODKSFfNIym+ff9fM05w7V\nh0fNUgJkVlm4n5/q1tMqhds/QiAVuoruJEfrO+FLYTXNqfZXDUwr7pyP/iU2\nTtB5NqGeCocfBw21lStgpt4PMQSkyXOF/3muTBW02xJZ/9Y+cLFYHjEdTXON\n7zZQm0SZfEjijXBKxhMIAYoG7EFcEsCy7OTnFpXKqN95CS4nEtW3T4elN/OR\nR1ZW\r\n=BCdS\r\n-----END PGP SIGNATURE-----\r\n","size":23953},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.29_1640718150406_0.4345301972916693"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-29T08:22:09.345Z"},"1.4.30":{"name":"electron-to-chromium","version":"1.4.30","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.904.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"63bf30b2a503e90ab641fb0f6d6fc160f066651a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.30","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-609z9sIMxDHg+TcR/VB3MXwH+uwtrYyeAwWc/orhnr90ixs6WVGSrt85CDLGUdNnLqCA7liv426V20EecjvflQ==","shasum":"0f75a1dce26dffbd5a0f7212e5b87fe0b61cbc76","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.30.tgz","fileCount":13,"unpackedSize":152659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzLDICRA9TVsSAnZWagAA1IMP/2xsdjQL3ZgR5W82UWU8\n0QUcEazDzZIkZneF2aLvxZEltuQaS3oWa58IiTEMATCuYAyWMUGTsBdgaVru\nI8TpnwG9wc4IbART1q47EDc9T6hOPbTCgMau3O33I98V98ueRgI/oTk/c9ch\njpd83wczb4dpFLZkeD0/8qEXtnE2/QRPeLjnxRu/e+DZo6aML3QMe+Ni333n\nEnAbFcLD7A8nE13UIfD6FYaDNxCoylP3uGPG38zDn/Wkyb3gLn2B7i9e5LsW\ntu2HyqkzrtSoVL1o52JtjFgFZFn5jIFwBP4UB5OcM3VOuGlqcRxFw20RbQGW\nvGHGuYFtVbzxwxDm5w8yy2SHjqxPS262q03ZLTxGuq4t+hKrSFgUBkrDlnlu\nhVrhuNOaPmh8Z56RYgm1m8BzBQYxxW4oUt9COyBhbOtaC4YtbznEl0w+BHaE\nVKCsFnCKB77HaRS/3j7h3ZGv2Fv6kmQkPTH6kC//QKuxZTfR95FrYQTKoTJu\nLlLMhgW1EAIhSNaJp4BYzU6eivUsceq7jdtsU7jM2k4ldGpPuHOeSRIz+nbH\n/n2fzJpWHTtu90kR7Aw9qyKgSPnivr+MI8kxE/j+I2aUeCyieL3pnlyFLR3C\nxDKTk1cvEB0mBMp/rGQvP24K9Qv1dDaYyQhng7F6GsMuCNSbWZRgphnu9MWz\nrRbn\r\n=Gss/\r\n-----END PGP SIGNATURE-----\r\n","size":23963},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.30_1640804552050_0.47634508101177575"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-29T19:12:43.642Z"},"1.4.31":{"name":"electron-to-chromium","version":"1.4.31","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.906.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"dc61cfa8646f48988742e99aaab79734212b56b9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.31","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ==","shasum":"8d5ccc3f8253cd142b07afaa84f200fd33a7f2a6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.31.tgz","fileCount":13,"unpackedSize":152797,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhz1PJCRA9TVsSAnZWagAAAQ8P+QF+3XXOp4bYC55wWAvU\nEZDorjHFCBPqIFlLYtmSKATQgg/WW2VImkkm7sLfQuQouao/05BNGG1AmVxf\nN2DZR2lUzI7VBbEYdCUScqesY8UbwMDg/UynUZ5QBjRBihgipf7OcXvhBRHy\nHrZXAjTIgfGwklpLEaxOa0ntg/PTuu8DXtmOcKjD4s2ASnJjpbnRluzFuxHp\nbdGkwsHG29Q+655P2aLmDxPhs/5TTqNagUKPxsMSl1Jj7mTrLBRHrGtuYYWP\nVKULK8NH+1EsY1alZxf2BrktN5UCjrfoH9FMANnVyXi2KKQIihPmkEgdrwKq\n2gKuYK4aNk+eUHHmC1RzllRKSPaVXpSp3aOBZvyZnLGId/DDhtHkV7zGl8KG\nLhHZDFldJKrhz4xkj5+I/YqyRG4LQ+iXPjCZYwMUwiyzWEni1tPz54zE27dO\nh1HMLw5llh4nN4rp1Z1GnNx+4bjPxkJMzA/E0xIxZOg645EIVQzkSAF5Dodk\n+3uKt4oHYn5q7WjWC6qBVV9vL6Av8r9Yr/8CbYl//ptl3pfpZ347ccpYH5h+\nz2lQIg93+TVLoE8BiRN2ukYg2/Gyf4HVrNeWHU3/7n7RGclLN/UOds1A6RlX\nKYHKSMRVOlA50UqHgbTs/Mb2V9H75v4i6OIqZ5BlduomZGNMRIlc62dvHxlx\nCqVv\r\n=tRR7\r\n-----END PGP SIGNATURE-----\r\n","size":23980},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.31_1640977353414_0.9977198290976375"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-31T19:05:54.285Z"},"1.4.32":{"name":"electron-to-chromium","version":"1.4.32","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.908.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"aa6d60ba7ad7423971e7e08bd3e2b4830403f6aa","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.32","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7QRVfMlccTFs7cZV3lB0k9Wcm6R6F+w1yBPX+xBAlAP/1oJIstxTev3A4r8REnUUAFph/cIB8y/EBU7PDbJTQw==","shasum":"7ad1e76692b307da454b7380cc882784962648b8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.32.tgz","fileCount":13,"unpackedSize":152935,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh00hGCRA9TVsSAnZWagAA00AP/jlsn6EVo/GVTR7QdPMJ\nRTcSF5HSbabQTKKM4AtxTcnOCcvitlthb5Om6DCTSNjMI39AkTVlddugTtFJ\nOb99TRzk+O4PseSWpXN6c28WR2qdILXr0e4GbzdDOoZ3S/pr0+3ry+eNsiDp\n4LVQ0bxHxXtXIXdKSd6dIw9/8rao5BFE2tOY6T3xSB5SGIDuqx1aplKk39MO\nYm0xVPYrwzqkC1H1YRmX2B0DIf42+CpZ/brRSlnkEHUWo4/H/3NkA8f3U+Im\nZWha6VqJyek3UgtAIXTCTDxtR/+aDSRviZ0BpP7FLQbADLOchCFJlrp3h8vu\nZLEJ0iNgUaaf/rP2g1kyRNkv2+JCPGebb/64GxR40qmSyr0MSJvm4/U78wyF\nxskkbi4knwRqbavBQHDJsZkVjhdogPTKtBagj+59ojeXOS3AeBWEa7cJ0boQ\noRZ/5Iz0bVLcPDjok0qEWdVCAbJo7/qRhRnoJMzvon9GsUO1dDiS54LX2hkS\n1u1QugqUkWjqzp6ZMOBMBBcb7f6h8rzdt4Ldu4Qoe2Da6ESfiSr0kG+8gNTE\nLrjsFimrzNU2wIdPlmlxvXAa+R6Oy6M3pCJ3O5FH2ZqXMBkgiq/j2Sn6QGJL\nSX70BiJ4D9W7cYgay9w0wqPLEfA5FPQlP2XRUKRSPu/GfDtwI//9NbFUNwFM\nNg+D\r\n=GHz0\r\n-----END PGP SIGNATURE-----\r\n","size":23999},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.32_1641236550628_0.23838033942544468"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-03T19:02:49.247Z"},"1.4.33":{"name":"electron-to-chromium","version":"1.4.33","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.909.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3cc2aaee7457fa1590e56c8a4dbc1c23a52fdc6f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.33","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-OVK1Ad3pHnmuXPhEfq85X8vUKr1UPNHryBnbKnyLcAfh8dPwoFjoDhDlP5KpPJIiymvSucZs48UBrE1250IxOw==","shasum":"1fe18961becb51c7db8ec739c655ef1b93d9349e","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.33.tgz","fileCount":13,"unpackedSize":153152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh07jGCRA9TVsSAnZWagAAUjkQAJvp4TxAdMKWvkKyH7Wz\n+dQHFP0b1GM83qiX1Vy6+IvHQQA4r3Qsg5A7ENOCWU9cLmq4cLLQ2xz154LA\niVaCAgdLV/m4FqyHe/2acFiiyriQN5r7yUiH7b7db2f8fuOZoi3nOXDMExhG\nZz8RuMtmP3bvVFtEVVNzNgBljvMsXOHOOhHGbwh7+TKDfC7KfH9IE0wc8fit\nALK9YaFu7Apup2uDp/Rtk/VjUVP/cFEjkKcr0p+lEbn37iKI2eI39qekT9Cl\ns965UhWlTZJBF1A/GtrK9AQEEEU2fQ79KMjzdWzVrHmxq2F2WJpbrKCJI3kf\nBdHrjgGxUOzy0TG7RE8itLMCM9DLOsAjboqPt/TFt55ZPrAKkZkpD1/9lrqD\nX1CStn3YiidQxnT9GnIXwng/Ry+j9pm1PP43WeXkk0VD7VeGMjJRus0WkkP2\n9FE7e1zUY+xg0B4ZeJrcgwqy561VkL7nogsESEiyXOATrsJvaZutsyZwkPAG\n/4aGcHiR8mm3s+pBdJE19SsU8FXorc8ytDEnEtEf2dQanxQuGHOoI2cBG56T\n9gvTF+JUpmoEa+NTV7fUfMT+v7jOUwOcYNFEaMPh7apbGzVy1HdXJNzMusXP\nfBccilbeyxmjebzvR7EcE0wzJiOQmImVJzRYNgB3FNYuyo8/VFNSgDY2FNRk\nfRp2\r\n=E3Gy\r\n-----END PGP SIGNATURE-----\r\n","size":24035},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.33_1641265350306_0.46409072189999456"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-04T03:12:42.993Z"},"1.4.34":{"name":"electron-to-chromium","version":"1.4.34","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.910.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1a5e6cc334c040838d4756bd13ed19483cdd1eac","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.34","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-B7g6Y9No9XMYk1VNrQ8KAmSEo1Iltrz/5EjOGxl1DffQAb3z/XbpHRCfYKwV8D+CPXm4Q7Xg1sceSt9osNwRIA==","shasum":"7d87dc0e95c2c65cbd0687ae23146a662506d1ef","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.34.tgz","fileCount":13,"unpackedSize":153226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1GGHCRA9TVsSAnZWagAAp/YP/3Fyxra+t5EkDzWu6olu\nMNXCrJi/uQ5ea+PX87t9kztDuI2DfaCaiuFGFTKp1ICnLIk0NFbkobLet/G4\nciTEBkg/sAC8oFN7jhOgwrfPoFPBIZh+/4IXB6jnfOG44aGKgHqMV6dJhLk6\n2UJ63bKZc4td22BIGoNqWeclIx6tUkx3hq36dBN6f1LZ/ZDoCMy0D1k1/Pbs\nV+y06RAiqJ2fbzxp+FwBlbUBJGz9oBv7uHUbwOMznV8G386uaOa75QE17lxl\nd7E4YcUU2CqhZcbj8Av5ZlU8T/kYw4GNBWrmDL8/WyA+QV8Jj3LehDQ/Z76p\n69dS2baexHIdNsaLhaMWvCuXc70sR4M2JlXXFdBXPFzAI4e9mrGV/hKOttb9\nPmgm0uD0p1lje61nQjTvDzlN8P6PCOP9yL5r1S4OLtf04YQfI9m0jSQMvPxQ\nnxy8d4sKiz5khBXfdfswcnVRY+r2C+nZZCTNoRfihewC80QOjkgF5zq06mOQ\nCG/juQ0XTKWXtd3e778x/5F34IygfOqi2pzfaACg65wGG3gt43+i+M8ZVhmc\nc9w0fWug9lqn0EAO91w8vTw60PRUO13+mxm3kGCn/1P3soV34k0GGSmUCWlq\n7bxGheltOSQ9FOIrvNfXomrdzTsLqwUvvtpIXn4wSXHIZMlkawGMymDbupW+\nyCHr\r\n=03aT\r\n-----END PGP SIGNATURE-----\r\n","size":24049},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.34_1641308551396_0.8384663882048686"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-04T15:12:41.852Z"},"1.4.35":{"name":"electron-to-chromium","version":"1.4.35","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.912.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"cc7df3eb6b1efb67a9408bccb17d4d7a78621162","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.35","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-wzTOMh6HGFWeALMI3bif0mzgRrVGyP1BdFRx7IvWukFrSC5QVQELENuy+Fm2dCrAdQH9T3nuqr07n94nPDFBWA==","shasum":"69aabb73d7030733e71c1e970ec16f5ceefbaea4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.35.tgz","fileCount":13,"unpackedSize":153364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1QpFCRA9TVsSAnZWagAASNMP+gNbqLJS0ssWMG6uIGvU\neLqqYv1T/xERHG+dmmZbfDdoMNBQsabPZzzgiKW3tus5nU6vK8C8lTeksbCy\nnJZzUro4jT9AxnwrmWeSo1ShSSYRFuTMGgc3RHxOAjYkr8QO0ZStRL8BI68O\njGD3RqmacgmMeeVHP78Bn19P5Zgao9v7C+rqoQf8rJmwgcvb8xp+0wLRCW/p\n5zIun6KxfUoQTTLfL/2GvPw7xb8Efetf2zrdXwgQa1eWyPeLlrSXrxwZ/CEW\nARHgbeAanxwMLxQyzTC6tnJjhp5wBZEUhqUtJz6jwU/qUUa02CllquQiJGBr\n5Uty9tJehk30NC7q6+Fi8DSP3DUSYmxgj//O/kYDeMyFu+qMS7qL1i/lG+cQ\nq2/mT5iJOJuIjdGMpzGTkv94pdkWChghfafniL7TOkdRwbZ4XR0f9UwxXADz\neP1TDqRXmlFuc036Sd/eFjCIzjXnrOnkoGQ8hHqfNTacq/Wj+tj2LMVA9IYb\n6t1ewUhfse/webGLoqLDLnDdCsy2adSTryFZnjpts1bQGUSqdNX0y7TpNoIj\nz58HkFLjjJIhX9gA2wd1maxyk2JHrGRkKRk8x0J6pi0/p48EgCou2JA1qr0w\nyXCweotOyruktBGeeGgmBD7A0GMTVkEWo0puCcqP7PKBlptFctbqkHQIptg7\nWlf1\r\n=Mb4d\r\n-----END PGP SIGNATURE-----\r\n","size":24058},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.35_1641351749616_0.35414921169833713"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-05T03:02:45.684Z"},"1.4.36":{"name":"electron-to-chromium","version":"1.4.36","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.913.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b531d0e0e49ae2a8470c89cf89a7411d89481213","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.36","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-MbLlbF39vKrXWlFEFpCgDHwdlz4O3LmHM5W4tiLRHjSmEUXjJjz8sZkMgWgvYxlZw3N1iDTmCEtOkkESb5TMCg==","shasum":"446c6184dbe5baeb5eae9a875490831e4bc5319a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.36.tgz","fileCount":13,"unpackedSize":153502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1etHCRA9TVsSAnZWagAACawQAIFNgizpqItO4ifMKUsm\nSub8I9UgxIUd/xa4T8eTzHj2O28bGe5b24zlfmeOKKdOjNL1R9vfovVQso4j\ncSh4EPdaMK1FSjZOzS3jbM1wnMpkWVtIFQ6bWb1qKUykr1RGJ156Wq46NrEz\nniDPgghXZenRYAFc1LbbCvqy2PKtLNDx7lSb7uPlXtfGzcaQfga+2bjaUOuE\noGzkJRktlt4yCPe2O0Ghd0n511EtRFiIGodr/+eJqvB0rW0RmHJqeReGK8AP\ndNkT9O66sCW6u0TQ1+p7weO43wBTVcid4Pu4iTg5scA6U2308VPq8jeZaQaX\nM4S6vkeq0dH6AhcAmmz+IjT3WHBlFJ5TUF0fob3Ul0qQ6t7MoeWWD2R1l1qx\nNoa5Z8m6Rv16pN2wsQON3wzT+dUMC1FxdD6GndX20eojSpQ5pyG3fblONddd\nlwu49fb7FbLPE2V25ed7v4JashniljDuh48HCvFrFA5MscAjpYxVumWvaN5+\npmlLjTMEIVPgkEgNoAD23TkjSSy9i/C3Dc5hav5ush6QLqCPa/OVZDS0fNdr\n55IUDAUWWEtI9HIFs3hZxO905x32WmaA9a+M0OEgq0lUJtmFarqK8+ioKAmo\nkTKKGXawVRfKfK9cXV2tuBe6mowbcblM8rk2lXP9I1S0Eq8yqrvumDt/P5gL\nnOt/\r\n=SorA\r\n-----END PGP SIGNATURE-----\r\n","size":24075},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.36_1641409351665_0.009422267907921"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-05T19:02:52.636Z"},"1.4.37":{"name":"electron-to-chromium","version":"1.4.37","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.914.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0961e93d07d843fb15484ee3846993828676bf83","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.37","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-XIvFB1omSAxYgHYX48sC+HR8i/p7lx7R+0cX9faElg1g++h9IilCrJ12+bQuY+d96Wp7zkBiJwMOv+AhLtLrTg==","shasum":"eedd53cad229ae2d1632b958a92a3d7d7b27f553","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.37.tgz","fileCount":13,"unpackedSize":153738,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1zzGCRA9TVsSAnZWagAASU0P+wcs2B6xmnVIwarRucmQ\nH1WKXV/Qe75A/48kZSyib2So4+m89Uf9BuR/bFocxK/21AtS8EJmrEIjcTQY\nCI68i0EzuEHere8hrkt7xhdg9WNWfaD4necceR5FK6Hi7GCsFhWIYEqmwNg4\nJSKq8b/IAyhzE6bmb7osf4CFNxLNRLSlsOkscXlmRIabcwrODk2xPAkitQtB\n8bOijgfh6cCgl20++PJDqvY2b+52t6vlByQ966Ew/AUTLolhLqAteY4ZsJOn\n1oHwmIvIZVxW83rbhsBVetKmeUxiCbW/9hq/gskeAXB/DJ8kX0doXOBjIDsK\nS7wW+CIVbojgM92vvg+7lyQyCanCPJp21lZcUBU5pyq6KD05hVsid3QMj8EY\nwFF3y9/P9HwZ+T8WHIhX65WuUEkQiLvOnv9/NnFy2eFnzbcqXGntNQYAbYeo\nBCf++/gJ3J0FcEIQLntlpbVnoFFkmg1B8k2S8rca9udLEkUtV+NFYZOUYBry\nHYyl3GW5h5CsRo4091JIVKSJ2Q+o65u/cugN3MtP0xg0zwLKBlmSwK5jFD8f\n6dChiTkP9HpQsxmNbHSFxd049nBvp25hvfUl0hWTh7flNNfI7uVWn1TGNe16\nQh7uY+l7h1njNX/dmSka3LkvJdBKHfNiRE3vV1Iw6jUwQZyPUt6E/Vr/Iagh\n4Njq\r\n=ZuCf\r\n-----END PGP SIGNATURE-----\r\n","size":24102},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.37_1641495750556_0.9816134629209892"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-06T19:02:50.159Z"},"1.4.38":{"name":"electron-to-chromium","version":"1.4.38","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.915.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5eca603db50d359573390b2507ae209247b6dc9e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.38","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-WhHt3sZazKj0KK/UpgsbGQnUUoFeAHVishzHFExMxagpZgjiGYSC9S0ZlbhCfSH2L2i+2A1yyqOIliTctMx7KQ==","shasum":"10ea58d73d36b13e78d5024f3b74a352d3958d01","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.38.tgz","fileCount":13,"unpackedSize":153876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2I5JCRA9TVsSAnZWagAARRoP/0kpl4upNWrL8AP8avCW\nQhM0UsEqOqyCHQLPVIhg4AzKEpvgtig0uvaytL1THvoUmtGKCH63eG/uej8W\n257Kjsis41rFntxkOFMN97i4DUU3mMRq89RaGX7aYJmplJBakYfu2O1M5AKp\nFbJl2CCR5llV2xPliTKbikM2SHWs25YfrzIbnBspLyNrC2OsdZhNmBv45+0g\n0pYx6yKwE3JX2mu33S2JDXwVsfw1LEw59UUVBhUDi5N01jJvesUHtH/6CoSI\nRZYJcokK2qg8hjR+z5bj4AYIAP69UgpeX53pYXuYy+RDCvRZ4RqpJ21Jksq7\n0m3rah/BrVQcqd2g/rgRlHBVSbSnF865py1VoVPwj0uotQJAZYCc+PtiigIv\nvtDrUZfzc3gH0z/anwZXzD5qhWDqVRifgPQmGhy/8IuJMEhhCAIjzQC5I8Mk\n9H62XiBQURrY9y3Bk8p1XbdF5lIs0Df52awG4Zh1rQgpycvOVIDEbmD6XtYm\nrib01a80MLdmKuQbR46x+ESebHN6kfsGb5VXpE4ipvVcfG8g/9nE20mVdDvP\n9EM3ZBhHHxyUw/UEhyl/sHJD2I+U7JD54NNf6XwuE3a9ih59coCtSqy6uy2L\nZN9YsxP7YCmarUS7ZF3PPcuXoS7r4N7j0PKR+0nAK40SX7OjScqu11RQLqSe\nd4dG\r\n=qCgp\r\n-----END PGP SIGNATURE-----\r\n","size":24114},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.38_1641582153074_0.5772381086885157"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-07T19:02:55.410Z"},"1.4.39":{"name":"electron-to-chromium","version":"1.4.39","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.916.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3fb6d48afc10abb4b0ae41a72c77c4a75bbcebb2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.39","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-bFH3gdRq/l7WlzSleiO6dwpZH3RhiJ8vlMq0tOJMfT+5nb+x397eJn2RHF6Ho/9GCKv+BkimNlUMHl9+Yh+Qcg==","shasum":"19c8e8ff712fe62bfdd4f3fe1c3b3fb4aa179ebb","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.39.tgz","fileCount":13,"unpackedSize":154014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3ILMCRA9TVsSAnZWagAAHsMP/AtBD7XaTZHD+RUu+ESv\nPjoGXUHxL7NZJzdlgO50vc2GVjc/v3tHGSsQFnt5i4Qxw/OsaWXrsrfEIYSJ\nCs/oUg1moX+aGtbc1VGNxl/FqirWcw51W8vSEFlcq812U90FT9x2dpSYt0X3\nXDtmdHBesNChJgxrBADZ+zp8pv6DKl1C2qJS50ysHHjBFAlOAGgbhaE4iAdN\nCYNGRd9858ZbHoOjL1fbupfjifgONzeHV6DXfHZDVcYCoAQZnOuwKcYl6mHz\nwb1MPmqLv2H7KR3Z/fHjd1++2D1FyuLgOgaMy9Qb8l1ZS7+uvSs7wMWuLeJ7\nknUVqre8M3ad2ZvsSzSaQqBtwspk83mBtnOtL5AujqjYXZvUzPzcQk8J46Wq\nyeoYfMBLEHjfhQI7wmFegYMxIOpTvOZPHNkFThiQqfxIcn66AtzXKRlIY+mv\nrEVhc+h/r8V+x5iem5M9ChlICIx9/MsPZgznHN/SRDIDoF5ZTaCG3u4j8cJR\nPxDDesuh75ngOq5jXc3sXzonEBqheupAqqgVVa6JC7sMTlrE0evQUMorhbua\nvHwJppFnycV0RFyfgmDXkl97kfpzQwtFLvF/VMvxhnwuKuf4tzz8/Bl5gIkx\ni3Vvojf2vZjXXLFjQSiRAbU1dVhmBDcHKAn/AxQwNyhkfzIvgraza00xOCXd\n7VIi\r\n=A4z7\r\n-----END PGP SIGNATURE-----\r\n","size":24133},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.39_1641841355965_0.23101159873695076"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-10T19:42:40.405Z"},"1.4.40":{"name":"electron-to-chromium","version":"1.4.40","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.917.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"39e0fe00ae1e9db758a2d32f8e924597c65a3056","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.40","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-j+eVIyQGt2EU5xPWUblhpp5P5z5xyAdRgzogBgfe2F5JGV17gr9pfzWBua6DlPL00LavbOjxubWkWkbVQe9Wlw==","shasum":"f5dbced7bfbc7072e5e7ca5487f8f9a42c8bc768","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.40.tgz","fileCount":13,"unpackedSize":154112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3PNGCRA9TVsSAnZWagAAxC8P/A9dmmzJMpULv+BnUzrL\nhpys1joyRnbyScvs6VkC4SMhOcLEStxlitY22umMqakQvdDsF0Acj3FUA2Kn\nhJ1uSTRtW6NYnuOYj7gZYI700B7TpHAEZSPemEYOP+tUD5tnk4QPLJPg4bVs\nBPIxFSg+DLugheRqmO+Xp6BQe75uxcOlZtOy2PSVKhySFqXA/7vNaQReVYvK\nHkWCJtO3KktE3xHBgSCcoX8zWyJuaXAMBKTM0OM/voHUFD6QR5DL064OJ6hy\n7TL/ZE0Ac1hp0c/rhaB0yo+KxU7KH5b6Hl3uCy7QULomfEwBgaIgBuncNckE\nMUwOBUCLl0A5sRXZcvsuvFHxfAcvi6fVPx2hy693vLCuGVl24L116eb7pR3v\nuXjXzQXC+jh6be6MB3IpDyW7LyMhlHIrDc7a5xcmJJ+FjHCDY8iQuvqLqihv\nrA7qftMLDXNYvxR7+2Y39t8JQGWCVquzFj3VCuVq52ZXyJgcT/ptmGyOpXFc\nq7L4Nvbmk0rj4ON/TpyBpZiLilkYvCLesMvlnu2gGZioeOr2sJ/rtR+ivnM4\nHCnkeNM+AEYc6hu3xgSl+Kb2ydcoSk95XazvNbgnI0ggWo8ZB64CzcdNVGFE\nePBCSH+BRcOo11Bo2zbrazf+4M+SM80ncSEO0fiWf7DODx5kEa7AkHSu/Xb9\nzz9k\r\n=arCY\r\n-----END PGP SIGNATURE-----\r\n","size":24148},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.40_1641870150668_0.013471734663500046"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-11T03:02:52.518Z"},"1.4.41":{"name":"electron-to-chromium","version":"1.4.41","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.918.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"428b8c874f4d13610174d01316b21a4d685d90ad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.41","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-VQEXEJc+8rJIva85H8EPtB5Ux9g8TzkNGBanqphM9ZWMZ34elueKJ+5g+BPhz3Lk8gkujfQRcIZ+fpA0btUIuw==","shasum":"0b2e126796e7fafb9fd71e29304468b9d0af5d65","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.41.tgz","fileCount":13,"unpackedSize":154287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3dRKCRA9TVsSAnZWagAA6CQP+gOAx6KHYNMsmgoBbwcJ\nJpWYk3a6TCgN+e3DVvSWAPFxtn09GhH2AdYJdGN2bVkMXi3jYYGWq5EDGCpJ\n/TIGxlHQpSuvQpEWo1BdUk64yfe32hhAH7rtQp8fWXGGPMxTC/3Smc/ojONf\nICWQT+2QpVhRuS4O0So75Kxf7TmUWElIBE202j3PDrew/ZX9lzZ8CdNtWBrS\nKZhUAsu/bxpgXc3hcgGmQ+FeaWkKY9WNjh0ZyTgh01yB1ZcuVV+gdfcOGkVr\nuzyQl58m8wEK2OX//kjOAX7U6IAo9iZJiJ86p9uzXKtzBKF+IYh2gdVJ7Os2\nTvbJ6GNXaCZoRmHw48RUpFa7dOrmI6V4jEEDevkM4leuqewZuNNjEvOIh/9q\nMUr4yKbbSGKze+lBboulKDICUiv3diawA96HQak1+/tz+EvXA4AEIdb8i0Sv\nxLbHc1NTPBIinampAQ/UDDQJqNXDM8cl/1d0E+ZlkcmhCKj0rmhh3nJzxhcE\nB/dOcFihVp+VpLLeeIyMhdbhhduSeSNuS/BZow6HyV3ajx8VoMFEbIr/zPWf\nO2T1AATO5Y+4kS7/s4GIPJGrod5wW1tBphuh8ZeVlSoVgRevUEobFtFS+MCj\ngwuWOfkHrusfcvxh5hx19QFHup5sLYqDFjuDcY4LjKMpNrACJaA3MRY/qlQi\nQvNt\r\n=OqmZ\r\n-----END PGP SIGNATURE-----\r\n","size":24187},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.41_1641927753734_0.7803665682180063"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-11T19:02:49.895Z"},"1.4.42":{"name":"electron-to-chromium","version":"1.4.42","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.919.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e1ce5e60bc49ac0ffd0d54d2b6bf16d6d58848e6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.42","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-JJLT8bjdswJzk8sNRnQjee0MGtO4zTn1t7eWwYPr8gPTadQgNRR/wFRKLGD6HZVZby39yHERkvuCVKNm10r7Dg==","shasum":"fe3ee7c71f0b5302da12e730cd9cd395609625df","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.42.tgz","fileCount":13,"unpackedSize":154640,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3kTKCRA9TVsSAnZWagAANbAQAJV83VMrbq/JZD7lcfvk\nwlibswBHJ2GbKQTY5+6jhCflq6WXZa5slLNmzS6Auh7Wb63QcD4z5/LLumLE\nL8s+KC0dEx1K3msesZKL/DPYOVp9FnIoazUlzWSg3YtheNShCEMyccLWcYUW\nusz7GMcrZneuJVo7apVpMFFblA8HzZiPNkd+HNdEGcqaDAH8JGNws7fQHxQa\nlvRUAORliOklnELPfvQXYTY/tgvQGT7HsEMbRf4gvSRS00wBTOugq+vQPMko\nyDs419+OPh5FUJJr3IeSAnSim1dXgxYmeTJWGWnPBk2+HGvqO/IUQMIOXMcD\niGGKKG5VqPvnkWyfKLFzBYr8CNuOonlH9UK35iAFfVjGpGwGXR0VTQwhgDoe\nsvRYMOU2jUGvES+SHEz2xH2s7qN7VQeIxMgO6WVs0xlqGjyQxSeBMYA95xLW\n52eNvJ87KUrchoQZ3pi3ejL6SH/oCMe/snesllcETOUoeVe9DPa18FgBlRAy\nzwTiUndM9Y4pPVGLW+mRRLCfkI0IB6VAK4v1yeGy1JVfBpOD2gzScJdl6pNd\nmGNeiCs6Xl7QuKC1uYe+pJmtORcf3wbnTuxhHNe6f4uFEC/WTSrdkF0y0VTx\nO7tNdyEeqfH7vJ/uzM/FM6DaDqL0ftWzgkxLA3LSzmYAGPfFNzFe1JGXx9aj\nYXVj\r\n=CYwX\r\n-----END PGP SIGNATURE-----\r\n","size":24288},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.42_1641956554237_0.5598590313240215"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-12T03:02:47.756Z"},"1.4.43":{"name":"electron-to-chromium","version":"1.4.43","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^3.8.2","codecov":"^3.8.0","electron-releases":"^3.920.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"bd7bd354400cfe6e7b335f6fd654b69f7c7429e5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.43","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-PO3kEfcxPrti/4STbXvCkNIF4fgWvCKl2508e6UI7KomCDffpIfeBZLXsh5DK/XGsjUw3kwq6WEsi0MJTlGAdg==","shasum":"665c0cd8d5e7cce0ba78d90a514c8c813ca3bdbe","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.43.tgz","fileCount":13,"unpackedSize":154714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3n0JCRA9TVsSAnZWagAA4KgP/jsD/PIaAwmHXUNhmveK\n9gKyK2TqcQIRitPXwDMnsWD7QaHCi8GsCjIPch+5PnsPzSmlv+0bKzztc11A\nkRpgdq7KGFJtyd/5/Va5ELM/m5msReArZY/lRRIjzOrJoq50ZQeJ2BD9ybTg\nIFiX92nlpC15PKtEic4mRekLKr0/tlNK4CwUYAyg61gdnb/H0jhivJaVMrfJ\nWu2WRamZff6NiATwgQaQp5N57AaiWvxSSYokuWL9iG2SXaAzTRT9xzUEwlj3\nSM7UaRSDKxVmjpkt0avuQHW4Q3wguxob4diGe+wxBXm8NP9FbJe7DxyyjC/d\niWXYDnYQDUrZNxxo6FbC8mDBVuBNqOCYmwqeTOSDZyz6Ppb1X7jLXH+ImGpa\n8+4GLHmdyDyX/E73ZUeotD/DaUlH+FV41A885W6OrN4bEyho2WLEpBX8fUwd\nK6dk3nHwk1/YbsmROzhhW1z9RyTWBKYcIgj16m35BmLexjLt2XrflZHw6caL\nWQkU7q9WIA9CuS4gr+ffbP0QJziMU6awcgSi8FgTrhAqMZ7mtZP1++H5jEy0\nXP8E3d7UBftJ5LAgri6ciytn181wsIUB09wmJ2qaCQk7+1mkpJkCXDftiJjc\nub+odoXODMnVbAqn/A3Ban4CVHtsTICc6yhN7om9TdkgiZUNTVvzFq/COC1V\nq0O7\r\n=N3l7\r\n-----END PGP SIGNATURE-----\r\n","size":24296},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.43_1641970953651_0.7470325100339361"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-12T07:12:46.597Z"},"1.4.44":{"name":"electron-to-chromium","version":"1.4.44","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.921.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a6016d69626b16632779887d502ff4648b513826","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.44","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-tHGWiUUmY7GABK8+DNcr474cnZDTzD8x1736SlDosVH8+/vRJeqfaIBAEHFtMjddz/0T4rKKYsxEc8BwQRdBpw==","shasum":"8a41923afdd6ef5ddabe001626036ba5d1d64ae6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.44.tgz","fileCount":13,"unpackedSize":154852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3yXOCRA9TVsSAnZWagAAQggP/2mEJMix8HB8SetEskh2\nlEOkPPl7socZfAz1XqCat7vZlkxCRaQ1PMLIWMw1NnOppLZ1dknbiN0YQIlP\nj290mdMWE5laGYM1tWrXJoxkzS4z1z28IzDek74A0Dfe+SZjkV9u+VG7a/ZQ\n7zlOcp9JdjDEytalmZJ9wR8FSH+HgZ0XkiJdGsL9FWkxtS3olNK6AIPxXzGl\nNP4DgA8lJdq2y9kl/9oBWqjwzMO6zxS2rbRMP1uJixwJ0mcv/B3+dZKItC+f\nz/Mal8pNo4FGrUMuZApUuUzu9SjeHFlrvCEVrVBJJiz4oW6LfVVB+fudYPbT\nACpFosv5YzzpFAkfCShIrK/qH/P9XROkOOgtts41KOt34jtRU0s4Ohc3f77I\nbek+ZevYHAPhCxY/XNTbo6jilBCF9amOrHXSMM00Zc9lm/R2q6aw+SqlT9qZ\noVDQsZFY8JJO0tyuWJ7NCwPRAKw7iT0uQJd7+b6LyvyiA7lPAH7krpdKtlLI\nnY3ZVkDK7pDkIacs2YnJ2/mPKmXUmq8+50Y5FUmRwCfSLII/kJfabusjcJPQ\nCtJRlicl338chjy0mPB9xeJkKOzQ0aT2bFb5mt2pi4XFQKaCUAeLxHdqSNCQ\n0UHjhRl973XSITybhFavxgBbMC+L5WKCFNW7MLpD8aVBI56raNHVzeVae55i\nq+hI\r\n=QdLY\r\n-----END PGP SIGNATURE-----\r\n","size":24311},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.44_1642014158041_0.7001090625619057"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-12T19:02:53.574Z"},"1.4.45":{"name":"electron-to-chromium","version":"1.4.45","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.922.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6f075c53428869d7721922250bdd6306360e5411","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.45","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-czF9eYVuOmlY/vxyMQz2rGlNSjZpxNQYBe1gmQv7al171qOIhgyO9k7D5AKlgeTCSPKk+LHhj5ZyIdmEub9oNg==","shasum":"cf1144091d6683cbd45a231954a745f02fb24598","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.45.tgz","fileCount":13,"unpackedSize":155129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4HdICRA9TVsSAnZWagAA0NcP/0vT5MgFvgetaX1w1vit\nBTADwWvazxzJVJWpWV/bPNx/PrAY+fvrmMf1ikXFr9aHshh1VXLlmkQ2IZot\n8BIEGYyofJZI4H4NpUYU2Guo2QScdFO6HbQvDmdsbJFmT9bRGOiiUg43ppgu\n6N16dGQt6oUIaYuNiyfHcFJAuGwSY2BGnsx8ods1ewINKz7EAk2ptHKZTn5W\njDmKejVJ6GWHgRhATIpRRM50MMtJC6aMg8IIx4Ym4oT8IYUCFZ6cwT4yZHt6\niWaC3i2924VoMRRzp6XuAW6hn+yTGzkCl2lqcCr382fXqzqaLy0795g9ObcW\n2qhdijQ4+eh8x1JNCGFkIBPmwkUBszGN8sbYlqfbic1ITPkciueRpanfJzQF\n/s5CG6Eh/UZ/sBvXV9XKxpjmo7eTEg8NW5sJn+dp5G7U7J8nbgM/iwAbkRRf\nrQtop+lpO9JaE3zooQh8Ci47uMR/gHrpPXMqzauz9fF2LNqq9kYC8D5vjfgQ\nhNTPI/ixcLXeEIN4Lt1e5cn6oNmPRtKeaDKuEfO4zo9OQvzS8sVgcCFTRufE\nJWS/pxVLj4QizZhsB0LlhtRkVu8mGy11wHQsWvfnLbeD2T9eC1flHjdpySaU\nw0j87xoUKztnBhkZyIal+qlxBR2iqcDzpXDs44n014BTdTDtAOxBPmpR910k\n/Pgf\r\n=adSO\r\n-----END PGP SIGNATURE-----\r\n","size":24349},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.45_1642100552481_0.43171671846197057"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-13T19:05:57.983Z"},"1.4.46":{"name":"electron-to-chromium","version":"1.4.46","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.923.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b2700de9e870d16735456cbf4454141816d064c1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.46","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-UtV0xUA/dibCKKP2JMxOpDtXR74zABevuUEH4K0tvduFSIoxRVcYmQsbB51kXsFTX8MmOyWMt8tuZAlmDOqkrQ==","shasum":"c88a6fedc766589826db0481602a888864ade1ca","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.46.tgz","fileCount":13,"unpackedSize":155267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4cjKCRA9TVsSAnZWagAAzhwP/A7CEjSi7o7bzm1Mg41R\ni5UrrZ/8vYsuNTfaCRYhT/D/X33amTmPiMn3yKsHOcJhGJJSnG0mRHO3kwGF\nVlbEh5ajuz9n5IdX9HR2wSbw77vXB69ZTWXRRQvcyMYy6IHmMoG0RLx3TPI7\nIGGhcmm8swCOBnZ13NaXbygsPcj7qpZY+NBYx2LTo5WCpn1fMzSVbgWDgZl+\nLiBMF/iT36dN7ZHIXpn4TdHF5/wF6yu6E3j9s9R0XwktKvANLhDihUQikyyn\ngy8Xpbq/sUDReXGX0kySq9SJAH+HmbWDsLZalCwjHEXJWbh+IOpQZq8hSHTg\nsT5rW3QRyqBaFPA1w5kjo06/UN2BtoPKcRml1WjjFmqeD9IVquCCoOWEP6kA\n8SNC6m9LrY6SwsG8hF+036eytOAW5skSDs/wX+V0P5tokwMB0YRS9ufoxVzK\nmqn5lnokIUF3zeYG1MRLiWIhl+vYSAMfVeDoP5m/wQ07NhZVXf0tvMutvYfS\nVwvJUSdqqCfitRKcOBVZEn8Cjd+jruGCiTiaHU0OEfk3/umypki6v1UxCV5f\nDuUqrID08jrIQfMjGD0Yxkqp83ZF6IRwa525XTvOSQEWZmquvMEq9W5b/a9I\nYX/yuInX6/JkUgGOHioE+HUOQdxnR0F4kkDun6j1zhfcuSp+q5w1h6c6hTkV\nLorA\r\n=2iHg\r\n-----END PGP SIGNATURE-----\r\n","size":24360},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.46_1642186953853_0.5807703570533145"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-14T19:02:57.446Z"},"1.4.47":{"name":"electron-to-chromium","version":"1.4.47","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.925.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"260b32de1fd7aee4f4e957ef86106fc64bc4ddcb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.47","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-ZHc8i3/cgeCRK/vC7W2htAG6JqUmOUgDNn/f9yY9J8UjfLjwzwOVEt4MWmgJAdvmxyrsR5KIFA/6+kUHGY0eUA==","shasum":"5d5535cdbca2b9264abee4d6ea121995e9554bbe","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.47.tgz","fileCount":13,"unpackedSize":155505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5b1JCRA9TVsSAnZWagAABysP/i3KdtO+i2im0kTboKBv\n468nsKKZ/smndrawMj/RtbRN4cIkUx0RbQQAvzzjFoLtQywj85lkVlIqu32A\ncn4x5BUXsMsf025iRUI2RqFGmbGpqW5De5lh16yA9oXf+GcqPZ4IAFjLVcqX\nP4N9tSUBCbiCwQ+z2hH93XR5Zjn5M4vCLQLa0Yxr/pC+YtzY182Ip0TyrAMZ\no8Y7d+H0nPFpPVf3pFtMzpt+0V/ENr1Z+9LBg36D1RsHV5xr4eAgGwoRP98R\n83YEzgyC5xQVm5brIywS3LL/P7OAyHOj1xh3TFS3nJL+3V+zfy8jgR/1jXUW\nUMcZayL3digMG2rCRsC+Fm0h+oV4tFixzv6c8GpqAfik4kqTSxnWrlDGXxny\nRq51Ju1d3Vb11wy1j+EX+ySPqrIN2A1gdXDx1BveYB73+i9Jdkj1k3rbOXHH\nm+hKjNRq5P3/iW6RoyZ7tI7A0PaiqdE1hRb3W/k8e+Vl+Wq7nZqIwxsX8rTW\njiausXHKFXWFt3SitlhKIILuWmvr1ZmhhbrMQ82KnG6LHcb/MDSilXS/epRh\n/iUnPl9YVLaL+tCGjYQwTVOTV3eHAr6iJj0XL8zIWBNa2GalfoHVmjuqum/p\n+33jjfdQj7qe7BPJpLBfW+EGNRp93zf40Q6qVabfOl+A/8mvg4x8XK6j2Km9\nCSOb\r\n=ypeG\r\n-----END PGP SIGNATURE-----\r\n","size":24385},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.47_1642446153511_0.9110939825490276"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-17T19:02:45.670Z"},"1.4.48":{"name":"electron-to-chromium","version":"1.4.48","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.926.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"074974ca62775b73dfe6c3e5f7ad35f1a7bf857d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.48","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-RT3SEmpv7XUA+tKXrZGudAWLDpa7f8qmhjcLaM6OD/ERxjQ/zAojT8/Vvo0BSzbArkElFZ1WyZ9FuwAYbkdBNA==","shasum":"1948b5227aa0ca1ed690945eae1adbe9e7904575","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.48.tgz","fileCount":13,"unpackedSize":155643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5w7ICRA9TVsSAnZWagAAtEUP/2wiWsd7drf6Y3821FhJ\n9SGEQ/MiyOmFc8+jU8IVjGuZWdXXyMQ8d3SiOyelbhtpGTTNeH4a+FrIYkLH\nEI1tBpbIQ12jF22kftE4RnbzMPAbCVSHOz+goT9yVCbdw/cPetIrsgQ3IOpr\nseXJp6xJ12Lj+QZ6QPqDeeqh3MNWPCYx6alSIpKU0v/XfRlZWNamyh78uc4+\n3fkKf5RtlWH7D5R2ZktmMazm+j533/SdtGCz2Ml0Q+agbhpqcGOeRDHFTL/I\nO/6b0KCKRQ4XEs+g8TJeJEIRw7RyT1QTwszpQ0hn8xqK26CqYOhCrx4L/cUb\nUKZIPUUKceHXxTBgYj4joOCAYiA06RK4EHa3ExNtD+XvroI9ZGi3r7V5sj19\nwrZhx0JFaxKxHsiPCUwqkmRnpzVOc2xo3RQiO9qJDpmGPIZCbS4IH/nWb7ub\n4WYWE3J3gvUsdwrt5z4lC1r8698DlRdjdp/nQjhFYZoN3LceV65YRaYYenzD\nUQqdEtm/t9bOUs6ZyuX7BI3lSjq7BESD4TI9ftiQlzPU+vuhL2HHmkz6f2YD\nGAs2PFScWu4C2/nVjJ9iOE6/V8htuIX7saGhnyUVQHVpSHqZI4b6E5xLbRDO\nxiKkuWvx1yVBQ3jzcw0BvdDdQM5kRAMD05vN59jXG8af38QkTEOoWTwrtVD8\nQbCS\r\n=+HBZ\r\n-----END PGP SIGNATURE-----\r\n","size":24391},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.48_1642532552737_0.4200446021527302"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-18T19:02:46.897Z"},"1.4.49":{"name":"electron-to-chromium","version":"1.4.49","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.927.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"35b6fb2546c71271eac3b7898938b20ab464af33","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.49","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-k/0t1TRfonHIp8TJKfjBu2cKj8MqYTiEpOhci+q7CVEE5xnCQnx1pTa+V8b/sdhe4S3PR4p4iceEQWhGrKQORQ==","shasum":"5b6a3dc032590beef4be485a4b0b3fe7d0e3dfd7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.49.tgz","fileCount":13,"unpackedSize":155781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6GBKCRA9TVsSAnZWagAAL+8P/0XqmZYdh0HzXSig06fi\n3rgk9S2uBU3eFwDhDOUQSV2JbMlbJzDxmXtY2JRcQnsCDNJfOrut08xY1sgC\n6Hl4GYbUBLtBNxZwemB5DXS9lqsp59D/y1RVWvi4nvDd4FdCRVzWIRPOfkze\n7st51HZYtx4fHPPwji55sBLnkwoblr2ubbJIZ16vwFR66M8D3Of3fYx9AHeN\nRSff+TbJhTqs8nO9rjZoY40+gJyokN9A8qxxG3HbybfdOEn6CFJWujoNZ0Om\n8Xaj8stivWTcEKdTvuiDwyfPV712YQNbPLbyKnSbQvzUzUTfJ5VXmNvAMg71\nydf4ONsuT6mj/G2+ZtjRFSBUsb4cqURqmt83DFNLxz8PwXsk17XwuOad6I0F\njbSwVFvz6i09Ua4u8+KgYEbpdR1FM0xe8o4MERcC/HcDfgbg4UZzIClVISV6\npN+TA2TAm920dezRRtOxPin4xKZD8U97jTFevVFWu8NLAtdZSPTQBygmF4rp\n2hQ07ZU4SGjfI6DZfHU2L4+QOvY8LH0qiB2Vk9PMzqssDS+irBCk5HR/9PeN\nAdgPrxVYwBdlEXUsQh1VAWxjKytFfWKp4/PZNKpfDK/vMiJZsxKJjsCjQDsl\n+E3M1sz6m0BFFKpaF+Udq7xMD7T7Qc6m4Pdjh3qGLVBk2dL4HX2NykTeYGiM\nDT+z\r\n=JD3g\r\n-----END PGP SIGNATURE-----\r\n","size":24408},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.49_1642618954508_0.09650514763367335"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-19T19:12:44.938Z"},"1.4.50":{"name":"electron-to-chromium","version":"1.4.50","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.928.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2d035e12a36716fb3da9aebf19894fb618827221","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.50","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-g5X/6oVoqLyzKfsZ1HsJvxKoUAToFMCuq1USbmp/GPIwJDRYV1IEcv+plYTdh6h11hg140hycCBId0vf7rL0+Q==","shasum":"edbeeca145494b1cd4a6a2aa1fe3d28abc0b08a4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.50.tgz","fileCount":13,"unpackedSize":155919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6wNKCRA9TVsSAnZWagAA/BgP/jk23wGcWD96mIcSFXac\nFWjttZFRwWADwiWkkbf0kXaJdMh8Hmp5Vb3n4dtFIukJY8EsjIfzCTdQs2Pm\nT1/+LIj21A5aXJHApuIvU14OVXS5Es0MIwX979PktJFUQVgqUKJy3y9UkJnL\nRlb4R82EKIz82SzKAHAUqPSaMFoM3Ik4cpwTzsyjPqV9iLVnflq6g5h2TXR2\nlmuodWtFwZMcEzWvvieRKOwOGVyttx2Ady/P4ubXIaBlxo1+9cD+38z8vUKY\nXbnBtUqWIu6efXXmdT3YCU86/+va98yUo6lnZp46xrqj2wVXusMYuryJIIeI\nhP80JqNjuXewt3nfeS6Z0iimQ+v4mgv8cDIvjsxH2EKw5S0Mu0koGsWGVGSN\nRuU+DE8BjQgvTlLBVSKaQ4BzAKRR88kalFuNZQCY6Kn1odhPrMJYb1/23RA1\nYWn0TcdFrHvPQIAYAU5Mv9aKHLeNTlIyt3HvEqtMQPkHvSHaMbOTiBrMkmpl\n9lzKPEm+fnjxfj8xkU6ZmtzSu1SimTjm2tXMoUxuAvhHZDtTLbdOC3ze5Mzw\nE1bT4JuXRUWUzM/o5gMruWhRKNe7W9EBT/rxdFroCzkwHhNJjlVYgzqgiRLw\nDkUs7+6AVezuTqGmsOsubYWU+Torx9PZyAxewvXQ/mGmebxAzj/1ad+Iaq6y\nBIy4\r\n=x/A4\r\n-----END PGP SIGNATURE-----\r\n","size":24420},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.50_1642791754139_0.23142777377038004"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-21T19:12:44.488Z"},"1.4.51":{"name":"electron-to-chromium","version":"1.4.51","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.929.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"68d7c175d5343b06b529188d4eaf199fa3986a28","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.51","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-JNEmcYl3mk1tGQmy0EvL5eik/CKSBuzAyGP0QFdG6LIgxQe3II0BL1m2zKc2MZMf3uGqHWE1TFddJML0RpjSHQ==","shasum":"a432f5a5d983ace79278a33057300cf949627e63","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.51.tgz","fileCount":13,"unpackedSize":156019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh63PGCRA9TVsSAnZWagAA+NEP/AwTCFiflG6uGAqwXSxx\nfjtoMTDZdkPsniIUsGnUnvrF0o5f6iktZCjUGj6BlD+RjrB91pdJFi/vMruB\nyo8UcTByp1oSCsr8zmzUSK0tmyy3QaW9CopEkMYvw4o0vQiREc0nStsxiSMS\niV8WSGfKl/Myioi1eO0Wsc7gkSvBfFhjlE3xjqTF4q2IRZXVDNt4NGW+gWMS\nUIa4IZOrCbScJMyocv/SUzZ3JT2IS+8nBLybbcxYPQ1Oak14/AYfptLoSvVF\nUMvMA4C9Q3EJWtai0FRdVm/1z0o7Th2rW6yPxdaG13wkxD0265JpGMKq2kMW\npsyzEmplr++1zot8ra3Z6Kbgz1uwJZRhWKDlylA0yKpnhoEoiypWavGNuCoH\nYRzjhVP3yMLFysdP9Qg8r9SJcp3ugTQT40avXyfM3Vxubn8ZLcyS0y69thsU\nALgvV94cUrHwa5q07q/fPvxTXI5RBBf0wShz76an1MgIwrSJm8R5pzeA6TC1\nGg81KQ9y0QoZ2WX4vIjWt8nTk01BXftywHYLF6GIhU9tNdySenDkv4xzNJxu\n2J+hVsCPXW3tX8Q2Ar4yBJyQI4Klk8BWzlmvzmRbKHwp1qZFeYU/xPMHFpdI\nPw1gtUq1OvopJQYT6xU0C8I0E44pVFlNK4/HahdFD6f70VuwNUGy8qF52lZ5\nnVxq\r\n=hkSU\r\n-----END PGP SIGNATURE-----\r\n","size":24437},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.51_1642820550159_0.34464593170521685"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-22T03:03:06.137Z"},"1.4.52":{"name":"electron-to-chromium","version":"1.4.52","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.930.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fe9fecbe81e6c0baafdf147eea99d9fc48266fe0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.52","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-JGkh8HEh5PnVrhU4HbpyyO0O791dVY6k7AdqfDeqbcRMeoGxtNHWT77deR2nhvbLe4dKpxjlDEvdEwrvRLGu2Q==","shasum":"ce44c6d6cc449e7688a4356b8c261cfeafa26833","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.52.tgz","fileCount":13,"unpackedSize":156257,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7vfHCRA9TVsSAnZWagAA6OQP/iKJ775cS5qy5okgtL1d\nkxq9BXLhAutq8L+HG9BbIKx9OvU2cwD2hGOWAeY2aRhEyMuKgqqYC0JZCZHm\n+rIQ9KOn2SLAZJLXMBCoy+hhyrlDkiGeg5tmvEAOsPCuHBkuwWItRB0UY2LQ\nL+9xdbrElgoSQLZOI2CJa8BXFvl3bYyWX+T6wjU3FF2fAgVVGJadYd4tXqnx\nF3efh4IAkBgdBnxxSJ4Bt9/Nxli35tw/geNkhIZtUOgSd5lN0Z7HOCbL2DNu\nls3Zx8mvJXOe1ZAoARHZ3gl1T2h6BuuHY/sazg0InEEqrlLFPFDymKFf0/LO\neQQrJjjGgqW6BlfOwW7WGSpGq6KQDmGvm5FlaSANy3oyze7KDGK+17fhc6N3\nrCoC78pVCxOW3EQiBiRrfKX3MqUrbWjHSnHymXNlzy8AvWvXSjFIA3IL6vOG\nZaryXK/4ipfTBrA9CMRCNwxtun3RodvMTsWU7z1vB7YPXStL0coRXuddD+0r\nJcZaiHY3kHTRg5rV0da4mJ7gBxm9gyZpSk9K2cGGSBupmyZU/jdiEeBf5DEV\nkHkevMBUOKrF+mjerqB0WsRl38DWoaT0BIf5BG0+UkWLEp/chLqjRHlnZW2D\nKa58+qP6cDMs+M9/LtjecGo6wBjweYMpgFxhBkxsPV2EvjlGlfcnYpgj5qYg\ntjbq\r\n=L9TR\r\n-----END PGP SIGNATURE-----\r\n","size":24463},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.52_1643050951379_0.7602517344613815"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-24T19:02:43.930Z"},"1.4.53":{"name":"electron-to-chromium","version":"1.4.53","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.931.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fd7cd594ee963130d2159fd7f3ad280129b16b4e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.53","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew==","shasum":"5d80a91c399b44952ef485857fb5b9d4387d2e60","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.53.tgz","fileCount":13,"unpackedSize":156395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8ElFCRA9TVsSAnZWagAAbwgP/0FDtO6CSZiVzd5P9SSp\nX4A7mNnwHSSDq29fiqRY7rDwjJ3IBEdEWL86ooi/s3TiIHfwEsEkKhsS7B+L\nUhvcWI5yIguBgbpUAl/WoXqGExV1L1Moypu5e7dvcAiXxb1zey5/3V0u8R7c\naRzFc0Rl6MD3e25Ah7A2Cd/6g1SK0JXJSWIbwoJ0C2J39rgkYPgrx6DOf8Nf\noUeurO0D5/Vgv6u/LccZCzRS7JuYMXKolzdxBclXnx29Y9yDnZfdVKpN8d8B\nYaW73m1gZbCJ01FaX1i6Ql/SBgY+Niqe6Xux67AEXzBOdVaa4RDyG6FRLLdS\nXlYmbg+UsfY7o1wR4Uf7bYY71P7rPF1zZ4Ltq4hOtN0DsoRXP5IOAN5azPj+\nPTcZKtA8ZGSVXIna4fW1w8WHchwGkEppB3YwEnTzPsYOxWg9QgBcQXAkfp9U\nJHoKchbdYoV7v12J5A+775vNOUU3P7911eQZUaFre3wt9fMbVsQJEXOSStma\nS+iGbV+uu9z4qGQKfSdALU0TwDIApUxARmuHcNz3lIU4B3G+MW3xSJzIlkKl\nQepGqmwru9DRbb6Khpx82musipoK4DYAsDnNTwjB7o98yDS3eaMc713CumSO\neIeOd0hYuMBJRoQr0uZ7uX8Zv8Xzye2dGM8cWXoaYSg0S1GJVjmH0c88ua3F\nTJPm\r\n=xAqk\r\n-----END PGP SIGNATURE-----\r\n","size":24473},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.53_1643137349138_0.8042363171946043"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-25T19:12:39.279Z"},"1.4.66":{"name":"electron-to-chromium","version":"1.4.66","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.944.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"18d2b66710a65568faf5fc6cbdd203d3fc5ddaf4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.66","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-f1RXFMsvwufWLwYUxTiP7HmjprKXrqEWHiQkjAYa9DJeVIlZk5v8gBGcaV+FhtXLly6C1OTVzQY+2UQrACiLlg==","shasum":"d7453d363dcd7b06ed1757adcde34d724e27b367","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.66.tgz","fileCount":13,"unpackedSize":158332,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAWzHCRA9TVsSAnZWagAApO8P/R0DzFSzG1eaCQRRBaNn\nflamw5Y3O/GAdZGbmHNofa3qETQ9WiPDugnkXno6z4aZ+oLm2ZmzRfinqjh0\nv6vmxEMZZBfR77nxE0pnJtz3Bnzqa3kKtt6cP8zUgAvH1/WVV04rSpOVhv/F\niWsi+oAjHbKswJ9gP1HzGRK12QW+84+OPqAxDOkYrVEdHMoeHMm0HCqjTn1S\nmM/d80r6JJ4RKtkyfwp8pKGDghiFBm6HuAzWJq6SNBA+i9+GhwSRbUHu3mmn\nvZx1BdbQRhPFkvHV3ktpJslxUN7YdIRo18HqFnZE1Nv3zzLdVwdUsN/+nOHP\nOEg2L6+uHO7ZflTYqKEkj6sk3ByHoG8RGXDswZEhuvKjwc4vcMdD2JDOj8ik\nfFC5vlliC5T4rgWMnM4502jRMTJ3aDVqVWEQGGFsbMkKUZHRmvjhqQZnU+9v\nB4cPm+Y7z/yP9fEttPPXKajd5U7qSd29hzp/joZv2tphcFP17hTXMlpwHVHv\nMWmlch7EjCMt3DpReaX2xJnPWOk9525fvLR+HQcPiRuZt223c80XnXp3lFPU\nXXb2oWYcNWyV3A89QHFS/iiz72vkG9lx6lpM1k27Ik53E68FMzQPPRwZlIpq\nIuPiE8lQcP/78S2lpHbxxgc8ZoPinEQkX95CVk+DxBxmUcRkMFB3+DHGZaH9\n+wrq\r\n=N33L\r\n-----END PGP SIGNATURE-----\r\n","size":24728},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.66_1644260550933_0.740528884323314"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-07T19:02:41.524Z"},"1.4.67":{"name":"electron-to-chromium","version":"1.4.67","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.945.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"52efba8864b9496f628b6086ce3354187346ecd8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.67","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-A6a2jEPLueEDfb7kvh7/E94RKKnIb01qL+4I7RFxtajmo+G9F5Ei7HgY5PRbQ4RDrh6DGDW66P0hD5XI2nRAcg==","shasum":"699e59d6959d05f87865e12b3055bbcf492bbbee","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.67.tgz","fileCount":13,"unpackedSize":158572,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAr5ICRA9TVsSAnZWagAACL0P/Ah8T2P6n16EW1QJv+ax\nGRen0pB9AHxyiA/wMjYCEd+4dU/NhSPeTszGRlHte078PKSJ70TF7sZNEsGu\nVA4gqMvicslldTAstxrfPPUYEmbWgga9YhLTvwGYjzl/42hKvjQq9c26sIAa\nSsgMrOfSS9kH9F809E3BNVUTt3cW/U7hlQhX7rXqRHucQdmRgIcauKQyEw4+\n9t00lJR0Y95dkEyEN/dJ1eOsijQwUNSBHXWMvDfTUZ+zi8tJD42ZicCLqriy\n6nbE53i1wfBcsbz4dg1Xie4WjhtiQP2lgyvvrGKiZfPrpenAVAwc7GnCAXAr\nmKeWOMh18CiJ+5Kps7dakYSon6qC7XT/ZeqDJtdMONCOqoil3kbEjLOqrMsJ\niIir5m/w47BvuN3TMNOQaPSKnpzryqvnckYy88ERh52SZz4QWNumc10IMnr+\ncOvM28aYhABMmhzttzQXxURVSVMVckL3+wHuo0qWAjWuxXT+S4HHLUHTQ+N4\nmPDo6XvrNW8XcE9RkhNeN9VQFo8psr8LPVvZUG6ZSbBqJP3NfBFe8ZCbw/Vq\nfhmRwNuVkyF5ZW2DM2IRFuo2WF+PrwdmM3IlXGTTHYj8g7WtU6fNu5HJ38YV\n2lGsMitejdulGuqVDSY7FJPJ6eme/CYvHn2PA74uOIZiDGT1RYcaKGUbiMSR\nEBpZ\r\n=wzbT\r\n-----END PGP SIGNATURE-----\r\n","size":24753},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.67_1644346952150_0.0433801558566409"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-08T19:02:43.389Z"},"1.4.68":{"name":"electron-to-chromium","version":"1.4.68","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.946.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b93e01db66d982a9517d63fd1d88af53fffe3a1a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.68","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-cId+QwWrV8R1UawO6b9BR1hnkJ4EJPCPAr4h315vliHUtVUJDk39Sg1PMNnaWKfj5x+93ssjeJ9LKL6r8LaMiA==","shasum":"d79447b6bd1bec9183f166bb33d4bef0d5e4e568","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.68.tgz","fileCount":13,"unpackedSize":158710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBA/ICRA9TVsSAnZWagAAL+AP/0emchexGN/WJ1Jnl+xJ\nDe+I8YSKAW+0Uc9VIFN4yioKVzrA0lgzjjmBppchnq6SOa4jEAl/4jzWGVUU\nhmkF4z0ane5+AXGvHwNCcDDCEG5jbfjxOHdUOv+eMUEr6aLCNiP5+Y/qFW+B\nm84a8P7Yt0x4WJd3IP7tKGzzBI1jy12LD8YYm+lGCJg3oo+s+e26ZDMH1p9m\nl0crvKyl4o/scZBUwxQNp1EZeR1+jl5byWVFb5Xmx/AXHxZwnV9uCGlJfbRL\nkW8I1+ussArzsKcgiVtHrMoY+vtCZNjKhDA6jPjzE4yUP5MQtSW78Xypyi3n\ncMOUpVywX/4b8BiTeCcCR8qwe2cLLeW7NisYUTILKfPowQPQxWxL1RjpH/nw\nKZr9n+7rShyZWwtS97aOkuwO/6bRdEleJFkElvgnU2ydJsaspoqkDFBa3wH3\ncuxQZ5blHqKuxiLkEmsZFp95gDlVx218+noyijTkHuwJvz8jgmpxrC6BTRnB\n4LRvUmpyTDaKcnnI/Kgz/wUscIADYDe+e5jOkUS9y0qFVdZjet2h1+eYc30m\nXdfO7XmZcFGOpwl148wD6IJKO36BMmX0I8owIxb/kJ63IpTW92vCZ8gfP41a\nuAJuWkFJYAVGImoi1mN3xzKkWZesbPDXXWLRcnLc7c0RjrZi8+5DepSBxzm0\nkxPn\r\n=wBMQ\r\n-----END PGP SIGNATURE-----\r\n","size":24767},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.68_1644433352365_0.12200136944806284"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-09T19:02:52.251Z"},"1.4.69":{"name":"electron-to-chromium","version":"1.4.69","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.947.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ff7d485424867b7a3623b6eb362b03abd7f86faa","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.69","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-0rxK21MqWhN/fVUXNOeBksRlw79Wq26y6R8lxEEL2v7vwzRWbYhXI7Id5msee7/q1NNgu4mG78qaablN2xtfTQ==","shasum":"d52eb7887d2ec5ba62a8cb3491b990983cb6d2e0","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.69.tgz","fileCount":13,"unpackedSize":158812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCqdFCRA9TVsSAnZWagAAl/UQAJfanACzJ8zhJfJS1n01\nN+rMO2lDFCcdwnsKtVafNTg6nLH9reEwpQNV06OerobNerpuiYracvc3LZ5u\n4h2ftLl64StXyMmGrIBYAMUmTsiX5QfjG98fkzzN4al/yc2+JrTqwAePMd5o\nq4YaG20krwRWzSWpB8d25Lb4Ds6sBhNl5kyj3pTFkJzaRCiBAlP+9gRavZMo\n/88xdjQd6rkzhyaWVLPmSZhggRa8IsD16wBEhiTqSxfrauqskxcKXT7cS0/9\ngdQcjSV9LhBfhTobptC/IIc0Kfp9vWklYnNY+c4R1o7dSGdG2xqi5ijKUjwo\n1ZvprqlhFe1sVZm5QJ/0WKaxHaVoDau3jPfv7z+cWgbFiEZ9dNTpNcMMfoT5\nWWRQrSWg342FHQuFimAzHyUvH+AcG1g3SQBA8sAwj3kQO44Eow6AqcEaxMPw\nSsBb/d2DuB9dcVCAKQM0dcRYZ+fXboGUzRVq5/BtR2M+NuhKSYezJ9br7oMW\nL/SCPvFQ8c0rPgMRss67LLTlKG6/Sf9bh4Ekp0zbOy8F6VGgPQ65+xDV0H0+\n6ItIpl+Odslmt4S7dFevxZW5f/Vl/zKNel2NlBPIv6Bnjg1JIqveaFewFUw4\nrbGdCjLi+fll4yyBf43Vb5IQ28iGggYnoLVADb09KGmRwT3od+BkCPxXDp8C\no3iV\r\n=fkB3\r\n-----END PGP SIGNATURE-----\r\n","size":24775},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.69_1644865349174_0.05587630098813623"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-14T19:02:41.180Z"},"1.4.70":{"name":"electron-to-chromium","version":"1.4.70","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.948.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ca41218189c8ea6372a9c6cb407ee60843952528","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.70","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-joSEu0IwP/rOY8mHcQ6J2MEm5GgsvVcrNDSGg2wQiV0epjsq6pNvRk4UA2nqV8aK0PPL+Z1Z/uD73bG8swzroA==","shasum":"b389047a844ccc84bd185f480f52d2b6306a4cfd","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.70.tgz","fileCount":13,"unpackedSize":158884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCxfECRA9TVsSAnZWagAAUkcP/1/ED4DJdPWWnMiVxCYE\nVWs6C0j9Km2pmBxOHKcN5WWMyw3bAyOFtBeKwzoHULoJ5KMfeTx9Lu+PgBce\n11kj/XoNTHSAmkhPLtL+0TFfU7CAn9/qLTd6s1TuTTzPiK2HyByJbUdrIFf7\nH7Zgv/MhDitvZGkqZ8YiaWxQPSJkrYaQv4ek3vGPrkTKBPNc+0w+f0gaFgE1\nySFNsxLfExTY9nVpPEVbd8g5P28y9a8RV5UssfjWjzNuqzshRHOTsU1h7ukc\n6dal4oTEkvyIsxg4OCaFFlxocCBnpSFnmeYFpgMYUXXT0BX4sj4wpLao21K1\nui4E3eQKgsakS0DS4D2qSZgAcb1DHeXKTJ618fmpv6j7uHKWhkoYOClJYdZv\nHli/OQ/WH/ChbvrXqFPvHzLtOICdr0ljv01FoTOrADoj2NgE4saBx3YMTDzw\nJoalDsBrEO2rfpw73ejhWKw6mmkKhJYha5FfpBhbLUoZ1uW+HTYqUBAQZY3C\nSmbir8gnyDtfpsO+SUazNatNDeMbrwH2ZZoISAN39ydR4JL5GylIkHXO3M8L\ngKYoNXF1dT2uqEAgUqMqXt9HBKLP6eX+SZLTpCGQ6pDgr9ekgh+FB1N7ztl+\n3mEUXVluzg1onZJjNwblpxz2/pmZLu4aAAYWRkF3ZgM9t4MVqEEfyfeMdETH\nT087\r\n=4AoJ\r\n-----END PGP SIGNATURE-----\r\n","size":24784},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.70_1644894148546_0.4167292311596795"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-15T03:02:39.898Z"},"1.4.71":{"name":"electron-to-chromium","version":"1.4.71","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.949.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9c09571cca4b40e9ac2140b4930be7c0f6805f4d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.71","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==","shasum":"17056914465da0890ce00351a3b946fd4cd51ff6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.71.tgz","fileCount":13,"unpackedSize":159182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC1AGCRA9TVsSAnZWagAAYmAP/Rr2BItaSY0c+wQX6yJY\nNjjytaUWrq7wycpTlHx/fWl3UTINFJAxrZEX6Fc6joZgr0w8sJcJDC2SpcLA\nxY4Av4ePdzkzHcI0tJnUKNTVgUhm00gOV69pQiC2hCKb8Gx8CLlWOGY3HARw\nwyCciphFhtt40QTOINhoroG2FXHhW90ExzAErDypJTWFkV/EOFrD0SwO4ox7\nSZ0iG+asUFrnGu1UAbxVJ5I/qtRbPT33s6inwkI4c7RfvWsmVsZX12k0TmI0\nV32ehLbJCeAAgs9ok0s12d3xEurcQDdM8s1D7xTHW8PvsGIrO4O16owxPTVV\n5tBnyUu3/yMvTcp1XQHp6ijsfNygzc28NIiWrxuRJJRwSSLxOuTbS6A/0Beg\nQguTjKf9pyNOigItR05Trmw/fhOOqkQDJVZVOlkexbI/XVe4Pl5dhu8ijUQR\nJGxXnnLvqcRlV2wFxskQSgKgH5D0M/1MfRks0EHtVH5MwaAUI4mmhtK5vorB\nrPm7Xr2h2rPhLhdXGA/jYPjuO3fY8dYoH1zStV4UQLwpdJIYLDIIKkT6pOAK\nikz2GjLMzEqnO5mKMP/eRx0XjraCSNrCwglRtvH2ZFNBmy8EjFODw66Rzsc2\nXQSDgUQEbqknogPVuVGv+syJo+AvxYudI1wdz3IJzUc1t/1E/2ayMO/o+Rs4\n2rCI\r\n=syfp\r\n-----END PGP SIGNATURE-----\r\n","size":24855},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.71_1644908549914_0.25557912506631"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-15T07:02:41.914Z"},"1.4.72":{"name":"electron-to-chromium","version":"1.4.72","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.950.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f603ac595cb0e6e465bf1e58c50634058abb3ce0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.72","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-9LkRQwjW6/wnSfevR21a3k8sOJ+XWSH7kkzs9/EUenKmuDkndP3W9y1yCZpOxufwGbX3JV8glZZSDb4o95zwXQ==","shasum":"19b871f1da8be8199b2330d694fc84fcdb72ecd9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.72.tgz","fileCount":13,"unpackedSize":159402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFvVEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr89g//aCPhLypxzs7knWRYq5T2fwv7vE2zD+9w+tvE0w+8DVUrgoAw\r\nMpAx93sQZvZJhNofmGL91MzBIwrBU2yXHRBazG1qDADjJDNFgicCXpo3lQ9t\r\n8KM96U2LVQPsrk6ExVI8bOXjTeYsX3kP6yDWod/4NIrxdYbKcQSkHJlXhB9P\r\nQiqhboJQD8IhX0aKfmHMakdvOvwjypMUHsXLI6RV0leUI1hs2QE39P6d2xq/\r\nlIZ5dDqvGc2kuq8N0TlZoSqg93i7FNxtW43E9GMxQUK4zu68qBwAOXC9CFkx\r\ngJABubDDPkMcVTDddvX24ZIVe5PN8Kr1VtMF/rrrzBl1j/FbVIm3oJSROSBL\r\ng3rjKjrjLk27Jtjq6AlLhGPyreI0eRL9GlA+gQcbRwac1WdbftrIKAtAJSek\r\na/k32amnQRa4SrvImwkauxUytbePQGhXSOmPxmVgiwqXu8aGBMdlS63vphKb\r\nD9WHRKLmBEfhhfUfMnrXgaFSixANK/jQl3NkbJrzhBYPQXztbeG499N+Puhf\r\ndNF+IvCyF4wMSGtxHCWzDA74/C9XxuKXhakB/JBgiYqKf7gEygNAkupkxJHZ\r\nRYD+gwNS1oW4ehXpyy0FGbaeYDG2id4Gk753ijrXsLmIIZx4lI94Rh8Yf6Yr\r\npuiEP8RNMAOnnuaUUBTFNuB+y9ardQM4MNI=\r\n=Ln7l\r\n-----END PGP SIGNATURE-----\r\n","size":24988},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.72_1645671748003_0.741435004887236"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-24T03:02:38.606Z"},"1.4.73":{"name":"electron-to-chromium","version":"1.4.73","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.951.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a7686d0f1b0c685ded1d01ad4a07ce8864562bff","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.73","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-RlCffXkE/LliqfA5m29+dVDPB2r72y2D2egMMfIy3Le8ODrxjuZNVo4NIC2yPL01N4xb4nZQLwzi6Z5tGIGLnA==","shasum":"422f6f514315bcace9615903e4a9b6b9fa283137","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.73.tgz","fileCount":13,"unpackedSize":159504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGEbDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYgBAAjVLvEe+zhqxdGUTqbDPD25i5jA9My/qpEnyQY12eLEBYpBzK\r\nJfWopdfa4OabARIsCaRivOnd2nQLJWtP6SqAoseUBXOJBqH+nqVA19dC4hcZ\r\nztJhyX1eHJovBGSxuJcNLbtn+JeJjuVHdkbQQiZRUVcePHH5G1+epLkk1Cmj\r\nl54lUMHRtOyv9wHqASAkHWYPa37t0iDDqrMPUBrdEOj4osPjLSBh7hMeAo13\r\nHu6Rz0NVGFR64f8UfUqWp+STFBDhazcfZBGS2Zv+NaYpmmi4AaiVi8NojYTM\r\ndUFXTpqhF3JEF4X4kXxbbIgeb81vYAhvuO80RQGD+Vrsk1W8uMNEGBq/Z2NV\r\ngw7aZlNre3KhwBGZYbJUw7wLOsFV7U+tCrSEgHH6ZDeS2vlEKIU1ZRiZWZkw\r\n/ucTgXeg39b3b2nShIFppBmMusy4sASVrnO79V2BYpBUyl1YMMPbvsdc2voG\r\nYFgGKFw+v9AQHYgIq2UpznKL2tsqtvYcMOAhkQ09Nq+G9Yd/RYt/wbJpnsqP\r\nsUPorjFRHmQoKO/pev7QMaJuEizxlnxBc9e+0v1Oh9ayoEXQ9a5eaa8QdiOy\r\nkEXGmTzE9WeJHHSBHvcBTLU9lKEfdwQ/P6FpJUnAcAsE6mZ+eM8LyZHgCrs+\r\n6HOhqGXge+ZCUBMlnqdOaM/dXFp1Kr7gWI4=\r\n=xUy1\r\n-----END PGP SIGNATURE-----\r\n","size":24996},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.73_1645758147464_0.007985687520251528"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-25T03:02:37.510Z"},"1.4.74":{"name":"electron-to-chromium","version":"1.4.74","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.952.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"bf8f87cde5247ba0fba307d5c718862329130270","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.74","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-DvQ20M0I4dIH8KcAo7n7E4OEeNafZ1N8z6g6ck+ALCM0ZoV6mpjaX6ekjs31zKlqPzacU3lmjG9PZEa1mQhEpQ==","shasum":"f444036a90ffe75f6423b635e77edd4cc9e6cb2f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.74.tgz","fileCount":13,"unpackedSize":159606,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHRxEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpiFQ//eOiCyWqYpI2F/0/gzIak9pbEELPVX2WknwhGTGwNYKHllFd/\r\nQVtuibfk9JkZJ6MaAMAil8hEegYaMCx207jJYqmJhuN43kwpFY9NgG75BlCJ\r\n7gZg3jRRgiFJdWT2W6E+tBjM6UMEu+I+qwtOv3zUcePq5vZoVxVjvYg/dq87\r\nUqMO7cf52K4mqv0PAssyXULo2QfNAG8cktZpM2OUDlF63VAxC6Wh/OILkUG2\r\n6I73KDWBdoFAwI0G3o0brFlYVXXsVi7Xh4QBNEIuNdWOHzOGlkhUVhyMxjT6\r\n9TtbYXrsFvy8qQeGpjMh52QS0S773vV3q7Jr2RUBqMMBKMgHSizAlLAH3elT\r\nHZh6oRbE8IbSn7C6G5I2KP2jWPsxYPpLRQ3KxdY/eQO3U++VGOolBp8w5Qt0\r\nJUeR1ncjZ+Fw73W1B4vxn4j4ynHf0zLr/ui4vovzoNeZjYy9Xorbzt0nLua7\r\nY6PgoA0P7/6JvqrLf52uRIGTASf5p4T5kYYmEUeDP0teey8KiURF/7rRiCu2\r\nVms7Z9I1gtQcGA3mtq28Ww/UPPZ+ZaAkKWvizgmh0MQd9WWdNnUnW+oAbFF7\r\n+dI6mp1njolcAj314aqxWiKBomvUVK0K8ENR4SIUrr4ZdBBZwJKmPUmdZ0ec\r\nTOi7DY5XMO7lAoMVQJlqKcFZ1XZWdL97Lxw=\r\n=qpf3\r\n-----END PGP SIGNATURE-----\r\n","size":25014},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.74_1646074948041_0.21751519232048433"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-28T19:03:00.709Z"},"1.4.75":{"name":"electron-to-chromium","version":"1.4.75","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.953.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"213ccecace0da7a0e4b2f75a7d069567c50a2b7e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.75","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-LxgUNeu3BVU7sXaKjUDD9xivocQLxFtq6wgERrutdY/yIOps3ODOZExK1jg8DTEg4U8TUCb5MLGeWFOYuxjF3Q==","shasum":"d1ad9bb46f2f1bf432118c2be21d27ffeae82fdd","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.75.tgz","fileCount":13,"unpackedSize":159705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHcUFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrPQ/9HA92gugaFh4FehKE+IeTEBINS91/WDo5DHus3xLmJVCfCsSe\r\nyotwCyUO7iLKp98S5JQI07Nn94m7SeG01knx3Q+4RHen4JEYL2dg6FJF1Y2e\r\n0TS4/fiXGynV5hiW6Rh/sJYfVWonAaOSHK6MJ3TZ6qBdXPwuwzi8yjZBsSAg\r\nkPAZjBM/RplWSHNxL+GGTqCA8cDGnfOA8ImDzRLdppB1Ga2QfqrawsGl9Dds\r\nVGKV1PZQJH769qwpTir4m1uLqy910A1QtzYquBLWDysoDtUqoMPv7AqSjasG\r\nd4Kiml3yYaauw0RJp8VEX/rHLCATuJkklYo3n4TJG671wL14xJHP+2yh4Q93\r\nJCERYpuAvsRXFuQWQMNdos3pttJNef4iBDt8eXsKyYL9J/VA77SIzpVTAQHu\r\nwzhMsKHBuIj3jotOOkDYfGoRwFCBk3V/Qrq7j+q6MM2aCQTSKkdB7POC7V8A\r\nh2eYkfdKi8OToDUFuNw+H7wfrH+DJN2CCjwD1IAKrrRuSOQdBt0jMaQloTim\r\ne3A9QLZRGZU9coJ6V9dJWYXNkpAUFnhtmMrg6HkUhYWeTAPlTrU0wVCXBrPg\r\nL6Z4yXeLazgnFbLOR4dXtARkMFtT0GPxKeyjk8RSowQ7O0sU97nRiycwpJsy\r\nGTVlJwlmiSHNQFB4pxpOmiONseEjs/4uIHk=\r\n=41IS\r\n-----END PGP SIGNATURE-----\r\n","size":25027},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.75_1646118149484_0.5694533103619324"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-01T07:02:38.704Z"},"1.4.76":{"name":"electron-to-chromium","version":"1.4.76","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.954.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a648294cd85883bd377124d7fd3c526d4fee335f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.76","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-3Vftv7cenJtQb+k00McEBZ2vVmZ/x+HEF7pcZONZIkOsESqAqVuACmBxMv0JhzX7u0YltU0vSqRqgBSTAhFUjA==","shasum":"a0494baedaf51094b1c172999919becd9975a934","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.76.tgz","fileCount":13,"unpackedSize":157598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiItLDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqojg//bEH5KOY9WBM7/PXX7VKSVMEP0+T7uLGUm+QU7TuiYeDAQ3xd\r\nVsxu4ljBQT3c13TFMQmfC8cjOhBU+h4Gk8TK7TUXvpWwksQSQcIXrEN+zwf/\r\nZoLVvHdIqm9wuRNs7nsd9jFer1DOZAbKT5FelW4a+xthbwydiQj1lG619u2b\r\nuX0w7cGK+BZYH4YwLymumxoOSdZ7+un5MVYIqiRbmZXvyIS05HrlKtzFjMgu\r\nH3ZtK8NyMwHyDOMvv0W/NSZXVq7KFLklGBQ9WA440SaW60GgG45BT2KkIdy4\r\n0LJuppG8cytDLhBMbSXohRz4uHals8ebTz6ngo8TFj2qvrLQxZ1p+eE/di1d\r\ncIVj1bQBhZ8hkDeYaheFVqUHNgJ9bWdx1ipV+YrrBRBHnH1/kIx8r7jW45Yn\r\nzHEBG1/Nirj57rBFc9dpeTLbm/71hy+/dIwF1QKj7eMtHp1PLD+GjQblhMiF\r\nc1p5u7FGudx6cpulaUwIRbbNCUxmfX9HMmTbM9h6WL4NU22vg8Obqa8JGXsg\r\nkve6W18bbAe02vWoKg//qEfuiJI1HrlWDb7bqECK817XNgLRcZGOIj2KnkVK\r\nm3ZIeRcfTHgIF9NGwIa1z5BHrf8V6HA7d618CNf+HP+2lCKVNLeM0uniq4hU\r\nx4C24J991CASby/Zn8ILlHT8q4t/m5tuNFI=\r\n=Y7wj\r\n-----END PGP SIGNATURE-----\r\n","size":24498},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.76_1646449347478_0.4869822557701715"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-05T03:02:37.202Z"},"1.4.77":{"name":"electron-to-chromium","version":"1.4.77","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.955.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e52daa161d5dab502f4705af4d5021061d6e5bf9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.77","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-fiDxw8mO9Ph1Z0bjX2sFTPpi0J0QkOiwOJF+5Q0J0baNc/F9lLePAvDPlnoxvbUYYMizqrKPeotRRkJ9LtxAew==","shasum":"c26e454cb8721d4ebdae3e276c57cd32e51c32ed","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.77.tgz","fileCount":13,"unpackedSize":159820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJsdFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFSg//ZXXTlHSVj7zIsU8tPc+TXInQA7w0LvVZiIihEX5Q2febzVxP\r\nehm+fP7PRMmTdLlRBTLAxGE0A3qRv5+LxPFVn6FSD80h3ATn+lM2Kb1/f5Tj\r\nbSFSDnuyI1R6tEjwrwN7pcZOjCvzQg0wTfeX0fNCJNCcUy5SswVvMjGvPSNL\r\nLacwHoWPnQu3O4yDPxwIaECqecKRuc/nEyY5aPgqfbfohp0zqIqt5X9nlKls\r\ngzdKmUvWyPtN/OzUYgeb3WIQ3pwxGQ3GXrcCAp8tdfHs6bN3z4Fg5R9KEBPY\r\nMTJ1v27u/7rH8d5Ww0eTzAeZdlcl37uhAgeHFZRa3D1GkFCmFtocNFRBFeUM\r\n1lLbZsbRT/HaM3CdP8YKa11Nc6CIVI+YGmB8mFRdIWAiKpk9NteaNQQQUCHg\r\nQZU5LYkJ5y5idj1Go2oIX+JcNAAREJyTRwT4xFDLbOv8558smOYxUYpWKC8U\r\nuRMNISOfy19tvwu0UFjddb5ObLwbvwTdKRoJGTbouq62+j8eCbZfT0+Vcd3R\r\n3KZEFYciAVvcw922nn8zfDweMGt4tZ9k7Jsv+uJTJIrG08aQT6szxcUAFrm5\r\ny54zFAOCUxTI0FCAKbFrai3l0gcDWuIdoobdJarVOY4wMk+uVEmprU/NL90p\r\nPYyCAiQ9iNmDcOfiwT3DYrDUSLSvDUIMMTo=\r\n=JVcS\r\n-----END PGP SIGNATURE-----\r\n","size":25059},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.77_1646708549445_0.7251687925247796"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-08T03:02:39.311Z"},"1.4.78":{"name":"electron-to-chromium","version":"1.4.78","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.956.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"baa325ff1b2a8bc0c0be2a991a34e5a4f4653820","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.78","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-o61+D/Lx7j/E0LIin/efOqeHpXhwi1TaQco9vUcRmr91m25SfZY6L5hWJDv/r+6kNjboFKgBw1LbfM0lbhuK6Q==","shasum":"7a1cf853efafde2c4cf6e86facf3e5792d3541a5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.78.tgz","fileCount":13,"unpackedSize":160130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKBjEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqaQ//V3JCQrDDEDnapQ2oROiPBAsf4BernhDRqWVK3yQwoDB64M82\r\nTQRst7EB97b7D9u4GlVDCPxA1fS7YUMeqJtXfZaBxpRyWkgd/hZb4umEemhe\r\nWCE5rWAHz2DKFcfQsbtPTrpDxIRHoPiOyhu4QFS59tOJlCjRJI8PhJheC0F6\r\nQMajiMAvOybhO+IHotw0dTIMbrfV0eUkCIL7mo29oy/GaX+wmx+RQ4ACAh2z\r\nuoKD7JSZfErp3wCMEyFZkJBb5bmC+09Kb0J6tcRaMy4VaEuLFKwTa8Ge7lFe\r\nPAe23DK1tWxiTJX0LXT67UNIigSaSqtZKkyFkrPrp7Qt0LfaTW2ocGksCl2x\r\nGdYnGQnbhwIUcBC8rsII7xKF19OEZTzqXbdzyA7/rHzQgBjQDrjaN6umy4tV\r\nzLejI488xFRIu3jsVHQZbBbmMx0rAk5zR/TnvI0tkMSY8WnSzfnbsGkHCiIt\r\nXYVzgakvyZBc2gGnHuG9HqDC4EuLxaoHpIH/B6w2LLZZH8gxXwqSquDaoEVc\r\nbf2RB29YFw99FGYMf0DyPMcx0KJNalzYjxjqS7rTxjM+2Vq1F5561oMtmuvC\r\nfNqpD6BknmJ05TrVlNKQ927R1nwme/osM/Hp1jrj3Ay2Q6DAk1VToMW9ylHl\r\n5BYP3OdW+4I6MPNSFS5KeszzQHw/N3L76I4=\r\n=5D/H\r\n-----END PGP SIGNATURE-----\r\n","size":25146},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.78_1646794947981_0.5409496843729606"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-09T03:02:45.503Z"},"1.4.79":{"name":"electron-to-chromium","version":"1.4.79","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.957.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fe59e63a49cd01922edf742d059bf4fff7c68552","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.79","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-nWfAxof87mGHkbORCwVRPst4FlSVdprOKS6dBMrcwn3sjwf8iHXEhsu1+FU5Psd7Ps3KKeBufAdfsPK5BmbSUg==","shasum":"02b504e1e6039b2e61edfc5f856895a0927925f5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.79.tgz","fileCount":13,"unpackedSize":160270,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKPnEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrawg//R52aQe+o+1PWtoIxbJHBRyAvYJ5EwPo8a+8ZplvxHpgE/kuL\r\nT6QDAPqu/tP6Zv19JHA0wtllGx67acVY35i+tTMl5pb5oMou3A6lHi7oHJKP\r\nJDRo+vm3cd3OWV3sD9T9xLBpv4pVKAED5Q7vEah8Q0aYtehVAC88GjzxYJg4\r\neCgot2UTpP7pvaO3s+KSH1NTOLEj1zagnh95QygkT6DZvAvezzTlQHVW6aot\r\nx1Kyq66yB52jAQmRRSRHsnUrW+JJkqlrW+zXvqVRIoxlLrSjHv21TNsPva8q\r\n0y5GVuSdbyDoebarPQsgYJcU3Oxo1tNkHaaJRlt7aLF1RyDgEQSExGfdXcJ0\r\nq2pOIL02eFaFEoqum1bCGA09oENgzVBaG8+kOWYPS0Yn2ERuBtkBULdrfjRz\r\nFPeJMUQeAPy/FL4L5vXoNX4DrPwaRJ36/Y5bIWX1dXI2ChZigGQSEs08sXDW\r\nIUcYMmsvKFYN1EZy/qngd5UWjQNlPw7dcxupgwaV6V5L8uLShLnd89kKqY7M\r\nAy6bJfj/IqT3/gd3o9sLmE/29nUGdsZmb129Yz+9Y9fty11Gnpqud62h42tV\r\n16TPZXx40uW33UmmP6tPkGjssL2k6UfjIvyxlRhHz9aiYSLCdFgPwwYk+B1w\r\n6DzG1DdX5PB+FysFrFhWfS68UstpiWuoUo0=\r\n=iibK\r\n-----END PGP SIGNATURE-----\r\n","size":25152},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.79_1646852548387_0.4382493092269557"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-09T19:02:37.366Z"},"1.4.80":{"name":"electron-to-chromium","version":"1.4.80","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.958.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3c0c53bb603a9ad0b4c2c556f0b5e5696d23419c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.80","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-COsbJCGVYCc/aAY4cd94x1Js3q0r406YKGbdL8LXHg0O9dEjuFEFU/vZneRxBxKo/f1lLHi0YyAR7sbFM+i8Bg==","shasum":"299a1ea3e32810934b4e3c2e4d4cb53136fdab3f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.80.tgz","fileCount":13,"unpackedSize":160589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKWpFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCeRAAnxCqeGxqIhVr8aalCzlHlXuWjbQYPFfauW4fhv1QSSxkOc99\r\np9iAfaMaorhQ5FDQDqTvrnbE0sW2s4dAnefTYuJYSSNDxt0uJVotfb6VZMmG\r\nd5wVx5vEUW1jA7yB1a6y4uEwL9Wd7l8nGJi6iTwCcw5heGqjC+9ZP0xRZ0bo\r\nDqyZ9Np1Nh1RBLe4EQES7ojo5ft1kaT8RO1vT7iCfZLGwK9l7BHZOUmtSL0S\r\n6io0lZ8HrdpWAr+V7eiVmPHLAYryRG55VHOrcUlvA16zvy+cM+eL65QgU+pX\r\nuxBvHI/OKe0ErkyKH+Wh9xEyoZr2y2Wo96ZSlX6fhI8mdoRzBjvQBnTd0iT5\r\n6LyKenChT6h5O0rWt0p0QW7sSitESpp3cYD2IaHdapq7FmgGwPoy1ve5O02H\r\n/SFHd1pdyxcscQKFHwyOfSiOfVA9qDSlcUj6Q+CUF5ELMQH1ettRMKQnpU3V\r\n78ALZIYLZQaR7ad+EiJcew/mvr9PP41mCXiVJwurNJy8YM2KFJ/30/tz4pPF\r\nrHAEeVk/5K1zX1qreU7/AFtGrjHSBZ4+fG47ScQeXjfS99YBqEwdEqYnrhuA\r\nQxff8OgL7UxvyOrkUnPQz5HdKP3UPL/ms02T4DS9QVZ9tzmNW3Mw/sRG0IEV\r\nX2Zif80Knvw0cFZpbWvLObUcwwLA5bKLPg4=\r\n=TeXh\r\n-----END PGP SIGNATURE-----\r\n","size":25189},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.80_1646881349460_0.8901360347118448"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-10T03:03:34.557Z"},"1.4.81":{"name":"electron-to-chromium","version":"1.4.81","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.959.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"197181c19d89000b24020105a347d1627d37d714","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.81","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Gs7xVpIZ7tYYSDA+WgpzwpPvfGwUk3KSIjJ0akuj5XQHFdyQnsUoM76EA4CIHXNLPiVwTwOFay9RMb0ChG3OBw==","shasum":"a9ce8997232fb9fb0ec53de8931a85b18c0a7383","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.81.tgz","fileCount":13,"unpackedSize":160829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKktDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkvA/8C5xVmIMkaSIV/Zmg/xRhHdeFVPU85d0LmyF6lCCkKMMpkhnC\r\nEDFnRZQt/exIiHcTqrkqQ2IUhrZSBkFGz/yJqijIJZd0e2LysO1rrRsKog3j\r\n05eZeJHEpkGcNWT8oexxKl+2SqDVhjUqOk17ka9XaKgLPt7BV8jeus77d5O1\r\nKM5Ws46d5798z7UUj8dUfhjqPGOQfuA6t5HKdOZ0C2AtGeicfvsL8rIGxIBC\r\nHS0m5R8573wY/YRJeL/aPWDAK0OmS4Py9qay1x30tVoaQs+xMs4eJWOYSdVC\r\niEiU7p/I3ABY+4Ff3ZdytqinTIoaYguOkK3WdGip32QQ2tlTg669gr9YxQvV\r\n9f98hlom7yfKUdtyQvWjJux0IQKXKGbR8HhQj5aKQ3iplOKHjUSxW4ZMRWX4\r\n8zlvL3jswz3XxZED9qKrGUuUmTlXwZ8l19oA6ITtSQaKUoY9CcOJlEPeZwNB\r\nnEO/acVSJijoJpMAUY3pZXNgB/m85KwJFJgvyDJhnt9KjpNngaRv0Fd6+8YG\r\n27y3c2yLAxVlwxCN5Q7/h2yXwrjZeWpt5czkDky3fGSyw2InL1LYciunW6rU\r\nD+gFwU+fuZKn+1svbcTOsfBOgQQbRnZS8YYFvLNokAOaK12Z04NQMZ+kkdKS\r\nYTWtbysFdToaxZN7VOfdTwC0Tq5momwyJSE=\r\n=Ohlz\r\n-----END PGP SIGNATURE-----\r\n","size":25211},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.81_1646938947688_0.23047632939116625"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-10T19:02:37.409Z"},"1.4.82":{"name":"electron-to-chromium","version":"1.4.82","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.960.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0c7e1efcf402847f8e148d4e04380a7a4b651e6c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.82","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Ks+ANzLoIrFDUOJdjxYMH6CMKB8UQo5modAwvSZTxgF+vEs/U7G5IbWFUp6dS4klPkTDVdxbORuk8xAXXhMsWw==","shasum":"51e123ca434b1eba8c434ece2b54f095b304a651","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.82.tgz","fileCount":13,"unpackedSize":160969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiK5zFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqsPA/8D1/ZOVY0bbvC2j+6uc8XC6vLMLjiKLb42tby79PigetYURH8\r\nNLGHxPHWdmuRbxcnd9umc4RUAGRvRmu83t6oCWquC3SxhGa+qxGufhbCSvQE\r\ngfDKvgzA/ASyPaBbSLX1CSj21/RlyJU3EvLr61VPs53/5XZ5Y0ELvTb4q/rY\r\nYmwyOn1O147C9GrKEbt0YXNu5Vyl+acXtTtP4mDrfU7Gdp9So1hrsKLvcoNd\r\nGnewLJcCAnbEpx9eaG2KmhShq8bz1ANyz7dp4o9JI7/lMOFtsbDu09qqawVi\r\nIEmLMqNavnfdlffpY+eGBeEQzaYpdpTXGKsKHe16UrZ0rbE5CZ54srmlRpVQ\r\nRscJuApbh4IuG9RFaODS3bD3ggFf4YWtBL1rijmN+bpA2kcqxnduq/xjgIwN\r\nnRJA7NS599P2hHre6u1xKEXLlkH/3Vv8IsHoRyc5llg24vdIQFmTQE9siU94\r\n26M1vg1v70DmUO+OUU9uZKqZOY8oVwSMlJyeotEMT/k3bEN4VysqRi5r+opB\r\nPrCEJ+uhuMNcuVtnOXfXT61uRDu5jIsE28Y8rVKoV4RsQNb/2aj5pQuhKM2p\r\nGmyzo2CSFSAjQqMj5LF6lku7buKc0w8eQpgU4UXrcDggZSVogjTuYRZu5TDZ\r\nJWJe9NxcFLtDCPF1g04Z7KEgiBoJ6bDxcFg=\r\n=OA1n\r\n-----END PGP SIGNATURE-----\r\n","size":25229},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.82_1647025349815_0.11214222848982769"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-11T19:02:38.838Z"},"1.4.83":{"name":"electron-to-chromium","version":"1.4.83","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.961.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"492e2a6bc5e7b078d8b6e228da2eb924087fe0ed","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.83","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Wm15TA5pLMOHtsik6uQTVyzXG8IpkVxnXAoAqV4+6zbJH3n5qnVz3iNAW+65r6WSrrYo0w6B8JJ0lcv2NhSmXQ==","shasum":"24a2a7687786896c758e7dd22f218fd3f0ad1e67","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.83.tgz","fileCount":13,"unpackedSize":161109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiL5FDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSLg//ZwJNcxrSOXO9PBFPhl5ppQ4BLCU9y6pfopmieTj3GAmWH53Q\r\nhsz7SeLR2hw/28ntaKjXC0P6M5HfaCy/EttkVfAQVI/TkAS9Z23E0x0KU9Y/\r\n7t1RKntIJ4Oi3NlISE69iKjPVlZynFwYlaUJv30g70DTE9vSu8B4y1ZxBNDr\r\niFFQM1AlGQmLLlSiiOZ106310hJcWk6LNsScLKTCoPDZeb/jgbqhmA+wnc6B\r\nTIdDUKHNYW+7xMbsoYtrVrgKRCOl6Xd97594/07ux2NtLOP6fRlyeNDQa5U3\r\n/nb9uP7WLLO6FGBEQyruIYR92bhfSs5dGuTpDnq3wDYo7QD9qyzx6rYbzyIr\r\n/NsnKBOpYIg104Gpf0IJBTKEdpZoJ+CqpBPE2p28hD1lcn2ZAJEXUxA/+MY6\r\nxiySczI85YfWZoMvIezZ1Y4LoBDq1WoRGPo3vKezNdFw2c13JtgkqNBd73tJ\r\nsrdoYlPxSvbsZg0YxrSERK7X5qII55vZ6oG3YCSdz1E8GR0R1Iska1dTzwCy\r\nZHLS3qVGWs9HZdU8LQXsfkz+GAYqVN6HYyOOOLQFz2pTfChxL3yCkJ36fKSO\r\nxozuuCI/zGYTaGxhAPDj3poEY60/XGrcPstXh53TKRKO37MYE9l/3hFCPaHW\r\nx34WINuRvKVPqiBKx6G9UN3AAs5wrveubqc=\r\n=X6D6\r\n-----END PGP SIGNATURE-----\r\n","size":25236},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.83_1647284547514_0.6968621917867881"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-14T19:02:35.414Z"},"1.4.84":{"name":"electron-to-chromium","version":"1.4.84","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.962.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"248e9b6f9d1b27bbaacabff845d1e1f61a58589c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.84","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-b+DdcyOiZtLXHdgEG8lncYJdxbdJWJvclPNMg0eLUDcSOSO876WA/pYjdSblUTd7eJdIs4YdIxHWGazx7UPSJw==","shasum":"2700befbcb49c42c4ee162e137ff392c07658249","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.84.tgz","fileCount":13,"unpackedSize":161209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMAHGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZuQ//SIA86D8w29FkmUjT76uZNJai8yctGe2eyF1HdDjzLWormZjI\r\nepizyAliD0Kk1bYDe6bK9ydoipb0H4blsRW1TgPnMexvAjAPq5AnbZ0yL94D\r\n2PPRZJrN8fPq3FlEMlIdVD9Blppp/lXpVtx1600y358CoCq0aijd+VwDn/GS\r\nAFvF+Ds0THURkPUX8X8QwTQrJAVFURZOUrDycO7WNnATX7JEwG7BnauNPb4A\r\nvWEaetdSVoSl2iHct6YBRhCgwPGYqJG5XlcHqSAkMe3vShD2fVTbvV95LosB\r\nJHnKobo9Q6ponvFfk7TUIdRWTLiQHWNyxTLxPywghyXKB7ANhaDAqqYDHan6\r\nQXAoRVqvHYcSFdRgdriIMJ+KZ4hTKSxYFtDKvo0szo7zzlu2uT3E5oVvTsCE\r\nUXsn/RzZJ9q3Z29vS9LL/CcTEsXz+nEpu4MZ2pScwxU597CezPuhNctHX8oG\r\nC8MQaZCaqFUYj2sVwr/XWAYnrJz0ZH1H9gvHdeIjVrWHos+FUelNbIsRykKH\r\nCIX90NCVXFZNLaJF7dgcVhXWoj5VVdbRyfFzfH7adAGyTS0MLpSLIGfCS3vi\r\ndx4oqkYQzl+XwVGn6ndw3meMN/2a4Nz3hdt+KxP+P02hIuZyhRN0uhzo6iz5\r\na3FX9vOLtMT9V6ovVwJvjL8+XF9SX27pFJA=\r\n=cj5S\r\n-----END PGP SIGNATURE-----\r\n","size":25245},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.84_1647313349932_0.5056169110365965"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-15T03:02:39.428Z"},"1.4.85":{"name":"electron-to-chromium","version":"1.4.85","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.963.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"10939c9f12b912e72e2a4a6d8bd66fd6e7bbdabf","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.85","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-K9AsQ41WS2bjZUFpRWfvaS4RjEcRCamEkBJN1Z1TQILBfP1H8QnJ9ti0wiLiMv0sRjX3EHKzgs9jDnmGFx2jXg==","shasum":"a3666ba42147026b9f34d4d8d4caf0740e80f751","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.85.tgz","fileCount":13,"unpackedSize":161349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMOLGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqmsg/9H1+TUNHKhhpWDAM9xk6wFLTAwjgxxiw7WNDJbEbzz/nfoaVt\r\njLp92kUfn26IgtI6J2I8ReZzgssrD7Mu0QW1SK+JuSiZM3t6ood4EXskvruZ\r\nkMkBgY+M4bIgFpZ0ALyoYN1U5WVcvUaF1y7LG40yVgs7lTWQ/dT+259OObu8\r\n6m4hmI+9uO0cP7yEhdZtTHnRtZw+BbsWaQvjSjWjZmR2BZgIB+KNZ4DgF8Z5\r\n4bottnmwF8MzKa3qxsOwvzoiHkvsiNUowgGoPBJWtl4fWiBWGSxD8hVjttIo\r\nc29qw68TEc9qGn7JgA6nbdLAuSgm3/8vOLfSdNUHyO7xoUjkC0iNG/gpTVSN\r\nYrwSFA5ULMyohAoBROIYnovuXnDQnM1gcKmIFEX+ft8evyXWVlFDB5ptFXW/\r\nYSoodWPorpcGkx9ubZYPfTGK6rZu4uZL/FQ+2yFGY8u5qQdMPW5qw7cZsC2P\r\nMlZOSSR/tOmjiXhn6Z86OtHz626FkCe7nYrMQMTSOzPlENZY1LAVWBcSnJq7\r\nNurMK36AejpqSxvwkv9aTtN6EAq/uPHSUMdDUnLinSINzAFb5jIpC9htom67\r\nS1jyA4bMkfzVwu5MAijYJzhes5AfUyvO0+afZU2GxRlh23E3B00+XHTyJgve\r\nKpuNfrnvV6tXFKghxMaSkf5tEEeGKh5svW0=\r\n=C1pD\r\n-----END PGP SIGNATURE-----\r\n","size":25251},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.85_1647370950036_0.5448909896624581"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-15T19:02:38.062Z"},"1.4.86":{"name":"electron-to-chromium","version":"1.4.86","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.964.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3c0563b7f6a18dbb4eb09efd0c2b8761d7c879c5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.86","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-EVTZ+igi8x63pK4bPuA95PXIs2b2Cowi3WQwI9f9qManLiZJOD1Lash1J3W4TvvcUCcIR4o/rgi9o8UicXSO+w==","shasum":"90fe4a9787f48d6522957213408e08a8126b2ebc","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.86.tgz","fileCount":13,"unpackedSize":161489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMjRGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3RQ/+PQdVELUBC625e6d8wejo/7ivoT6eQRGo64KkKNDKxtPV/JNF\r\nXpbab73ViD/ImP78j8IgFDM/p5Q0Db8y/7eFP/H+rYeFdJ9IZVCvLcGdvlGX\r\nXf0B8Xk/kwyf23pjuPXniLl2RJjPZsm+eGaX7AWyT9YWVCti2upYQuZYH/QT\r\n9qdRJyjZREvyCAcOBu7Y8oN2udl6zDtpAB9eiiwa9QCDVcFAMHqAGTd3g2pb\r\nTcNzOtdRfDTcUwojcziTZBok6ZqKZLbHOMSN67JISwmdfHs+d91WWJPN6UkS\r\nPBR6OUY7rFR7oHUilMvwTOVfBNDZ4G6V3uygrF4xBtNGBiFVVQ6Bse2D+/Os\r\nm9ueHd6L2VBrkejlrIj2rsSJwuDE/WaKCqCzHpt+12m2DjPmjlGMKJJU4WmD\r\nZGjLB94ATuLZH9BoNZIKAYh07Ck2WhmsV0VJ7F+pZOACDNqnet9/yKCYJGjw\r\ndXNrTcMTfrZBNLPD5bQtXpQXjUU18GKbjsllsSE7MSnqw2dzCJQ0GWM0DqDU\r\nyWXpeucEXijorgMpigWcWvwoOOvpm1oMZP0pUIpxGiPa8JL/9JxyWad3ifqV\r\nZBWmG/FA4FF3mSd/JUgoxZ6dTja+MdtN4/qgBdJfG9Mq2kdAaGvMhP0uV1jt\r\nz0IlPKz5A4PdfSyy93hN+Gn4Ryv2kLHhn1M=\r\n=q+sy\r\n-----END PGP SIGNATURE-----\r\n","size":25273},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.86_1647457349890_0.8707396910850891"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-16T19:02:37.725Z"},"1.4.87":{"name":"electron-to-chromium","version":"1.4.87","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.965.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f0968ecf6b2ba4cb1044d0b2c8fea20ea78967b1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.87","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-EXXTtDHFUKdFVkCnhauU7Xp8wmFC1ZG6GK9a1BeI2vvNhy61IwfNPo/CRexhf7mh4ajxAHJPind62BzpzVUeuQ==","shasum":"1aeacfa50b2fbf3ecf50a78fbebd8f259d4fe208","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.87.tgz","fileCount":13,"unpackedSize":161729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiM/ZDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrurA/7Bb3PvAyN8IlGSavPFMDlQOa93VRUHW5IjVeVRW5CMHreNZMv\r\nGIIHlOQItEadcsJ0OByaYod9b0QovLReQwpJGiIBdhKSTwxWeUOoUFy8U+rf\r\neR1k8kEEUGc84G4kkYjTLBYBGFUiccK3pV5OJx2ntrWyDXMA2s5OANKH8AF0\r\n5fg7OoCFiCKbUwumTC5VISyj6nue2BfaDsf6iluxNWjNXmpvcNNK+aey7WkL\r\n+ZFM4um2dpkSaaK0elJdt+PrYyjaQPbH9vBFLilbBsTpDwurU78pOwhFEPZp\r\nL0BJH+YbiIkMW7weS32T/z8Ph2Bwg81+7vqlfaG2jJ6DLu6hBY+4H+yUX0ZZ\r\nNNzMFGvY/PZa8aaBFNYskhmJed6BlJKQLT82UKbxGkSCwFKOdWxpbJcYma05\r\nKNC4XSKQzUKm6MZy0OXt5A3GBhl4efako6t1YF+X1eptaIwqAk4dwBf9LdEi\r\nqcYsXyDxPz3w9TXfyhFUNqVvFA3mi4sTAp8z9GcGTMBm3JRMgV6YyzykVEwB\r\nXclncmfHeTerclSApp6WOompgXbsRPr2kB8qSsFGBHi35MI3pfrH3hKDGhDZ\r\nRIZrJTgZEnM2G0R883nZXC8fpfGsdjJqbr1EOvfxMI/XN6XrMm95TVpw0apM\r\nIcikkCggtuNST5l7xh3In4Ui7e4PIuXGwTM=\r\n=bWbb\r\n-----END PGP SIGNATURE-----\r\n","size":25289},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.87_1647572547745_0.8239885343995428"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-18T03:02:37.418Z"},"1.4.88":{"name":"electron-to-chromium","version":"1.4.88","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.966.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"44eac2e228972a7d3418627a32755fbb903b40bb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.88","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-oA7mzccefkvTNi9u7DXmT0LqvhnOiN2BhSrKerta7HeUC1cLoIwtbf2wL+Ah2ozh5KQd3/1njrGrwDBXx6d14Q==","shasum":"ebe6a2573b563680c7a7bf3a51b9e465c9c501db","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.88.tgz","fileCount":13,"unpackedSize":161869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNNdFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRXQ//ZJnMHPFBLTRlne64b8bkYF5glV3sThJF3pc7+tE2fuV4Zhxr\r\nntuV7jidnmRjxyheS5+wz1W5Sqa8dYeyk8SUbNrxgeUzAfUIQKQWmGgR6mCG\r\n4mc4tPr5LwZULPW7q4RkcXNoQkq8+UFcimcPVAsiuL/ORHlC0Il0aGjl0Kwc\r\nMs68S+Hsp4Q7qUFC6wLZu9ilno/Vi2zzDBwadoqAbSl8U1EVvCLvZIYBG5Uu\r\nGVAF5Vyo5kDjZhvMXLmkBTVHwTGFgueDsvWNZkq4W1HdWNBL8JxtIyaojnbr\r\n++07vNlNZjMAc4lBAzUsBTyeiA2xBCea5XeoAlmL8GwUXvQJ6XVyOIyVQL2G\r\nUyKzt/84WJ4FYrQoruE8orSHikemO0WIXMWabVDdBGG5VzN9tQp/SLywcJ9G\r\nasFkEXJ+eTDYwLE4Au123ANUHUi1EmHGWiYI7Sl5gi5Tya/PWYPXJvpY0kZC\r\nb8sNAk0wn5Ra4NLNs1ZzgWCn4STE4pwGbG/cfbWVmpB03OhshAdJ8X/jg9cA\r\n2XprtGJX57MePkMU3hH6EfFnzqgM1OBSYltCUcaxCHc4/atc7PtePBkKrd/k\r\ncrrY3RPyxVqabhGAH4MFwBxyADCRUQfb5ZjRMpLvdydwNaMUcYh9B3ANWzim\r\nWtxzBEFhUxvQ02lS4cPIx+fK25eDjYiPLrY=\r\n=NVPn\r\n-----END PGP SIGNATURE-----\r\n","size":25306},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.88_1647630149302_0.8469104252425221"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-18T19:02:37.162Z"},"1.4.89":{"name":"electron-to-chromium","version":"1.4.89","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.967.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"87003dd2feb6f5a4ee84a99b6d3306c729886291","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.89","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-z1Axg0Fu54fse8wN4fd+GAINdU5mJmLtcl6bqIcYyzNVGONcfHAeeJi88KYMQVKalhXlYuVPzKkFIU5VD0raUw==","shasum":"33c06592812a17a7131873f4596579084ce33ff8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.89.tgz","fileCount":13,"unpackedSize":162109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOMvEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZdw//dXfvKzo+abhKkj3Ea/QGUdUxmhuU8wonbogBNeqg86GAkS/y\r\nWjGUatAfjWg0cgeUD/Dvl+hI1+2XpueFf0b+98fkJUB+5YwBBzY7OW/NSmw3\r\n04xaFHfYpukVMiDD/tEv6/l4Crf3097vb0j0FPP7AeXRkc3yoMqnDEYR6Uus\r\nkkwUgibFP7+rkTRpf7y5DH+qF/QW/x/WA/QjPYz0eyxOjdLsBriXBhNlI2Zg\r\nA3+zLlF/LN1ac2YnynJCHEPBbNr7wLINiS49i+9jvekPD5+ulCMzVgoCqyEr\r\ncx95YVT2MVfnDVtaBz0ngXytX6ZiVFTNadSQ3vPkYguGIo9T5vQkVdqFEpzR\r\n/VIhp3jtm0734Ig/qjoeJMl1+BEozZh7wArvH4rMOzHiN3rOm4DbjYBFF9Hi\r\noR+1sa+Uo06UfquGPGgFFQM99uBKF3Dbq2OKQu7uTC+5plI8y2lc1x+y9nd8\r\nnTqLT/d4/2O7Wya2dwA1IGAI15tPnbZ4ShE+omeB0+5zfLiw235GNGJuPAHS\r\nKLPFlXNsCYndwexAUoVH527+KTxIDrM9SmQh1UI2bqyhB8HHdKxKJV5Xm/de\r\nUS4MB2ZljHhDZXXWPjwjaMhutjcC0q1wv+eNTFXIp4oaDFXgta1pXHSOxPLi\r\nlCqbG2Uod9Gk0hSp1BybQHOZGcA2Rnw7HN0=\r\n=nh9I\r\n-----END PGP SIGNATURE-----\r\n","size":25326},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.89_1647889348779_0.30983921708818407"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-21T19:02:38.008Z"},"1.4.90":{"name":"electron-to-chromium","version":"1.4.90","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.968.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f87e799c2264b4425439859760935eb1435fe80e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.90","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-ZwKgSA0mQMyEhz+NR0F8dRzkrCLeHLzLkjx/CWf16+zV85hQ6meXPQbKanvhnpkYb7b2uJNj+enQJ/N877ND4Q==","shasum":"4a518590f118828d54fff045728f547fef08143f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.90.tgz","fileCount":13,"unpackedSize":162249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOsYGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrL9xAAiMqwDeZbgV/ymrPqieQJMeRo/gTkK8xGlrOdC9nwrNdgiU2i\r\nnnTl+Cpth5Xu9j5Tcrmdhs5TWzduLiLzR3Hf0LFokshA/HHVYfLDQvUzJ8wo\r\naz5FwoXUOz8Ya52GspFozKzscHtJz5uG3nAchnTjB9hSaShF6ylENnDHApT1\r\npbavpIrP8xs0woTFt1BFkvnevVa0wyJaSdhdH/Uhpx34Mzk+zYhJbimRIGU3\r\nS3/H7d/Gcopp0jVav7DUbsKXb2Y0NnrfDE0utlInXZcIkbdOHmyxinkqgQbA\r\nCOmziIgp54ZJwKZB6foB/iyH8H903dHp2Rgk9/LgjLEil3P3r64dOIPWwS2a\r\nkF0J57Af7CTq2rLQeUDcyz7ZQugwbfXIUzr6y5sGjTIMFUMoyeukhkrirqGh\r\noIJD3hhFX/Yt/HvLJ9crv1H683PDVhGdmLec/GkqhxmzHcF1/7ueAIXzsZ2H\r\n/a978k4oUMSZ2X0qoeWv9jVokA+v6VbuGUAMKCrFbTIBIkrYca+kWDyAz3wf\r\nCfvJEvXxhaUA0L+in5OW3QSP4FmUFvoZWSZ4W7R86Hvpj6jGabH7SwXVb1iB\r\ndaGbH3LlkkCpiPcSDPpv9EYrq7wNLXN2bgsqJClw0BruWsTkllLuBowO8Wka\r\nR0ZjuY7q5SAxnoeO3+ibtQ+Yg/RVmKqcmU8=\r\n=HWtl\r\n-----END PGP SIGNATURE-----\r\n","size":25333},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.90_1648018950242_0.15972512563503982"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-23T07:02:40.660Z"},"1.4.91":{"name":"electron-to-chromium","version":"1.4.91","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.969.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5332c4e33c47cc6ac7c8bfc6d7c2a280e7600403","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.91","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Z7Jkc4+ouEg8F6RrrgLOs0kkJjI0cnyFQmnGVpln8pPifuKBNbUr37GMgJsCTSwy6Z9TK7oTwW33Oe+3aERYew==","shasum":"842bbc97fd639abe7e46e7da530e3af5f6ca2831","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.91.tgz","fileCount":13,"unpackedSize":162389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiO27LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqreg//VgjeJwvEnB2C3wIjfjSTXgwPjgWzRmQxZOcnom2cCwkMu+y9\r\nc89m+5PdQrRSLxROhu0eaZwb2qr63JphRMqY5f2BYGV9G83ReOYcL/D0PMAY\r\npFSxsCky8tm4IEKTtM+AyzTOO8W/p/czniS3RY5m/D3OkEht79VXzmLqfRFs\r\ng2cn78TZibAD1nOCgX4ndKN4wg61FTI+BrppHbGzjydZ20gYW9pJvTSineEB\r\n5xZtR5L9aW5ym1l5dCJ62yOvaw6YJWo8d3qzdR8l7O1M+SXyn9QH7SJp6Uzr\r\ncn3mEC0RcENPw87h882WPHZDrwlXHiOTpv5j89ba6uRyPeuIHzKqmcT2iMDm\r\nHqqfnfgO8nXsmJ7QE5a67qpN8xrnXTU4GT4/7HVkzLhyViABhXMlXZu4G9Hf\r\n7rf+zauP0La8pf+7ESJYls+dI5PK7v41lPqpFlv/OyNmtDWrNqCbN7auh3Iz\r\n7Q00CqY8oEMT8TmzA+E671NbbM0jXNDBFKBXgdrk3PjtI2oqSwIKjzQIzrqv\r\nQj/Plxef1929cOkqVlRiDdM6pwJc90rhbkeDeZgqy36TjrkePFY+vhyc4+jX\r\nXta/+rcGvpTQr/iYGedfV9nM0ZOnimtVlNtRN2DfmwLH4YKGatPLhMwj9jpN\r\nAALOnTg8z+O6rtB771fWShwswmojTn1fUNM=\r\n=CXwC\r\n-----END PGP SIGNATURE-----\r\n","size":25348},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.91_1648062154906_0.11642676666265372"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-23T20:07:00.861Z"},"1.4.92":{"name":"electron-to-chromium","version":"1.4.92","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.970.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0997d817b69f38b196188f6d531b7e9f0e16c957","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.92","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-YAVbvQIcDE/IJ/vzDMjD484/hsRbFPW2qXJPaYTfOhtligmfYEYOep+5QojpaEU9kq6bMvNeC2aG7arYvTHYsA==","shasum":"88996e9aceb3a500710fd439abfa89b6cc1ac56c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.92.tgz","fileCount":13,"unpackedSize":162708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiO99FACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmorYQ//VEiL1074Zcx3MZtif0Z330x7hjxmCIiWBtWdoVXyT1a+Tb/7\r\nj9rcQFuSh2rIGs1H0dmT/qq9peELAzObX78JUEVt9rguAxAhfScIedI0nJkj\r\n8tom78bBNDuYZTfBYllHyEJQwgSwY4X1yIlfgbP198u+rLoA4OunTOXCqDuo\r\nK1vxK1rBqg0ejkkfvR1h7mqKftcV5Vqp7jThEyZypjC7yDzaMLAmCVS0Ov8i\r\nWu0ofvcMTXEQMSA2vZmelL8/TMPgb1hdPyZXFMnIrpyeNnBwdc2I8rzRB1qg\r\n2LtUM1YV0cArBJzz2wWFbHKav454PIjN+rrmEnnfk3YBkv8k+pDXU2YPVBsG\r\nM9UNncpo1zTPGTOfM6nd4TVBLEQr+/Lb1+p8TcHP11Sk3t1pXUqmOuMeU7X6\r\nmdOGPtbq7oOcvwjk/03ZZNHkptf2QUUimL7HttVPra1nDe02vD0OVRHYFQz1\r\nW1/a9+XuJ8zedBzUYq6gaWCgAHlJ13Q24jK4GazwwNURQfnNEkPIBptqiI+l\r\np83WHLJ3InKznsRUgRdiItfAO+p+Du273X81WN6pe+dwkmDrNadWeFGkpg5Q\r\nENPfP0HIhSpeD6j5tn7nSNWOS0IOxJ3JVmiZN8K0mFQNU9PtdTkB/bQevYTn\r\noOFY0V30p/KPBB7839All3fox0o5EyjOlJM=\r\n=mimo\r\n-----END PGP SIGNATURE-----\r\n","size":25399},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.92_1648090949305_0.2777957871942114"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-24T03:02:43.656Z"},"1.4.93":{"name":"electron-to-chromium","version":"1.4.93","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.971.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1470e250a973ddb9f9b6df4bb2ca4878f7ac0930","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.93","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-ywq9Pc5Gwwpv7NG767CtoU8xF3aAUQJjH9//Wy3MBCg4w5JSLbJUq2L8IsCdzPMjvSgxuue9WcVaTOyyxCL0aQ==","shasum":"2e87ac28721cb31d472ec2bd04f7daf9f2e13de2","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.93.tgz","fileCount":13,"unpackedSize":162948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPTDBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnTRAApEWcC25ij+Vo96LxW5a+NTn2Mm20EpV6gvOqg4SNLsXyCtaA\r\naUaVGdS3feZJn7P7HX5S+NoaOFEBgWGNepuwqE6wrnLqbUe3V24FVphMRwii\r\ntwFSHZ2YVFL/NE+ZsgtXXQv3WdEEUZk9hAtjTL7587ZphrzVOjVZgxMmzPhf\r\nFm8n9zEqSgzyVRapYPdXD3kpaIY/ylfN7soNzfu/HPd1u1onN6cPuJEMxsFi\r\nGt+jUn8gsbaA4VMJiuyMAjqlVlVFTtQXZZAiyVGBd3u33JdkLadkvjc7RNxP\r\nr6N3LVQ9hPaUhwcg28YZlW3UAe8LkKAhcwupeFM2ACsQ9JbqE4zkK2yAK+4e\r\nriH9MVn3iNPxkAVCO4QOHUKF8BR629x7/DH3POV/dsPeTE15ZbPa/wDNDHLP\r\nY/QBF5mRzw++/tKPuWnk4r/feLPVvL3KhLqFLQNOJT93JDZxV8sYL1mv6y1X\r\nBnSLQK0GyIZO7O7hMn5BoCisUKCmloUqOkzZsIdepig8JxtgLQ/h+VdPJXkH\r\nSCAgP7T6rhBQr1V0ys0jOEfcUPDrzjjKJvj0NdPprD+p5uXspeHbZprm8y52\r\nlde5ZMzGEDWbjw740Bsd8f+cY32ScV9koZpVei2yQXZU6d3ogYGIJQBazYpP\r\n2uQhpen9iI482niKrI6tUnhH1dRfDxiVnBE=\r\n=DBvR\r\n-----END PGP SIGNATURE-----\r\n","size":25426},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.93_1648177345260_0.29024251959679614"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-25T03:02:46.066Z"},"1.4.94":{"name":"electron-to-chromium","version":"1.4.94","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.972.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"db848db52e6a7e37e8af0ed5e4c85e4ea51b8af7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.94","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-CoOKsuACoa0PAG3hQXxbh/XDiFcjGuSyGKUi09cjMHOt6RCi7/EXgXhaFF3I+aC89Omudqmkzd0YOQKxwtf/Bg==","shasum":"f19206c977361264a51d53a7ea7ef861a94baa10","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.94.tgz","fileCount":13,"unpackedSize":163127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPhHFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPFA/+ObqRQfh/NQJIT+AwvepNs/y4RrNXIpKpiPxEAASySLRq9KgW\r\nMsF+vslECQaszX8f1O93g5eEnDdTKzMKXolLTcf7WV6oUyfPgyGMPtpI4gzl\r\n+kKI9UsjoWmuMADPbJaj5FmdAJXJbWcNHcgIrN9OREVnzb3LxlN2aYeV/TkT\r\nepvkkgJN59/TeaSegM/ejCnkNCrmRIC1szcmcPD6FV2y61F6u+zZZq/B6EZC\r\nTk7+M11LSkP9DtTJhjrK7cmRHj66tNLJFf826vhNlmzheDN/d8z/dakmjejF\r\nhGe1Ze3YP26k3AKEf2jaoeZNgXd0buqONUXPK1nPNEQc2If+S2IoZjZPRC3A\r\nV7hikW47BaLyQ4Y+AYuu6C29uBUFeDGQc4ltdiApiK8J8rMBlSBus48iVHz2\r\nOMqnBG2VYam2xT2eE3WZdEaaq7lUM3iOOYgld+IQzM3BAoqTcNTXzFsXHcb1\r\nA60ci04FCUmkEvbMb0XdPzdmrwBHtLxa8jFsTWvoHZR+iXWpE6dDzA2AyQoM\r\nVh57lQL9PgLuZWALEY5gHADUh8k5QOSdGGutwpqsGe2B2yQoZZhBdSnmijGo\r\ni4Ysh1QctZUVT5Mq0n0uGl2LhodqiMEvwqN85x6/4dRZEe/5VrKx7oeGYyOM\r\nD/FETK4/6/3SbtjTYFZCQNmn0hF1b2Wtcbg=\r\n=Z9hz\r\n-----END PGP SIGNATURE-----\r\n","size":25464},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.94_1648234948900_0.7355595726989013"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-25T19:39:10.305Z"},"1.4.95":{"name":"electron-to-chromium","version":"1.4.95","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.973.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a4502d728bc3517817e9e3a4c519a09ee7cb9fcc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.95","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg==","shasum":"49303dbe037c15e2e0cc851d71c4cb86119a9cd6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.95.tgz","fileCount":13,"unpackedSize":162380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiP2NFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqV/g/9GtFo7EirmWf4IMNZIcE+waQOVIchUAVtaIYfwEmfnyX6mjLg\r\nf+1X2kmHxF/UXLyRraib20gUw3E1Hdh92OLmZjlR5FPcEoS1AInfaQ5wy/MV\r\nYJo3VTj1A2sUPe+ScNmdaBl/ULenhZuEqtiDdplhjCZOHn9pluZ5H3s4mvx8\r\nDHNGdVgf0xt8JPBlMHjVEeE3T5n25sfppKvE21M2D13RlcFUzR0jbqXq+veB\r\ndMawmPwezK3mSxJNkWSBnC1GeTSzwEu6qpf2AC9P2qdmL5GeRIqMAD2+G5bO\r\n5erHGzzu5nHk5RPnSRHYS9/qI5Ac9O3+hcMXKD2qCZxjEMZpjgBCrUMuim6u\r\nJnxy0Gk62wDRj7RcsHzwPAyWKYK9WeAUXNK9/JS0Mrh0h9pN62/WJzIswl/N\r\nNXSGmoUEyG+ZRs75eiumG0OW8daBExM4kI8qlbkptkHCyChSj9ORsot7nAWb\r\nHTthdZRCsLNbaFQSfYRVfNoAtmxwf3Awc94HqNpnEEA9O/q90wq0eVMDCOMp\r\niWi98v3N8TJL26L856F+VQ0sQoZZDRhWrIOYKtJV6oxzWJkF9UAF0HTok19H\r\nVTN1nEESpVCxTbTICdx4fmLYDhkR2qtqhwiCzuYBF5BTyce2AoznkJxyIoWt\r\n7MzspMEnvs8YiMWa1W+FzK4hZRA8J9MtMxU=\r\n=Nx+N\r\n-----END PGP SIGNATURE-----\r\n","size":25385},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.95_1648321349454_0.13213303115774688"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-26T19:02:36.825Z"},"1.4.96":{"name":"electron-to-chromium","version":"1.4.96","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.974.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"db118be6f6c1430f5e73a63bbfda02bbdb3b16c7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.96","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-DPNjvNGPabv6FcyjzLAN4C0psN/GgD9rSGvMTuv81SeXG/EX3mCz0wiw9N1tUEnfQXYCJi3H8M0oFPRziZh7rw==","shasum":"a97438a01d5db1460343fea4a344960b09330990","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.96.tgz","fileCount":13,"unpackedSize":162131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQG5zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmolxw/9EkjwFbNOg2W3b3BE0R2Nq2Gcu52X8yjNXxshzNmp1UM/gagJ\r\nK5zDQYaShGEGJyGkfclYoBxy0+frTJ5PkFxxj5PwDm7YRuNVaiWSm+B+On6z\r\n307nHMAHCfra87tR4ZGagqlJa/H3akrv5PvyP56i7wNWLUBtPLBt/Ahm7wR9\r\nK8qrsMo+HBsV2iwex1O11Xmv9Ldf4NYhOqONiCMKa4u2gdDZZRB8IO7Avgpi\r\ngq+nXJ7fKF/S3UTHbGQzzz7aFv/0AUDRYxHgvrSqhCw+eHJCPEF7ZQPVsiAM\r\n9Fd7rir9n+Q6HeS+AXr67VYz+iqQ9EhpI13RraUKm1aDKa4jIik6myHa60rI\r\nQUdxVhvLDOK4hyQVl6SZ8Zp/phPJ+gfBVf+oWcCCxHkN8w9g0zuNGDAVozRB\r\ndasxwVmR+Gd+I0hGQiEjl7e6T+dyYpwAHZ2UsCK5CBG7MgugJCpfLYoMstri\r\nuZeYij8vtfJVFbNT+fRPuG02iq+t+FMNyK/0L/jDfiIspMlCwEaz7A9KckfY\r\nI1M9mA9/zNGvlZRmV2Ljvkf3YUi+3VDj9otnoTPohQ/I7Z2iJsbM2iqbDzSu\r\n74y5e0hFOJe+zE/M6vri9T7kKkJ4IHpHv9jDrZB3PxzNl2ptUt043CQ1ZH12\r\naIzzsj4nClnp8O42KyvrQv5SngaukEi1cEc=\r\n=doQK\r\n-----END PGP SIGNATURE-----\r\n","size":25354},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.96_1648389747708_0.6519584384759873"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-27T14:02:54.106Z"},"1.4.97":{"name":"electron-to-chromium","version":"1.4.97","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.975.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3d44ca5bc6db8742205662e3a59d8e68e21db68b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.97","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-vqSu7Qn6o5E1uAJQxmq2U69aBhBTxUAXMuT5Sm3jj8kEJciuUcKciktLuTPFSRlwSdNyeu9qah8Nzy9JyxefCw==","shasum":"36578e57a6ae4f50d2ce5790380616567c40c911","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.97.tgz","fileCount":13,"unpackedSize":161910,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQmi1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoipQ/7BkXIH+BEMuzSoPXesUAvWRr+toyHHRiopMbH4BhA1nUbLN/K\r\nmCunqN1fy6NX+9KAibdgnHbjWiVhfKI69S3Epk1cHLk7fZPXdlr6TgCa90FX\r\neg81hK+u5VAYJuI7LS+A7d1y/bBdWqmZ2grsr/AfTlMTNg1fUnbHYwDkwGCx\r\nr7ZfJjEVsqSmFZ9elvIMrqIkxVfO8eNISkYZ9EsxnmhQ3N8GRLk8zHrJYAng\r\nVtqgYIsASe+nDvXbgoadc8m7sYeQs2X3osexUIoK+FxsBi7LWCZa+VMc1dsP\r\nruCdNFtPnYto3wmI2pEpL+BKDm47RoxVMYol6QWJLJ0NytTjPlp5fmC9cyIJ\r\nqnH852PdYEouSLHMvgN7R8Ryp/Q1Gv33p+VN+GAAmqEsJF1EKmyjlF84U3Jf\r\niYx+5A5AezXzpWUvTI7CiMt1WZwMcEEZBmRiM7XECkeqGG/CApuFuYsSV562\r\naHWrNCq9JApGbGahTQtkpX6eUWVHkrJePf0ECzMLPpEIBpBsBeb7sH3NxRat\r\nwEZHL0VbSM58uEW4MW8y5ThKq7sGd2VIMK2r/rDUU55/a1mAXmKrKM457OLv\r\nRsR8K/ZN9GPrICsrXTouG4rjrsirCsP5cYsbRV2L9CHQRVJe5SU9KU1+c9j+\r\nHhmAv7Fv/ajz/5RVmj4UZP7JeC/9Y2kW95I=\r\n=gbik\r\n-----END PGP SIGNATURE-----\r\n","size":25304},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.97_1648519348948_0.33879225969822957"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-29T02:03:03.612Z"},"1.4.98":{"name":"electron-to-chromium","version":"1.4.98","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.976.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"066f53d7c07e23cbd3a48d86f1eec2f8c28cac79","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.98","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-1IdsuSAnIGVxoYT1LkcUFb9MfjRxdHhCU9qiaDzhl1XvYgK9c8E2O9aJOPgGMQ68CSI8NxmLwrYhjvGauT8yuw==","shasum":"1a9a0dec9792e78c5be1df052b6c74078d6b1b16","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.98.tgz","fileCount":13,"unpackedSize":163648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQtk0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcTw/+O6s5tDcVwoA/f1I0Tsei/LsZNvxMDY28OPKeGghrVq0r3dYl\r\n6q1s0wrwJCSmu8fD9YG2nyxWclF4yVbWFhtFvLeprP2BLuIjVniwTgGLPGpD\r\ndyuMSw4yWaP9m6QFuVrjD1UlrIVQoIP40obCUR38CQlp1STJ3ulm3ocSax3b\r\n/zbTH+WABDV6uK38Rgf5jqbymycN0NX1GKbtsuPrjfcNdwgwnfTwZ9n0nvHz\r\nAvt1gYDPVetg10LT43QKAR71I4p8VD6ddoOUgagbiipFQZEC7Vy9Z4MFyme3\r\nrkNAzmsRLqIIz+AbRbQdIwYTcNEUvOjrGE6JWS2KeLLS6PCv05rbORD63Vf3\r\n5zyisBd4kY7uFFuUwFgVTsNNDQ2ECSXqnk2EtxBYv7g3w3k8cdRWIeFB5E99\r\nijTrgrkdNiEZWj+KSZFWzWpwXAl2RHBRGC5+fcIENR8GmPD0CStt2RFSyhZq\r\noTB6KBYdMPKlnfgiFFLiCa/wbjfoaoSFR1cptIPLA1Wutl3svCaKd02MJdZK\r\ntNGifOb2uVEAoRcL1eRA2TpFhzed6ATLymZWTjrHS0edeNPqnC3pCoRgJ/o0\r\nHSTLCHOsfiG+X1NlBFhDoFHRmOEEoOBcNEujCyBpe927LMqS7IvpdBu9/6Ih\r\nW7+wCFn0xNd/vH4cU1oEJrhELMVRyePTpqE=\r\n=c8As\r\n-----END PGP SIGNATURE-----\r\n","size":25538},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.98_1648548147874_0.04756357374090481"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-29T10:02:44.223Z"},"1.4.99":{"name":"electron-to-chromium","version":"1.4.99","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.977.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"db64ecb76390d01165ecb48125cfd034c9ff44cc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.99","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-YXMzbvlo6pW12KWw0bj6cIGCJi1Moy8PLCuuzgRzg6WYIcHILK3szU+HHnHFx2b373qRv+cfmHhbmRbatyAbPA==","shasum":"da97e2c116dc6de2f91a81b4ff8d1b19bf54dc1f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.99.tgz","fileCount":13,"unpackedSize":163763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQxF4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRRhAAirPYDWbIIcujHQ9hF11Nu9DxSAs2gBsr75N+FwclkdYN4R4n\r\n383DL/4IRJoLjbOFByiOsLo+gublv9Z8tCn7qZszC6+BCU0FlsUmgvsgy5wd\r\nQMMhjwvTWnAkfquCGKxfnKiC/NIN2nImN6CYtieIGVoNij2ALO+PoIXlEr2m\r\nLGbR7d0sj+4w32RrH4b7a5I3/hXve9ckxkHx+2AjX3LSPS8v80iUUF7m8YDh\r\nDouyyci1HvEf7GrEzoXutpe1B4+N18MyeoTDcZkwJpnOKkQgkfmdukL5gzgq\r\nnu2kgG1VW+3l5oton36u4PygzufrzCmFiOasW5dgEHU5DWqp+ksvb08s6vGQ\r\nsnfmRKXFKVAg1CMg8Zzgs3v1PcJBc7JGBfUlGvej2o+SPSYUPveu1NQLdbgR\r\nFRsKJuCBj14gWoj0IEnOqNTE2SLlwlCLXmllnxKs8HUBlPZCTp0nwo+sFaZA\r\nTrtQn0u497C2JCWb9gRlMSMdgsVRB6/UTmlRTze4b80TOHMhZ/t6AvqttDNn\r\nTwmc0uLCK75nX1AgrIL0/hdsj2t0HXRUTGyF0muxuwn9Nnzdhk5s1hmUPBgR\r\napBES+YRsMtOa9yM5/nzeFJcbd02kJpLMHQMI9TGxjcqirAanFjWkaX43mIR\r\nP2svTzY8YGM80Cc9Od1sKBU3wTomKuLnLKQ=\r\n=31uQ\r\n-----END PGP SIGNATURE-----\r\n","size":25550},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.99_1648562551963_0.937586026834907"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-29T14:03:41.156Z"},"1.4.100":{"name":"electron-to-chromium","version":"1.4.100","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.978.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"82111f09fef6bfe1b2d7f274a8f684c0e3d2fa44","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.100","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-pNrSE2naf8fizl6/Uxq8UbKb8hU9EiYW4OzCYswosXoLV5NTMOUVKECNzDaHiUubsPq/kAckOzZd7zd8S8CHVw==","shasum":"da82de8a19a47ea3dcdf141dde85355942fbc4e7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.100.tgz","fileCount":13,"unpackedSize":163904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQ4H5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmprrw/+JRlRuHlf9eeGbjEdp0+RzGGhqeDmlrhi11cyvv5Hkpo1OsVJ\r\n2adL2QkqSBqu7OxNVj9OaTnmopjPXgs0syImfnTgNndgjMcFsKKCcs3xxmFV\r\nBWcZARCDHOs5XBIlMYOKrvyw1b49Fi9bquk9sNOPnInnQ9nLDd4PMOBFVFYu\r\nfyFjBXGh3wYsKNiqqu58egA3nYYYysq7UBXktaeOsJvVXH2yrF7hpSjoEcDb\r\nNBDMYeaePAsJa7Ok+ofgWHbvZtKDZMC8O6hfOMAVunLb3FDUAqM3++yDET85\r\ndRuu9jSI4K1Oi09b00PLO5QRyJZQmlOT1FVNeS3q0Ss3ZRrXmfUI/AxH7+cZ\r\ntEFL6NoJd5sYzFWqa8QxWkgCZ63KcOwMBmyxrWvW1lN33WOaVVycj49mXBhE\r\neq3QpY1hMk9Qgbnb4C/U//2HIr6IAUdfBXf/bm+3D/sUvMLDsFO58ODpk4Jk\r\nkyt2QMVbdiumO2ETaE3p9fIkQbK+DeDG080RJc6GGwqpeQM3+ATmJ2SIk39L\r\npqiR6cRMpKguRfkwzlXaO686q9cN3L5mfsOY1SUx0g8cg1wd7ywXjtmx4sQm\r\n3d8KJ/BnjpFwFqXC813CYGvnPYWHboXXQFMQa1rax8qfqBLePvWL/zFXGqVW\r\nBDzx/Rg/7yvqlv8yGRR5GtOloIzPZdVE9Wc=\r\n=lsQd\r\n-----END PGP SIGNATURE-----\r\n","size":25564},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.100_1648591353378_0.6986928392078018"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-29T22:02:42.234Z"},"1.4.101":{"name":"electron-to-chromium","version":"1.4.101","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.979.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0f7cd588d1fe1bdd3a1def562913cc9cb192ee13","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.101","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-XJH+XmJjACx1S7ASl/b//KePcda5ocPnFH2jErztXcIS8LpP0SE6rX8ZxiY5/RaDPnaF1rj0fPaHfppzb0e2Aw==","shasum":"71f3a10065146d7445ba5d4c06ba2cc063b0817a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.101.tgz","fileCount":13,"unpackedSize":164138,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRCq2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrijA//f3XVbZAWP/BFx/JuXvKhIO+tEznQLn7HO2eThdN99f72iF1e\r\nvk1VYT6JVS7jjIrw0srip3Pf9O2F+M3J7k4QVtSMhHMDrjo0W1/q7Yfif2NU\r\na+ufBddImHmpLd6dUPQnOAzUsxNlaZyVMdjnj/3UDoBDjQg4ZoviMwlvlyQT\r\nHZkiIOM/aYl1oGwaxiN1iGBbKDyyfMtauupG8aRs3DcMqTAq/rLR1FvsSF2U\r\nC92CkRYHPZHNsUSwHNPp6MEcHPkjdx9CvYQSKx5U75HAXHwNiiFY8in8iTVK\r\nUiiskiYf6LmHzAz22rSqtGUUr36txaAxd8wOBnetl0Unx92ItqpwBHH9RPTz\r\ntfDF51n61nh5OX7HrCnxet8HTZiw5KQdSozMJEuA3qDz2rHNw/YUVvXR+dM2\r\n+KUCV9KuuG55DDRKWvDVtz0Ps9Kku4c0zlyxc61GVF7vbFyceDUZug/lcCTy\r\nUc+d91E46E/3qcxWVhn9hFIZM4te4CQ58ApJKDtTwYEB1IsIedeBBl+o2RN8\r\nvqgkA/exE1J2HKWjJ1X0P3aKJIsQvDGuJNpNX3RC7XhTiscESa8oXWVO1zwE\r\n1OiVn7raYB8cvSt9C0tplWq0ujxOAC9qThT6Eeso2BU9J+D/Mmzd9hHFWCz6\r\nM8ei7B5TEyB7ud5B/kXsMJGpiKD6XSidf2Q=\r\n=YC3O\r\n-----END PGP SIGNATURE-----\r\n","size":25613},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.101_1648634550607_0.849881596547799"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-30T10:07:23.873Z"},"1.4.102":{"name":"electron-to-chromium","version":"1.4.102","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.980.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"02005ef5d75975b512c7af20c8f97d08688b6e45","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.102","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-MuWg3/gLTk6PSjC7ZrTgT8aAYZmUYd+gRtD95vN77KMBwZXiGdHHa8Y7ppMc/zwNumZtoIBLS0rzZyjEHd7sNw==","shasum":"fec312f753bcd9b89396136147efdb8bbd55cc82","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.102.tgz","fileCount":13,"unpackedSize":164498,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuWhYc71hUQ3SiwmtOovqGcb1aavhkKE+tlCZ2oOY2dAIhALgPiLdmecHyfxC/65Vq6b675SJtkXNrDpoBGUPfx974"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRNN2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6Jg//VKezsTqXNaSFGIDPbFLOBW/vCCQQ+1wmvmfboCmK9lNXuiTc\r\nL95n0Q3LUEmYtdfa8T29JqPehFmZzQtTw+1r9Z97H7Z7f/7/BJQsunLg7gBL\r\nHIU4KOJ9N8iD4nWsANZ07m4NieyzuI0e0qslnj6/+/+f8YrTGeZIxn8uWXIP\r\nj3V/2P9Hg7XeRJjJBy1PF8ChtLh/ygbW7sBiIojRYD+2t+5HGrRrqdkt49NV\r\n/0mpII4YvmBooUHdhupqpg4n2LonSlshSTEFUMm9oQQ5Kr657X1w7kNz+vm5\r\nb3/tLZfek4HZ2xKVFvRFPJyLlHYLroZhK7wHH5CJskIaK16reX2u+ES+f8EN\r\n/BTPo+niTUG1yNjI/i0Ar5WUUbqVJ6gf32iuQOIC4QOQq6YWERWIPYbRUuyP\r\nA7mb5NfF/FbrFBQ26zgEp8AxpzzEKN3tB+mBLSklEdwkGHI31H4vD3vcDq+s\r\ncSsXIPf89yuSoZk5WIKSN7srnkKaEZeG+vzLSDtWmislktoSUBK377cUgLvS\r\nM5sCNwrrFnNJLt4Ul5wnRfyV5CgA5jET1V4X6boiq9Y1lH0hSB5ir4MBRsMk\r\nrg7oF1r7cNUMTVOgbwPJGg0BRTJkxMmg203xyAQEL6aPFzD8uYKLOggDTAEH\r\n+a2H1n11oKLM8at6eUkzIIptIjRZ6rjPktE=\r\n=5nC4\r\n-----END PGP SIGNATURE-----\r\n","size":25658},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.102_1648677750337_0.5234897221089083"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-30T22:02:37.784Z"},"1.4.103":{"name":"electron-to-chromium","version":"1.4.103","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.981.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3f68d173d5905d01ea7120bb3c24d7610cbe6571","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.103","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg==","shasum":"abfe376a4d70fa1e1b4b353b95df5d6dfd05da3a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.103.tgz","fileCount":13,"unpackedSize":164613,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0j7xOPaRy2W1MB+Ucacl9J/tr1Ct3SYHIT+RrA00VogIhAMOYv+LRHxHELAthxlRVjE6eIo4pBiSHTljWAWrwNPf1"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRQuzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrydQ//ZER5V6JvNh14OksriQwzYiGsucVooRF4MHA9SUitMiriTDgi\r\nqjeqlLBVBLKoZbdbWH8ZPhaugSR1lEB58XZv/65a7RwRcTALxp5Nd4J29KkS\r\nTiuZzq7VN181YJ+gmlXOPM6wFHiAE4OppaaO3LO6+mDGQQYF+xEbv43WhujE\r\nY6Zi4tzCB80if3Xdhn+sZIJWcToomd3ostlS5y1hqGsODMvLlcuNknuQCenn\r\n0Iu5i9TZ3lrQniFlAqGAi5+rW9DfYPX6KS36113BpD5XyTL/FKArO5jgp+LJ\r\nckmNzUkkbF0xIBbqdBmN7EpPW//xr1sHYeJaP8TwNC8Nhhcrkuiih3Lk17tr\r\n1m/eGh+bwimrES9h8jkmcQ3VacZFsqHmhIr7vy9LErwHdEDbvd0uxjBwb1c5\r\nxyuDL/UiGSKzcgee+IredleOSgxNmbB8lS1tzaUIZ0zRy/XiScdPgUyd/lBf\r\nrfi1DsTs0b2VAbyPPod+YY+60DIFYAA7X1CdVVUt0LplETJK5wb7bzhjlgjM\r\nUKt1cHnvmcXhNmd8Ru6YHx7WwP2HNkTX9mg6d9W3vLTFrZL1w7zl8rafLZYO\r\nDDa1y781wSm+L+RxC6uHaVrTBAFDPCO/vlDYHFchz9EItFEweocrfXsoxDh5\r\n6UXyvSmVbv48I9utS80Jt40QceaGpY4sS9M=\r\n=60+i\r\n-----END PGP SIGNATURE-----\r\n","size":25677},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.103_1648692147745_0.9395109813026816"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-31T02:02:53.538Z"},"1.4.104":{"name":"electron-to-chromium","version":"1.4.104","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.982.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"665008af1fe9f1033e9e2f157dbd1c51de012812","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.104","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-2kjoAyiG7uMyGRM9mx25s3HAzmQG2ayuYXxsFmYugHSDcwxREgLtscZvbL1JcW9S/OemeQ3f/SG6JhDwpnCclQ==","shasum":"60973b0a7d398efa877196e8ccb0c93d48b918d8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.104.tgz","fileCount":13,"unpackedSize":164788,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD5yPe9vy3QkV30plJsoxF+0ncYCPCBRG0lctT4F3sA+wIgPJFeak1a2RrUYTdU32zRXY4eQMSM4xr1rsjmZVh+N8g="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTPS1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnDg//Y6/43dE+SHaoyK6sUMwFaUsXGX1k1WKlxAQXoiczHaDcz6fb\r\nQuGhxYGLBXse5OJTI8+xp7PXc3Its4N9WsEdP8pwTwFyJvaOGIy+w+epFzf2\r\n6i0mM8RvQPr8GqEm+gTsnWf8dgZE5N/SGbRIWgXPpy+w4DGPFFbE65k6aTpX\r\nyW2FAxeMTwQ2t3XZK8YSzs05ymDqhIMvjW9d2oisWuOPlAW2UKRexTjlnRhE\r\n8g/EJ58ffHbt2AuLyl3fV8om7Gpqs0pj8+tA8AIlWOMu05jNevzRyTEOaJ+e\r\nNEnHNsIpg7TLiy+sfG4UgDeY61mjMdC06dx+5MfjNN65I5rFyYIxjDSVPndI\r\naYF4pYQXPagHSEe/biQyN3hgSU7StZ5ydDyu0ywXAoFNHtgeyS8GZ2UFq/yN\r\nbgaQ6Q5c1PLl2XtLRR+C/0A+VfJ4bZHSPFeX1QluFqDS5hTgbxDdijrBsAl9\r\n5QEeyllojPqrhjhtur2U3GGP/Jga2BDRw37+1REBycPSCulbAFPxvV9CCCi+\r\n7c9qc0NfmuNRvzOLkKlTQ/bdaFK9Vp9a7Ao4HHCz6g9EHi1pzzVY6MADkIHR\r\ngb/zutu58MkgVZFpWgwDDv8MTXB18d+oC3Gi0dHzRuB05757EjLYxQ7H2mOv\r\nrLvBFavrL2uOj4Yh4e23oLcZIJ421yLq3D0=\r\n=quqW\r\n-----END PGP SIGNATURE-----\r\n","size":25691},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.104_1649210549784_0.9498697595380852"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-06T05:05:31.133Z"},"1.4.105":{"name":"electron-to-chromium","version":"1.4.105","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.983.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"61580f198f8701006dfb379a5e5b038cbf3321a8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.105","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-6w2bmoQBSUgCQjbSjiVv9IS1lXwW2aQABlUJ1vlE8Vci/sVXxUNQrHLQa5N1ioc82Py+a36DlUA5KvrAlHMMeA==","shasum":"30de5e4ba020140b698539b2d366cd9c3a337ec7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.105.tgz","fileCount":13,"unpackedSize":164849,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEx7M8SzePtSlH+z6SXRm3UdfiP7cTPJKpfl1T4NDb+nAiEAjgqyc0J8sRCeZ0Rzgvsw3edcyJewYtUCwViluCjkblc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTkY4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTDw//esmFXTpNEDqa/wu2YJtSeRTy3rrz6vQBPqX4t7VPofoqLVeX\r\nrlLgVdSrZrWTXDLT3EJwpOCxHiXnmdvQeYPBjV0KkHID2hLq155Mc1JMFbGF\r\n72XcN9XKa1YIotvvewhdIZTjHOaCuZmRVkd1MLKkto/GypvrNfRNx1HjOI1T\r\nl4Gplp8icUjvCmistFs1TvEW3uBt7Z/w2G0foSj/9OreVZPXb2tOwJQ6XTtH\r\n/ZxYSPfaZBYE4ZiuVaTyjAFr+/ewOnGiEDvWeekg0XesCKGo/GKNRUzlhg1H\r\nhKvHZE9X1WPMj4nnP5CgDgmNyopsTvgfgljE+0rgeVQ9zGe75Ct+1cShFGfU\r\nQ9j//0c0/2r9R2/mzbz5nE3Ds6YK6X5orXfmaYUP9G7DydaX2f5XLhEQPl0P\r\nyMzi9HoIKAdVwSdCS+rj7v2sw+hRjIjGYA3MIdM3ILoUfsyCJwreFbBBQUx2\r\ntLJHBJSwdBgELvSuEcCjn/5sbSHKkJwwkug9+rj/2SMzRmcsHp7tn+uBqS1O\r\n8i/e5u1YgdiuCRFeDU5Xc8Hx9cQzafeWZse8NVHGPdlGm3tpN4tZ0PZSeBB5\r\nV4CS4YpfK9DiwM6XZ+kJAULR0xgiAgSsbkJW7HDUt7mYTKBACx0TI/+y6ATu\r\nqSA07oMOS03cLDAGJIVJ0YS6siKfXWFz/PU=\r\n=cNpM\r\n-----END PGP SIGNATURE-----\r\n","size":25694},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.105_1649296952027_0.762929018828516"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-07T03:00:39.299Z"},"1.4.106":{"name":"electron-to-chromium","version":"1.4.106","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.984.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9a4a2d78274642b10c6b6e286827e2b37d01b142","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.106","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg==","shasum":"e7a3bfa9d745dd9b9e597616cb17283cc349781a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.106.tgz","fileCount":13,"unpackedSize":165049,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQDNdUOcsOLyAbjgKMAPatAFJaWq/yI1gzZbYkzUGv37DgIfJLD7Euw4SMXfSR0fIT8Q/jewLLTE/EHY50KzpSoFXg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTra1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDWw/+PIIXJYCC5ovU270KgZAkAeDwLjAnTKbcvLaXsL+9QHfw3aJ/\r\ntAkV2pmgSnv+FV7RFnbmSEyE6tLZws3NjOR8rStBXvohse1nuirGVB5wVeOS\r\n3JNTTmLyFK1d1NzrVJcEwKzG+5TNhjWHw0L+Sko0ldgnbvdwPupecfmaayXK\r\ntn1IsBO01IvrxzmU7DXBIiDpZeexHzLHqQdxj5vjiJdckVWUjef9WjhqYQ9a\r\nmH1IeOAPnc64vTAdWuiHj5udPuP9KyH87qBxPvQ6dWLlDt1j39u+fa+68Kk4\r\nkqy3j61USwnqZaEz0eDjhGTMIn3oiQSkZ506lrBdBUimhGn5/mE/2JAZXEGy\r\nu+w9PEmz07GTfO4vblvcDmOA7NWlKeWN31dJEpH7Uu0GHS6ad7MSLHqK8gO/\r\nHeK+q0hpw1k68USKkEsFRr/aNbTHPNE0Pf11XEeQ7rGc7Qk+cG2CU8gBJP3s\r\nZDj1CpTxw8l6QVEyhVOCfZXz/uFFKTJQSh0L+YY9GORVDPK6ZQGAEorEqbpJ\r\npVDp5DcKRDEv+fgjk5mQoU01VzjeX9nYW8mJhIeaUwDaFqET6EjVrs1jGnUH\r\n0qTfEXMswbT9kAoWe4Hanae9aREvBDnQy4pdI8cXXXgXA6pUs4GW54LNk3Qa\r\nrw5Iv9B3dzW7pd8lxGuYX9zEZdme4ajgOMY=\r\n=xpxv\r\n-----END PGP SIGNATURE-----\r\n","size":25733},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.106_1649325749602_0.6853746966277159"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-07T13:52:44.410Z"},"1.4.107":{"name":"electron-to-chromium","version":"1.4.107","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.985.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"dd5fcf58f891be2e3c8b3b0d7d00200af7ba6289","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.107","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Huen6taaVrUrSy8o7mGStByba8PfOWWluHNxSHGBrCgEdFVLtvdQDBr9LBCF9Uci8SYxh28QNNMO0oC17wbGAg==","shasum":"564257014ab14033b4403a309c813123c58a3fb9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.107.tgz","fileCount":13,"unpackedSize":165228,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB3WOge/VrIMAFkE8tQj8kgdflxtMtDzXRCI4zf5n23zAiEAxrYl0euqPku1BTFrjOOI5Hetbb0Dc/CRrR6bWjUh6vc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVN24ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrE4A//d/3SoJr2/ccSaxphQcnWkwPD3/b8Q4K74x7b46amefSCEF/G\r\n0UUwAvokv9+vq9/GmzfQJ8Lz0RXORp2tEC9CXpCBDUXKFFCfyLKKuxsTsoQ/\r\nF6FNlP2NKKKhsBK1tuhzVsmQLZTvBL3yNHY0CvKKqFZkoAsN4aQJyM/6awK5\r\nuPX6MFKpc4gBOl1MJGOUngeQAVxBFKo8QXIXeADSvR/tiQ9GbSfmNFmcUQzc\r\nYrSNgMi5qxDgCwiJa/Oncw3/+R7TzlWOVoiWp9Gse87VWPlM+1y4PLHEeC+4\r\noHkRdfQ1fnZf4XJBMjoeRyg6TxsEGxFMGrIb+3npO+MbvmJxB4DUQoSrQ0fk\r\nyXrYFYwDK937nuEPhxnuI5K48I/9GMev6CG4ChjfJI8STLCD1QugCZ/dOXP1\r\njGDMG1AnZjj9a43BTwHu/inIjD0IhND/QlpWpDdIB/vxFtZqmybROmkPA77w\r\nkam+z7lcUoyRIdmF3YdbwnOG4/72MM5j7N/pXXgDdGGUWCj8UqTjebzVWF+W\r\nuVr0qWLbi4hQHoeEzfOJfVZSaEx32KT+Unc+UBGdJdGBvMmblxzzxwo9zqxN\r\n1ai454K/ym1wjhp7Bo75Ju1OW+QWr9x2UD9xAoWLAclFwkIuaptdRCR9AsPQ\r\nrz7PRelprecWlm+VKMGO60aCSQUyDUtSDhY=\r\n=tzTt\r\n-----END PGP SIGNATURE-----\r\n","size":25757},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.107_1649728952431_0.6374914432263361"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-12T02:09:37.508Z"},"1.4.108":{"name":"electron-to-chromium","version":"1.4.108","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.986.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d58583f0e1982143879ec56c97b56176a39d3366","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.108","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-/36KkMuL6+WTrodVlOjtHhH9Ro7BgRaQrh0bfKckwDtdRSjTBuZCOddeXxzK1PkwphoeTxGUFVT9xnmvQ7xEdw==","shasum":"380b01ff68e958d2b9fdf4572e054020a506c568","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.108.tgz","fileCount":13,"unpackedSize":165302,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9+N7mhE/HjaGRnfXCIOv0S/5p4DAjsiS8aX7pEX9XPQIgNgVo1Z3jbJCFVIlBkWwU5mrafmZZx/OIWTi2QxB5OlM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWJn3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYLQ//QyMc6XfNV1aIYmopJqc/CKbdprJS6Dsws6PF5NKPVDugqwny\r\npvt9Z0nAmDVKuArAh7u518LjZ1xZlLE6Sm8E+/1LDAomh9Zkvyo6H9SXQekx\r\nNCWf6rG/nIkBYq+M7t5OwWdt1cycPGOPNeo3pcCsK4Fxchmlf+HFgt2K3Y9w\r\nzZ3+Ed/BdQVHcp9kT48EzJIovn8o9wZfiS6bzDmKCdnd1W9jjDTyzt9WmF6D\r\nVD3Ub0hnCjq6UCtI0XWh7DtrMiDIDO2MyF5ksBb1chlJCgcHAZuSnEcgpIJM\r\ntcVQhLAPAvXtuLvjgeQq07s6eoz9wmpTFCnGRUfT9EN3azxjAM56/fQwvK6A\r\nY6E/m0295KYVwpuLjCkJf7/GOJ5bWi8xRpLZJJ9DKKL0LfJu8bGP+zURIXJ7\r\nSItEdkwZBYI8uUFJ+0Lbnx0JoXeQKNdVUZwqYyimv8PXb8Any+QLjb/Vrj5W\r\nh0Qz+BWFlSSHZjiO0H8Epqgn2tLMn3elAJMX2kO3Yaw9+rYc8a+ORBMKGBi9\r\nhG8fhsK7Vvzs7PgjG2oxFvt3OqtBbL0pzzw8/Fmelw0Jfp/8cRC0ZXpSF490\r\nbv/u2jxESlbQdqU39CnuXHpxRRalHTwDXYaXVRNlyIPq7XBbXHUYy50nCLO6\r\ngPb3YVi4rQkcjj52oZzYTwYAsE5A98WEHYs=\r\n=mxMK\r\n-----END PGP SIGNATURE-----\r\n","size":25761},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.108_1649973750910_0.8594574944313327"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-14T22:02:54.934Z"},"1.4.109":{"name":"electron-to-chromium","version":"1.4.109","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.987.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"42ab80552df4533962f97a73d910c6580adf51ba","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.109","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-LCF+Oqs2Oqwf8M3oc8T59Wi9C0xpL1qVyqIR6bPTCl8uPvln7G184L39tO4SE4Dyg/Kp1RjAz//BKMvi0uvw4w==","shasum":"74df3109e37f1feed6124f255f52c96aa62feb7f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.109.tgz","fileCount":13,"unpackedSize":165481,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFwnneZ1r5Pk0kBbvW/k8KXfBL5Royoec+s27ulF7q6mAiBymnAE2/uA4dpWibaZ8qTQCr0gW4mv8za+ynw6axNIIA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWUK1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNKRAAlZoY+ek2kaG4iszbgDYkN9ZFbn0Oy8i0jSwlq2fv/jr3WgwM\r\nJvrhd0RNhkfemoAJjASbKBYzjCiWYwkCY3zus5Hk/2+yQaKEqu8UDCnNn1vV\r\nCAPAuaP8tQc9T150033qIHufJ18kqpCP3JKxL1ycdS264+nRF7HcHXUI/2kF\r\nVieCrt6kOaRtSeGmX3atWkYYXNIFjaGbmTlbWiD1MYs8GLgS4HpeYOMgYS3M\r\n/V+9WaimXEa+8W1R/35MBk0Z9KW6gfSgSYi+Um/rIf1bJ8nSDHYfHRQ4r/Na\r\nSeUSUBMscq7nLVT5KZRHjFInsozG4XAHF70YtrtNaEhk+vzepyKfoWA+rXpj\r\nnPD4E7op4Gfg9PLX/H0nK1Z7kzw7GHcUmSy8rru9v3z7oS5jMnVoo6hdRlwO\r\nsr4BNEfRSDxVaey1lFj2kz2SAa+dyGHsyi9fbHpV+HluvFRX0aUKmzCWOGzN\r\nWZHFZO1IgIGWl5E5yZvG1BcQ0b5OwEfx4yfeGi1WqE/5vGXCbl3EwKNsqG9m\r\nh/12ktxwpXVFYrOVpp5TqwmEI0tePm+0HuUK89u7FbJIMo2XuqyWvLadPyao\r\nxyhDEsJR7GG/kz9zmnU43Uu75y2jSCj9UWbxC8EkOngKhxdQk6Eswy195IIo\r\nqLt+ewx1dVeEj28khw5fxZDtkA7NAtfUum8=\r\n=l/v0\r\n-----END PGP SIGNATURE-----\r\n","size":25772},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.109_1650016949257_0.30834976966337835"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-15T10:08:02.415Z"},"1.4.110":{"name":"electron-to-chromium","version":"1.4.110","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.988.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"01c21a114d77635b667f97c59b0e6cbcc9154b22","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.110","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-TvHZrkj9anfWkxgblHlNr4IMQdm2N6D0o8Wu1BDpSL/RKT4DHyUt/tvDFtApgZ+LGFL3U9EO4LRZ1eSlQ8xMYA==","shasum":"269208d7cf7e32123b1d87bf4e6e1fd9ac7ff51d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.110.tgz","fileCount":13,"unpackedSize":165585,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlv1+cmWQdOYNNnqNGsQkAmZ/Z1OESK9H6+7j+/d1m1QIgH2mvStahgXmBCL4oJzihbzKTgAjTjky1NdxgLJoDICE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWXr0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoS1hAAljgDIlL1itbk6iL7Qor8ng0WDFClgEtbyeMYIrNRXxbX0YeV\r\np6y6c8LErtDb7YepKc3PoTXOuBhwlD6QqWlAfzf1bZ+F7lQiJeaE9H37UIaL\r\nbtYuqFLXllksQDGit3nkdQe2dPoqO9Z+DOEvwDZ7RkPGi3B0on/pNtr+3dAb\r\ndnuDuCeGHUen2LcIXn/RiJ7caDagLnvA+Dh3wppIEcxLRKJrydo7Tp9vLMvb\r\nvlCpRqa6vJbQR6hUhgW5RcXXFy6slebXYmMHjmgL58hNtIb3+oV2gxQ4SiC8\r\nD35h2+8kbVL68u6gD55nPSOD5r6qW3z14gAW2IROuy1an5R7zZ1k8ykTixxO\r\nsLgeovYZN9Y2ZONmhqz1w52Y+q9Il9Mgu3l15lY6xoWm4f3msmp/E4WnT2nt\r\nxb1MYs5jUSOUxSMEka3WWxgtfxs7JSVcojxnR8myUp9mHZF1y2/p4jzrXI4u\r\nWo8ezxpSj+0AD65vr13w7w62q2c708SvdkN3dvX3ZFask3VACVnUuu9Sce3i\r\nyjIe/6Nce9ILd90Sa77vIwgt2Wzdkn/z4Y90Fd6HvZg0M3x0jJjpvaoWBWXg\r\n2SXd87KVivX9TLtPV0xZZQDNQNmNWl9KwntaDOzXn1OxiDtIi6Kq+tZlYyu1\r\np/eqq4QDoDMuIvp3OzLy6oGKWL6G+t6yiwc=\r\n=+3Aq\r\n-----END PGP SIGNATURE-----\r\n","size":25781},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.110_1650031348110_0.7016015841026559"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-15T14:02:37.368Z"},"1.4.111":{"name":"electron-to-chromium","version":"1.4.111","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.989.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"871a226c517c83e9cc439c9f2062910e654bd9f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.111","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-/s3+fwhKf1YK4k7btOImOzCQLpUjS6MaPf0ODTNuT4eTM1Bg4itBpLkydhOzJmpmH6Z9eXFyuuK5czsmzRzwtw==","shasum":"897613f6504f3f17c9381c7499a635b413e4df4e","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.111.tgz","fileCount":13,"unpackedSize":165725,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDgYvCDAdRRRT7fqDSL1o/K3NUSL78sFh3M63ups9jNtAIgBMNLHrbw2zkHNAQQpZnyR7E3q3VmayVJ39O7T4nQxGE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWiO1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2sQ//Y9W6JmDaBIrm6/wczRTy5t32jUo72WRMgiTh243qwusoTMxm\r\n1VIooMBLyocMpe6CUByQsUBbtYa9QfgXFH8fI0WqfWcwvaoZ2e1bUFJ8Spso\r\nZN1sM+dIVRrJD0TjzEbIuNt/FJ3wj1of/XJcDcsjsh9biXDvRCZC7QtSZuq7\r\nnk1nj4yUIfR+pYySQToIf30YMnH3AIgyhgizirXuOXk03DYHrYpC0T6oLhxI\r\noDULM/zvlWi9OD3a1SRij19NN6Ac4kHHta8iW/Kg/XFYrFDe1tLvEEX64j7a\r\ns4Um/idenZE8aAwaEtMVytk1IFdnayiai/GbiAcXN3sDs5+XsMW5nV3u+FUs\r\n+YOlDYNtwk/LQl1HJ+RPZNdjH2+jUsu1wphqlvsyUmBeIS7QT9y2ChBwAyvV\r\nfxTRj9zOCBOHb/nYNUJyoDOaDcw2qOOsviNXYSib6sOWgKbr+q7Nf+gzvLY8\r\nuOegbit1EeY885W1uG7B4xLEVg4b6L5jP93txWl3I4EWbIyy0V/PFvyxWEcY\r\ngzbZ9L1tiF0v4j8iGQZKU+2wqUvtPqr3/i5B8lLHU7q7QQV3BArCWpyt25nQ\r\nidfODtgUIMQjJ1X/WMwaRVW/oiNHQ/rqujlpzqlnDiJ4Nx3HCXdddourq/P5\r\nezXlL6KTPQRYDHKLhworRRJhkBo/N21yEVM=\r\n=Q0MQ\r\n-----END PGP SIGNATURE-----\r\n","size":25789},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.111_1650074548838_0.8561795455470296"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-16T02:02:38.724Z"},"1.4.112":{"name":"electron-to-chromium","version":"1.4.112","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.990.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6f8f3273d441212fd197f837d399daab3269e4ad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.112","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-BN5xdtPMlqUHo74daNNp/PwAGs4homs2RFxTB668wwkv7HAMvOY4L16Y5QrFxh69T2H2f1xWg8zQfrCDnpkvrA==","shasum":"ae3a46231d4b2cdc223d6c4d227c06a9a96da7c2","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.112.tgz","fileCount":13,"unpackedSize":165865,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC+4yax436owjab9ccNBlkXVhc5nqz8lJ7P9OWUlsjz6AiBe+7hm+2zubDbTt86mN9aIMaOuX3hYUzWET4Qv10q8tg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXd/2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/OBAAo8XGvsfh3knzmq0i1+MbYP1Ra9Nj9pAkXynja80cvu+dMdoz\r\na7TbACUJRKIwS0HZjScRaWhrsxl13uld/hPXzIqrdKW3B9Vwu9MAHLJoc9Ik\r\n0nqXUP4ANXjeaGfXH4aVqrMGLdTKvnIDQ8S95O28+IWAwzzlbfNQ+tch2b99\r\nKCUEaWcFlJ6agD64LF9zNYOqUUx1gAeKL849Fo2fSK8PJZ7gRUa4Yp3ddLrM\r\nP2tEVr9WMxOLec157oZnpZUUqiM6TdLJiMCHIoKfk8M4tF4AYHLP3/YSVo32\r\ngl/5sxl6TivyNFQrZsyztOjbje64SmQeiqfLhw42QoWPMvd1TM41uu+y7wY0\r\nri9h18W36VLUyeYFjI2l9p1eZ1EuqiZlEq6S9DLnhNA6MdkihE3e5SLWjs+Z\r\nwgRYb89yQ1iMJQsbEQjwHZo6tcyn7cfETg22JGjG5wjvWzVDRizNIb4NxxTL\r\nW5Xf1E6Mn1+PZB/OezYgHrWAaGRj8skCzvKAAOjFoPiSQwhYOlqnMGAbYiyQ\r\nWgCZsQ30KljXaQnd9UJMEFk6JzfNNmYv/j+9ODuIYUePQj6gvN/+RjZK840L\r\nadUJTjCXhYx+Rxrj7WfnET+ZpS5Q+K3nKIMJserezvmAXuTrHqJ5Dy2cgqus\r\n8HpmRa6irJU7R21fUxK6uK2hXQG2vXlVAOQ=\r\n=gX4/\r\n-----END PGP SIGNATURE-----\r\n","size":25798},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.112_1650319350157_0.12728335666575918"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-18T22:02:39.529Z"},"1.4.113":{"name":"electron-to-chromium","version":"1.4.113","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.991.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"39e6bc0ad3c6d499cf14f9538bafbfb7e881996a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.113","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-s30WKxp27F3bBH6fA07FYL2Xm/FYnYrKpMjHr3XVCTUb9anAyZn/BeZfPWgTZGAbJeT4NxNwISSbLcYZvggPMA==","shasum":"b3425c086e2f4fc31e9e53a724c6f239e3adb8b9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.113.tgz","fileCount":13,"unpackedSize":165969,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnQWCBBXl2uHLsnxZCM9TtB50eXoGKnIr9p/DiqYeW5AIgNaEDmQxu+PCXOE2EJL8+jnWrGDKc2NSTlyj4ynksC7o="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXhgzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHJg/9ERi5hCLTTmbn4OauLDdgRZT+cfTbo2cqdv46rwywkrYGGQFg\r\nH7EupbFF5y6/htp6WBpTx7dINKlDR8AVIz5YVTE/2oulcuj6VETlJlgWDoxh\r\nyD7LHwv4uksTV0VlBim8+ZidWUB4xX3tfufs11JCzPoVn8ptQ/GtXHlrUecD\r\nMSgVRx1Z3wbi+jcXCDXiYvlB0atsTlv2iziWxADvT/dKCbVCRe7HhPJst++j\r\nZZe6wgHVtsjy4xLLJfD4teNoc/u6QWglnAAY7zP4VCn99PHU4J3kYrl5oOlG\r\nuaEhg1zdwKzWFwoVRkX284vmVLAjwJgn+D5evnccpWAGijtKiWiO5h/q1z7J\r\nKctvwNIjzSUvAT56IllOK4WF5mIZEYB91+fa5C7a4Jl9e6BGWBis2V4j2fPM\r\nneQJbKzwardTS75CJX0v6H0OqIz+eC3oBbhA7n2nKB34LppbndMh8BjrFKe+\r\np9w9/rVmfuXs74S4glgoDih5FadAEQRAI2x+gW+Ox2bht5O1t5XPNgMaLglx\r\n6Dfk1kIVqe89zgR7kDXmCJElWZ1zrk5+fEzWSyI5fIibRRFUk+IArixI8JZC\r\nQVnziA//2PVTjB5OYIjI+U6WyEqAHnEszcNebfQq9sLKHHHSIMFJv8gPWLUd\r\n5lcifMWLRPnzfCzQM2PFpH/lVs3v5ZtdGsQ=\r\n=8qAn\r\n-----END PGP SIGNATURE-----\r\n","size":25811},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.113_1650333747351_0.2032814232625777"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-19T02:02:41.493Z"},"1.4.114":{"name":"electron-to-chromium","version":"1.4.114","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.993.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"60704a4f70f35a224f445271c4efb971eb3063f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.114","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-gRwLpVYWHGbERPU6o8pKfR168V6enWEXzZc6zQNNXbgJ7UJna+9qzAIHY94+9KOv71D/CH+QebLA9pChD2q8zA==","shasum":"d85ec0808dd50b0cf6e6b262480ffd385f71c873","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.114.tgz","fileCount":13,"unpackedSize":166109,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE+QBPc9CfEXE38xhtfTYiXmMW7wF2JokdMiCAjCSwiOAiEAwAoon/SF/ERQXvMnWUg7TcHk7BCRvFXBFyh73ZiguKQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX2m1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4VxAAk49hYD2Q3RNqs2cH4yjo14inlr31+1v0i4pvcvEzcJ9at558\r\nwPzIGaUFYL5bg4ONyRoS8PZUxQ/CKJBuXNlPTop28VHfMZSijJZgCzWUq2Hq\r\n9UedlPFKx+LqUcOfuQsZ272aDX1czWblAIYf4A6DpJHb43V2Rtqldf4xTtzM\r\nusELn2S5S5AyJh5ud5E/Wt44esgIMpWPc+l/8iw6HiZDBMxFX/vgFLv7VGy/\r\n0GVRN887eE8R+RR3SVSdlf70QvdsCGZdEVLfRwSbGvhXSHxLrLedakYjiW9z\r\n4mmqR/eOG5z0+sBQuPIXulTOkC93robU++UljqQZvF/wCX4LijdRqCft5Ssa\r\nYQ0vozuBI/pGp3tVNhMR7ta7keCuWGibIv/e1aeRmrqYSLsbPfGzitFhxH9m\r\n7SLCrlKVOa4UUmWn8Hz5iY2oZ/f/hxXbiT5H97UT7XXP5F3WL1srDhfwDwRp\r\nvs0mv38Xt3vDHesX5P2Gp1hKR0ivet0kTadSMakEf/37sk+E1/U8JieNLtNs\r\naMxE4Sd10fe7kfsmwVcgEPoz86zbzYuardHBVRg+xyDj5S4LAbFQUtYOF3qt\r\nX/lvb3IWP27TjTtyU1nsjZQ4d+aRFWVciJ2ad9GXKi1NrXl1U2oDrYd9KW51\r\nhn0s8en/xsinKKwHBv9yMQAT7SWlB4bG0es=\r\n=hpOr\r\n-----END PGP SIGNATURE-----\r\n","size":25822},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.114_1650420149438_0.1322523168337537"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-20T02:03:44.054Z"},"1.4.115":{"name":"electron-to-chromium","version":"1.4.115","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.994.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6ab843da136bb1f67c81abbb277922d8028d6128","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.115","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-yy1W7cTcreskCWSRTtvp8CNLEci3uYBn5s1U4IytDz7v485iLVPh4QwFuSCavsFbxRLVvwnHNXEFIDShrk/UnQ==","shasum":"62d68576385f17e9b268b04e98cc132ed04c6671","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.115.tgz","fileCount":13,"unpackedSize":166249,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIELaM4UGRHnxE6LpD8uLEQ8giuoxFdr0IaMAgYA4KoVyAiBM5ymkmeKGNWx/Fk0Nlx/rSuHLvqvFcEoU8JjM/hq2NQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYIL3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo96w//cl9Iy2d+uvmO60O/HazmePNIGj3K4hFwmsr2C1o4KWa9oTEW\r\n3nVTi5xVZS6DKuDfAFbJC8rlcqX+1L65eR19TZdm7XvFinV/GyO1MExrqJ5P\r\nl1Qt0usNr/1K/mE5SceTZBWmTPop2vWfBNKuDfMP4RT8pm6JKLLvAgb0Ggvj\r\ncOyf0yKxH3rPyE1dqFKcNwpGYkcqbcdaD48UGhNCe9ak4/cSr5+UdiUFBdx9\r\nO8fKpOdrPEy7FlAejSTP2mgbZIfAJODk5ZKVD9FIXkhTMCwHdwKa/LXg5NVE\r\nKt31pWcVBvG79gwE+5hhaQuInBl9RXI5hYI/Wo6AZTumkSGqjtft3exz6BZQ\r\nOUnFvQPjzzCxwyP+zESiKGSw5NOub4d0d01NwADzEcSAnMFgBlh8DVyjbMb4\r\nJaoBtwU9H2wdcypc/ACyInpnCno3v221INNZT8eSFcTHj4Add0nv0wsaebN5\r\nA9xqh0FJoSOpTj3DkhSg0iy/WIBymr/Lwdws269TmaxwGhUEyTFv/RjSKpyE\r\nfSJjUnDSuSp52K5UPemrxFEEwGV7K7ovCm17eVH/NC0bUxrBOYl5tPBY3HMH\r\n+5qmYP/qvDkb9PI31igrtpGFhjmZILUuAVaC4mJag1set7MNqKcQd1LwKHEZ\r\nm695vcacUwcmedVKw+SPa0hOiuIPR3Ibnp8=\r\n=O290\r\n-----END PGP SIGNATURE-----\r\n","size":25829},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.115_1650492151225_0.4861894840069636"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-20T22:02:52.290Z"},"1.4.116":{"name":"electron-to-chromium","version":"1.4.116","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.995.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ecf99ade8d60be06d37387c62116af3159f6a89b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.116","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-sy2ol5DTH0sy8xvAglyHFxsNFXFsOBfa6rGmrtjiSdQOp53ossspduOzU+5Lx23H7GxEjjvtSF36XqkajV6Z5A==","shasum":"cf0b106d462a78e43ef33cc269caf2ad70e3c7a8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.116.tgz","fileCount":13,"unpackedSize":166397,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHex3PfcsNj52T9R1XA/GIWywIMWGpN3ly0uEkZgN30pAiEAolvwGW4yz2QkFkdxn5MlJLakI7Y3RYKacvo6tBbHjAY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYLs0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBGg/+OTdMfJyOLZ4SMXaHULYiSEpNpjI1ppiOGTegq1Serxy4Bw1e\r\nUh0x1ryi7AM6iRDkx723DyTNBKWh6TpqtHNjPMax29QU5udSevFtxSfv+1lJ\r\n0Vj5hsQlgfCQ4dtR7wcMYPx0ERoCU1uVfRaBK/Bz1dC+qcWHNWg4pHbLvGUE\r\nC3Av6mX/kLS8pMJCDbn/8Kcx+5LlQ2S0L1Qi5vS9EDSo+Nd809oO+T8nrygV\r\njquCZvAlZHBJxwj0nshF2Saqbbka/QfIES+cxebqsCOiOo6+fhVvGCWNP8rr\r\ntch2+LW+NoEEjSuw7J2A8RYnIdsHjlFR9SjvtZYe9ecZwe5TWIdQMli198ze\r\nnTXJa9DDmDtkKLlL03i8PF+24kYf49FdnGpIBG/ztyar7AWnEZt1yZdL6DKU\r\nI7n00RjSK7HvLmqVHmBVPh3Ob4zSGriOpuGkxgto73+4ShuzGUkBVLlhKK74\r\n6bxt02YNZO+wIu8jKJBwrxcAt4+OxYhwb0PfokWcBbkRqb6Lc2OO3vvQ/rOF\r\nlgc7cwyAudPuLG2xnYJwCc+RL3neEXhj770Wlx7rsJwZ78HBIuN3yq8jHf77\r\nvrpgKY6+R0jIV7XG6CBTet1flyw1quxcwb3VJnlnwC1rrF2UOeLFVE5hXwCc\r\nu9ssO9VmDgh6t9fpd98jXDbH4L+cAB8q5fg=\r\n=JWbL\r\n-----END PGP SIGNATURE-----\r\n","size":25845},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.116_1650506548113_0.6361427257014369"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-21T02:02:38.991Z"},"1.4.117":{"name":"electron-to-chromium","version":"1.4.117","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.996.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a9fcbbae23c89fdda9551093c77038d049b68243","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.117","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-ypZHxY+Sf/PXu7LVN+xoeanyisnJeSOy8Ki439L/oLueZb4c72FI45zXcK3gPpmTwyufh9m6NnbMLXnJh/0Fxg==","shasum":"829d747deb9faa653cab72764a891ef523ba7413","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.117.tgz","fileCount":13,"unpackedSize":166545,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeNHhHgkk7DnY/+vIZ6cNe8VPWS90oPxBDqU4HNjb1fQIhALAdGqJzFZZ49sxRPeEwEMCQMAC9LO5E6aYm5VI0ZKw4"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYSuyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5zA//USCVgYrnhKXNyqSVGucFa/1nDp4mRuuvKAIv7JaXnYqsw7+8\r\nzYzh+SLZZKgHsxd5R2TJV1yKiAy3Ba475Ogynk+wNYnOxnvA5/D1S9uo4KYV\r\nfyDq8DUP+Ykgx9fjT14sc3rYwigL6hhUqgD0gTBwaCwLdMJfqPsFwmCIeVy7\r\nKTTQcxHNaJ9VCxdJ34M5tHZe9E6gwqxYPr1Sx8LvdvkE9vJgljX6CzsohLrq\r\n/bwoaeTrAFhaZ+pw+m1fisr+PFYnprVq73M7m3ci4zujUkQyf9s1Z7pUc+Do\r\nEDcJALc4QQKn1qo7bA6RTfYodYPh6s2kTnwQi3fjF69szmAurwE60On0xKaJ\r\nMiUQulW4ROQ7pEH9ewNImqkln0ch1QSessSnUVFuzoHbyKlp4E2GrhNMd/P1\r\n4FSDxxob0SUAoWLkuCUkGNCAYYAuwQJEanjnpHk3X6w9KTcWdysTqJ89UgKP\r\nApHWq5r+V8sWf2yKICceyB7l7rh/sBjcSgzG6dIMH4gHyHBvvSds8p43IjgF\r\npEIED+hgcKTaDXzW4q53cYgktIMU+Fdgo4Ugdi+3ldiz4sCw9aUXksqySUcu\r\nAaM+45Ay0cDrtpE5wADxPSVHfzwoqykxj65QGtaayWfInvlSd0yYVywsc113\r\nwWxLJj1Xp6SZ9KgC+U7r1WpUBn+Ap9/xrOM=\r\n=5hJB\r\n-----END PGP SIGNATURE-----\r\n","size":25867},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.117_1650535346529_0.9202227818311466"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-21T10:03:09.112Z"},"1.4.118":{"name":"electron-to-chromium","version":"1.4.118","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.997.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5cb2d8fa7081e50f4fc39a02772a3562bf445c2e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.118","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-maZIKjnYDvF7Fs35nvVcyr44UcKNwybr93Oba2n3HkKDFAtk0svERkLN/HyczJDS3Fo4wU9th9fUQd09ZLtj1w==","shasum":"2d917c71712dac9652cc01af46c7d0bd51552974","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.118.tgz","fileCount":13,"unpackedSize":166789,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBL2g4kKyMJcVRBYLWjzt29BbT8URR83NerOKUjVhm9AAiBVwzOfX2dAZI722Z72gdF+CsYG0gvakLeZvIDC82bbfw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYgy1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrIPQ//dxU8iZvcR5+6JIX7OmOnlRqi/TPSHEYRhxbOhKCxnChcNQ4q\r\nqk7mqiFeS1qo9RqUVtroqHq5mNQmgNIBZyUffh5JMtiQ9RuoasBTlE44bd8L\r\nkEpwvmyMGl7GuVaQOBIj2Z8IRn3CYkl+WDNbVNizqzToNV0Te8tH2ohrHv+Z\r\naYG3hyDD1TlGKEfOoDHyQAz9Fl5t1v+4V2qHo4SyamtkKc+G8Ag5kp/ghKLT\r\nmY6rVnsVn3Gl0WiE/ltn8S5yl5yKsvJKx2RZWu8xf2RQGvJOTYktMPOvcCRi\r\naqZqOMGIPsNK1c1dvprLoWWOIt2IRPGm0/FOX9fQXyr8CZyBfW3lkejCZRoR\r\nkvVh7YlRhLY+R+FCAM8NdLUBs2V4mdG2cM55qCgj4jz0lW/DIFQfPOlWz1y6\r\nN4HeZB0k5eIfCq3v6/fMw2ZFMqAyWQQb+BcD21gIZDeksKqeZNiBfIInEMvU\r\nRweFxsXLYMZmuAY7PI9CBnDitDtFDXomKv46nSXV+53+jzAKb5P9mWLQ8tDv\r\nrFAXbpHGWZpYfNuh6bN9gqRNFd+H+a2WYtQ8KydJmT8nSaECzxQcR3prLxYd\r\noWA29Q6MuyKR4pmgcwaNMOxnAJwZGv5fg0Wa/02Bc4pGh8E7UA/4KBe5Dyp5\r\ncYHC8equv8hFZNO2EjNcSXHLFhp2OTGvcm8=\r\n=2HTM\r\n-----END PGP SIGNATURE-----\r\n","size":25890},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.118_1650592949547_0.8507963785440009"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-22T02:02:43.739Z"},"1.4.119":{"name":"electron-to-chromium","version":"1.4.119","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.998.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2941e546db1c21de7621110aa0c495ab567f029a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.119","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-HPEmKy+d0xK8oCfEHc5t6wDsSAi1WmE3Ld08QrBjAPxaAzfuKP66VJ77lcTqxTt7GJmSE279s75mhW64Xh+4kw==","shasum":"a1dcef9f9a0283119256030a605da6ae63b0a402","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.119.tgz","fileCount":13,"unpackedSize":164574,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFN6OaFXMZZBc8gPfnOrcLOm8Ap/lZ+w2jKA5oub4Cj8AiAaER9zXRyo6dEgA61wr++jhuukC4IJDWfiZJWvrmeR0g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZqn3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqScQ//bwGW2bXCw4cFgvxdYYElylPmLT0RaXYkkSBB64jRm7I11hl1\r\nkISqzop/AmgcEoSTJIxYM1iQ/4/VnB0i++RxLrh2XuqpP41EfPUYZNUmZXpn\r\nRXU+J7is8ou9pLmIbrnMT0T5EwNvxu9+T1r7hd/LFY54O3g9/SyUHyDkE0o8\r\n7Ey7e8AOVq9nU28euNJWiCrvlqTqWk2Z9vxCia+rTaGzIZWAFG8UAk81rGmE\r\nXdxvqsyWQ5dRlwRbUIb3G5Ux6q4ubQ3LArFtGxNOfPtb3sRsQpKVoc2+LDjY\r\nPBbNu+J6BQEXrmvdS7jJhm8izq+oQjnrDtnGxp9pFQrNvYpaEm7dnZKqUKK/\r\n0hUo6lyVAC2kJW4y2yzOD3ZTgU7M0Uee1j02jlD/WMAENR/RELL4CQNNPmu1\r\n3ZiTG/pWfBRJF3vtLKPJ8VXqDZ8LMNAF6Q56Oizs6Oy1aOAzMFmPjSKa/NMC\r\nGoxdSUhWjBcb102Bz4r3DqauKJi+Pu6hlCX4j3vL5rb94ICcUHJJBDM71R4q\r\n9iF0iT3sjojoFUY76nDxAXZ2KFdgrpzWAuJiJ9k/LYL5vAzXEU9+RMkTdgWq\r\nXzrUpm0LcWwSWvvAzJ7P2jtGCoDX6DhCv3YlfteGYPj1LeLx/DBa9SnJi9vM\r\nb9Fe9c2sGtbf8jNtALu2uo7fEonSB3OJByg=\r\n=nTch\r\n-----END PGP SIGNATURE-----\r\n","size":25538},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.119_1650895350933_0.5413523292619942"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-25T14:02:39.882Z"},"1.4.120":{"name":"electron-to-chromium","version":"1.4.120","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.999.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"52a567fb437a560395218cfbadf9a67011818497","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.120","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-H3ksXiGhoYVQCmoMT0JMN07kEDBzc6TSv1OSp7UUPxNiSvQl7NeQCyZiMZhLEmNJ89C5FnD4Eoe1ytZnMQxxaw==","shasum":"77986d449261913b47b9a532c4f452e333be0e49","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.120.tgz","fileCount":13,"unpackedSize":165518,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDQcxgmYaaW3gx7LuVeZQeTFcT7uIKT+oMu0lbTexlGoAiEA3vW02+AntEW1JQkc2j1/Gh/CNIlxUH1elPcRO3vW+rw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZxp5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPhxAAlCj9QNpLEAeYXnuRx2m886xXfONsQQDXvJrjXhqHnihWeXOZ\r\nNTfUhHktHgd3XQ3DtOnBIBDZOAUF3YBP4TgWvFS8NbYx3up/9gY2y6HqV8TJ\r\n4TAqf8mVR9zMbGiTHp1wuSeGxSysC5TANcb+CL/1QZvS/soS21Yd/7w9V1TO\r\njGEAo4KTy0rUI2dJ+8in+NO2ul2c9YDqnhvDr9hUoZn7t72EIQi37TKg+JtC\r\nxfiXrJg+ysRr/HgIlinGV05WSJF2NttPHSJiF4AfnGyzoNXCVhK5CxJJQL43\r\nI97L0MoVg138f4EPpIrc+Xp+9ehoqUkiZTwRPYqaSYyYlZNE7j/DnxxAj7dV\r\nJV0tH84AWyVQAsoCRUU/cOSxnQFp+teh7ZjXQfW7vefhneKuCqxdlrL0ASfS\r\n+j54v3OB+k4pHw0z8hK/RXeKsA2Q+QhRHYA1JkxjaCgFolL3DaW+BWg54ivh\r\nTkDZID4UAH2v8TOYF4wRsj7vLCGTLG1WVcQvPuEmgadd4SqJkq4uV1HeQ51R\r\nDu3fhcEmAXCoKLgV5gVk4/cnudMIUENVvEI8/wDpc+MZpMx9r+o6323bQ6eW\r\nYLnybfXCzYNV2Fkm52UdUbRAnTU7QJQXJACACpZPJaQvSpCg7E/ZySkKHDop\r\nFyp6MRoiDQy/fy1FfVU59FV41+ImTr+9X+E=\r\n=cntw\r\n-----END PGP SIGNATURE-----\r\n","size":25678},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.120_1650924152785_0.25646329897031883"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-25T22:02:42.795Z"},"1.4.121":{"name":"electron-to-chromium","version":"1.4.121","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1000.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"dfca0ec4bae6011e0ed9d16daed42cb314188e2d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.121","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-N7OXhMr1p2oa9EkOhmHpmOm43DHzs55dep2FF6M7y6px5QJBheqEE3nwwZ+xJowlff+AEmMOdg3ARYGB+0kzbA==","shasum":"e2fa3b7bd592643c6b12ae6de2882550a29b7799","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.121.tgz","fileCount":13,"unpackedSize":164528,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4C+SrcTY6xWm9IoPOI3m1SMuy8/ej6KGDRZxakscUJQIgc2+Avp0ap6GvbKNPk0WSSKbj3dgjQ1NM7CAJBremzy8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ1K0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqirBAAlHxWD09ZVpMC3UVPU5wJ1J+n4d+gLLcIzglSZs4SIUdRdY1X\r\nwiPEAk7K1lHtPlQFyWgC8OZbjaYspdzlWErdYfiCTdle9QJSFNCaRSesXZYx\r\nHtpIjBUwyJvuVK6+q+WlCEpgaswgP3Ex9a0wFWVoKlElQvLV4RFTR8Ad4K5Z\r\n5a1+bCSkely0dtoAN14ZPra4a7wZkl9z+b56zW80HOryTmY2gIl6aCKobMKp\r\nnEBjtgxYfHLl04viw9zQQDsNDTVHYeiG9UH9DVTWk+Vwl0G+ujd0twn8vIY+\r\nJZY5+TQXj7nrvESZyVZ20pnomv13AljWbATbnoXrYzXBeZ6spvAYFo+DDhw1\r\n+vfZFua11CzYCj2xZ1ygH63spFqGi7A/Fpf7nnfGtMw9g5GdLgIxDvnjjYRz\r\nE6j8+etQaSfsRWyxV3TI4/tLnQSxcc6zrOgqDjYz4pyDHk6HCiFFB4rGkj9e\r\nVViXyQC0q+4z87Ik1g2wPm5giqmJJkuV7iiQX18Y5jHvHn/m+pmXQKGnY9DN\r\n4ziS3LRsi/NHYXAUntXyJ4bMAu5loiDb7Ez5k5eRYOgnGzLa2776BYulGNq5\r\nlkZQ6dnYDkkDZImP9kwT3Ubor43yK9ccQQbRgMWWnQWMPfAR7Pg6ljlaiU+d\r\nXMonrxs1YutFh5xelK1c2PgGnC5jmJa+sNY=\r\n=3/n7\r\n-----END PGP SIGNATURE-----\r\n","size":25601},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.121_1650938548139_0.07642490633715537"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-26T02:02:36.769Z"},"1.4.122":{"name":"electron-to-chromium","version":"1.4.122","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1001.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"55b7487f870b03294c5aaf54227e7423a19d976f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.122","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-VuLNxTIt8sBWIT2sd186xPd18Y8KcK8myLd9nMdSJOYZwFUxxbLVmX/T1VX+qqaytRlrYYQv39myxJdXtu7Ysw==","shasum":"56e518e8c4433876b01d4460eac0f653841ed510","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.122.tgz","fileCount":13,"unpackedSize":167073,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFxjks0pnTqiAbwv2QyqDirLMR2LyEwi37CRmvHGl/WFAiEA6xDwBKgTJUwl/RhQekUyZKo76kgKnLmKn+ghX7w113E="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ/t4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqcYw//XG+BFNgjWAEW6FtRFXAkuFIbegVsVgOCiNFRJX7+KeF3KQg3\r\nRO1U5qZP4eZVapoZRYyEIoruip3VsGIfwK8qGOCrg+5fTNwGpBZYCWE8RLOQ\r\nfyZN0cs2AiFP0jPC6xAcJZMllRhx902Zesms2qHUBIS9Cq6Y8M10oz7pB71s\r\nGZCr0nPGuITa7kNqhN6/fDSnbMhHhAkE8UXeZsyMq/ka9qW8VFy/xTvVG7xV\r\nTJx+hjsIZC13uDpj41UcuNthjp4t9UWVeniZ1cYfRKJsL0PQYmsRdDTiM74G\r\nNfoab6idft9TMnTLiNHZTqWWZZNwkhkE7Vmc7tJrcU1rThriib5+nJrheWnG\r\n3NQZfRwt5KUa9E2ZRNX2UH6kpZeQVq8m0pTDg5kh9T3dm7JBA8IvUBTqJU07\r\nE5tDYRbjupB/g7jI3ZXJxyuuvsL8P7Q9tkUKYyS36u2wPHuQE8Zeyl4w5wGL\r\nbV6nkku5FW3PGzTaB8/DNphb3Fckr+rfdqY5OmcJVaRAb911uXWHpMiZxNg1\r\nPAQ+sq+VFC807itSw4oFQ7yf7GdZXyJf0/hGYEYP8II018FidtiNrS7eRd+Q\r\nu/dySkQA29+8NheJzwfXKjkLHUPQLcekl+xiA/N/ma6lQN/1gDNvxblckwKW\r\n0SO+/9yKkROpi77VK/syqqJf/8kHOiKk/KA=\r\n=sQHA\r\n-----END PGP SIGNATURE-----\r\n","size":25924},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.122_1650981752455_0.7773773781987061"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-26T14:53:15.222Z"},"1.4.123":{"name":"electron-to-chromium","version":"1.4.123","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1002.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d1472e94d4c803108213877ea84e08aee921288f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.123","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-0pHGE53WkYoFbsgwYcVKEpWa6jbzlvkohIEA2CUoZ9b5KC+w/zlMiQHvW/4IBcOh7YoEFqRNavgTk02TBoUTUw==","shasum":"de88ea7fd29d7c868e63c88f129e91494bcf3266","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.123.tgz","fileCount":13,"unpackedSize":167213,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGuAxENqonpd0Yyd9jaavuNmubO0/nwwzI7nosMu5GMYAiAGiPJH/lUxUsL1UxBOII8xjIcoNZNM467u1+e63Ikb8g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaKQ5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7CQ//R/3E3GyZJvyEElmCnnjUYUwBhJj80ttdcnyoRlRu2/Ww3vaA\r\nIL+xjBv+TJCnHtJ15D9hL3DxVW63Nc2JFiDTbuL9Zq6hk1yz541/ALNlp1XK\r\noJg/dNtUmcl7wxK2M+cT7tJc5oSTOiFB0j4SDqbIqbo807JvmHzC6H7i1zeV\r\nTWKFe0dMblBlUam7VI9fz9+N8o3vO5iZn0S+DOGqmahHtPUTfTooE3Yva4x6\r\nL+e6hHCftrPit11mLKnMw6R0UMq6wf9UONbqs0ZmsKm9/QzJk5eocqhxKAL0\r\nlrD2HYknJOMfYy9nCyX4n6R8GQWA7vR7W8oJZDfsBZux2kPJuiaQX2VOQReF\r\ntpLMqzA1Suq5QE35jjYRkUPFoW01jWhyErPP3Bespn8UZI3T91t1LAKStXOy\r\ng0YoSe16jR7Qmw+kbHfpvwDLKk6Zyrybaop1IG0zy/wd7ZFAIVVJVNtuw7JB\r\nMq5PHVM5YV4Rj1fxuPbIZbXIPbFArt6omnGq2kxlALvIJm0pOyAsV+FpjnFx\r\nD+4Fe0Xseqywl93Ds023KgFgvm53j0yK9ajN7Z8zQCww9U27IjhvFgz4Ec6F\r\neHl3E7vXwGvQm0ygzbCwjvOzbyKAwmNfTDzjEhEVcWiZUrXaswP5E6kXPhRw\r\nrqaJcieOBAN2ux6SgUTVhgvkAd5sgjNwQQs=\r\n=3nl7\r\n-----END PGP SIGNATURE-----\r\n","size":25936},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.123_1651024953785_0.5510093127716555"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-27T02:02:46.344Z"},"1.4.124":{"name":"electron-to-chromium","version":"1.4.124","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1004.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3f451a6a95ceabcd3e6550ed5d8908c5b26aefea","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.124","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-VhaE9VUYU6d2eIb+4xf83CATD+T+3bTzvxvlADkQE+c2hisiw3sZmvEDtsW704+Zky9WZGhBuQXijDVqSriQLA==","shasum":"e9015e234d8632920dcdf5480351da9e845ed220","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.124.tgz","fileCount":13,"unpackedSize":167353,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBIleB1u6U/B3meJ7yamiY3EG9LPSmsm/LXPLZ1AAs3AAiEAj+55qRKvxCXC8QwPuOwoc0isHOk0Lj3e5JYqxp7xQkA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiab16ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoeoQ//RIdKtr7swfP5l8u6rUVhK1HeLHOkkJICc4Vo2a+fbQnshhmi\r\nRh5hbP/oZ4Z3y5QL9LUki2rFNUbCty8AM6rU/H/jPHA2XzY++C5nHkdSQNdo\r\nRMMZqRVLeNkpGDioHj9/4uXuynLHTJTEky0SWVr719OGemOSIsaDU4OWlT/F\r\n9eJv3rksv/9X3qagJVLeSWFdkZSaCimXbv0Pc0QNj3CuAALvEaCyA0F1OR+p\r\nneZENFUCX6rj+L2bjFklW56rNA2WkMuRyNuy0V81Bc66q7xA/mj5APb7byiF\r\nNOdr8Xl1KL35yo6h94n4O4wjQZZ9VXJyUdM1/1CozLQlEbFyLYdkKuAmEPLV\r\noSNeuKilHzD2azx/Gi1s1qCTyy4XXjkJMkpngZjAEoGnaZ/mVlRDExABFzf0\r\nXehCQ8Z94+PrQdWp75Tg8LSlk/26AXctPy6zTrxvP8wwkZdk9nLNeawOTrgW\r\nwxEnTwZFfPR0IvXK05Oe/8/s9ULwPbOI2x4chOE6E9aPKTUqMCbwZKTBT/jY\r\nDaItgrTmCKYP0VMYCVCfkZa4RRBdaB8q3UvHJyITcmiR+MKoqloGmbrrXmuo\r\n/YU/zq2nlIFejX8sDRBRM7/w7b93C+WJb8R/85UDX2mleIZQDgftAGVPusQ4\r\nzBgmrwmRm9AuRkx9aLpT+nDuK9k4tm2kqB4=\r\n=tZp2\r\n-----END PGP SIGNATURE-----\r\n","size":25943},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.124_1651096954007_0.16202516927655264"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-27T23:05:51.876Z"},"1.4.125":{"name":"electron-to-chromium","version":"1.4.125","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1005.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f9d29b5d6a9413d4ee0dbcd3cf16578a6792c51b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.125","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-1lQM6s0FnAKt9LCfL05S8wnuAhVMemi7zCFWnTZ0vu7jR1a0RD8ML1gRBsyeEp6MRU+zNbgyaKcjyU1aPIpJYA==","shasum":"ad6dd69f00d53b430f2ffd20bb2bb41b6c6e0092","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.125.tgz","fileCount":13,"unpackedSize":167493,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUu5PKn63y6TXHKxJfV2uh9zRgK733bZ8kfmRl3oPXsQIhAKy9h2r+LKNRaLOTp3441HNzRAAU6zCuXOC73WDLMkMo"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaw75ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmomsw/9FeR+7Ms3UjxYm5xQMqqXOC8YSnJjcbaSGkidVHTjPKou+Rlk\r\nnEdFZpx7W5DS7PEGb0RxGoMQubFPqXvxH0Z+gTZarImzEm6TI+jF0b6u1OZp\r\nTIs3vr84z1lOvFEudN7eTTB3BdB9ghAKLika6MiBMR0DRyaBQFlYFc22Dkd6\r\nfngSWTqxNuKaxNPzy1zTDU1abcckpTGMyv/qi0fBzbK5kxxElmhErouQwN4J\r\nJ9mZvUReswkTPaGjOq5rraf3j+Ztb6nHbNcFEbSK5c4OnoiihJ26SiOU22di\r\nF6LfzRZ4drQoXIa4Ieg/8RAolONAduasLmhTDa9tUagg/aZJcFc+oGa5eyGx\r\nxgV9dPKFCHCTDYOOfOLzPni8CgccF7eJZmcqknWMHzzNIaY/zwth4gRZkiWE\r\n5gf+XH4LA8S8mzsg0n7ypeXOXpMdLz33oG2y7V08aPtighsyZ8ce2olM27wh\r\n3gvj5mqGS9e/ml85FAZOQ9AiYux8O6eq/cn4PDHYm13EaVkOwaQK7QTdZke3\r\nDGKMleMLgSbdWIy1F5uWCNI0OIypyK6VCuCCB9fKbZKnagbkGiQjiN+hVuzI\r\n+SHSZw2wqryWrLfkkmXvPc/NxxvIvynCwGYxE/Q5TlKedlEjyWDofsvjUhyt\r\nUOhW3YHbjjLHf5SrTuL0HjkKeF5OjWUtRPQ=\r\n=pluP\r\n-----END PGP SIGNATURE-----\r\n","size":25946},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.125_1651183353178_0.6576030998429423"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-28T22:10:53.516Z"},"1.4.126":{"name":"electron-to-chromium","version":"1.4.126","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1006.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"88ead15e30476e0f8dc065513eb726bdc2bfa279","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.126","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-g/e18Yv0fBdN2c2Z8hWV9jOXxOxOByyG8uGufrJWUym+LHMYa5K2oR9C+D8Bvh0slUTarBwBBZFi41ImQjEZIA==","shasum":"56e9d3cbb658c58b45d05ecfedbcb3b09ab1a2d8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.126.tgz","fileCount":13,"unpackedSize":167667,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD756yRp0kGIJaWWpiR3KMecxO8ZX5gPRdis8BjErA22QIgZ+AX1HmXm8iPt0kgXMCDfL9mrxp+eXuE+9jSHHIxiZc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJia0dGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpFA//Tzsw/ESKDT4q9YVumg3Qa77lVMMMQ7s4GdD/745b83GTdjdQ\r\nbb7qeQ+d2SPbuJnourT2ApBqx3RdTA7nnfs+OvYEShidTSyBQXmNF1d86TuT\r\nKx3yU4nwE+tiAjNLq+0SP13/LSqdMsW11yYQp6Qx2plYaRmKNNLCUv+YEn+p\r\n1D5LX2umr1Tlzlf0ftgtLJ/ECIRbQYw1PMbYhpwkz4bTUyega3l3pz5T6GHf\r\nqDLWlsHrjouUnlwje83LKoi2/CnfXdJJAHEGX8XGYU541uz1avL8eDhmItbZ\r\nShdzHw20yP165Rmg1q/ghXieaku58ypkwQs6yM6GMMFdWdVBgmlbeCcmi1gU\r\nSurBzR2E61dQ849qMb6Fnt8T/S6OlLWDEz0CMcEP2UyxxcvlvHtqnHLhhdzp\r\n9LSxCAjLx1JTRAXi17uvNecq3uQpYM4N3x9n0b+BxH8W93i3O4FV1Q3lBl7V\r\nNPOIuw8oMMIHwiSiHwIIKUO2+Q66i/PWgrT6IuDvtLDLvv3HxbNo2D5iOWUe\r\nzlkuCFmbTUTXh7ejppHctPcYf6jyXIhPzb7CmfchDLqu1HD9dSipmPbEcbo5\r\ngikTYpP9hBynSwKKNwrn6qNBCe/DgywRCSI1+XbzBrOSnipSuuWL0Nr+Fw7G\r\nj9z+dyt0/9sxaBXH5nUlln7qDjq4oIgbz6c=\r\n=JRoR\r\n-----END PGP SIGNATURE-----\r\n","size":25970},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.126_1651197765888_0.2916729857843159"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-29T02:17:38.391Z"},"1.4.127":{"name":"electron-to-chromium","version":"1.4.127","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1007.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e2d22972bcc760cc5ceee8e5667035166c7a19f0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.127","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-nhD6S8nKI0O2MueC6blNOEZio+/PWppE/pevnf3LOlQA/fKPCrDp2Ao4wx4LFwmIkJpVdFdn2763YWLy9ENIZg==","shasum":"4ef19d5d920abe2676d938f4170729b44f7f423a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.127.tgz","fileCount":13,"unpackedSize":167815,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFB5sWQgSztxWUjVKvM0F3yE4gQwqchtDs16EvSjIOVuAiEA5eHbA0F4NbCR+d8ui6jqSKCqH+tW4l0ocGevpoDV/cg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJia7e8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKWhAAjaZE3HMFTXrhnuJ/JoCMfPR00j/6qyO8fUKJh9z/7dOsWeeH\r\n2KQ8tMhzpz4mbwgy9sPlmTMkFfJ/9iS7ku4RJtmyiksPragBhUR8MoACkM0s\r\nDklvapYrhSiSAU1GvloIN3Y0ZOpgLN+tfkLJ6fAJleoPOdv1Fy1eQITq3uTC\r\nKZTw19kB3nR5Z++8M+KthbdmZ6+dt4qa0Z65i9raHyYcr0/6rP4sNSPeODXT\r\nnxQsmdFutrfnEhHfBCgf6aFTPdAyafJmqQKslEWwjfBPLD/m4CQr+HzHBp1r\r\n5Q5PQtZSOwz61hwaqGfK8vUv1bU5/CBSD5Lpjc33HOgWTUBQqtPtaiVy6v1c\r\ne7s2/d2/oYv2zYnILKaHn/skzVJ1HvD1Eo2njCl86gY2oklxRAwClSWZn2Ec\r\ndCJQbLGu6J/es5IT89E3rVzghlMOBAsc7XYCtvrSdB1KmdIe/jflPIAcdR+9\r\nIUNLTO5B8dc2aOgf9xI6KejZcgzMN6biT7+hEJyFQjClszYjsdsF6FUBk8Cc\r\nVEJW0HeqqnIuOwfdRsuAK+DLqWaaqev5gm66qMsKl0bgEvI9iiphuO48qORg\r\nFV0NfROjAefkFNIkaj06OYn3R3QLFJkiud6FvBGU7meq8JODriBtzSCv/yDE\r\nMNKdfcdWvWLhapxZ6UqheBNUEWFRH+UQ8Ws=\r\n=Qbmc\r\n-----END PGP SIGNATURE-----\r\n","size":26009},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.127_1651226556442_0.4176203202139941"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-29T11:10:19.457Z"},"1.4.128":{"name":"electron-to-chromium","version":"1.4.128","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1008.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c08403d3f90b13abf3a90257499447583171c99d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.128","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-DT8G+2drgywCWN+74jbYJ7yXbdec9wefs+K8C0Tu2Hbhj7K0nod17Iq8hoS21MpuYYrL6oXu2Kd636KmzXVugQ==","shasum":"759dd0bf297183d30b87b0cb46c1b84a7c8f94f1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.128.tgz","fileCount":13,"unpackedSize":168129,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBRw/y2jUr6ENznNUQUwDPWcZI45oPTceNtbNmpO4W1nAiEA2B+CaSN6xapyliut87LPR1tBOTkHSLl/eZB8C320DQg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJibGB2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCAw/8CufEWLDtBtnbkdKA0yeOz1eNU3T0kdAOhtri5YeycQsRHSit\r\n0Yw3DanJpWx66iDcoxgC9MPh2MPDxHEMb6eiUjItMEYn5R3BKkQNvXfhQTr+\r\nZ9NyvL+aYKB1aaIhoYWsRYbyKeo3S5c1IG9PVUnRoQ3PRDM8Gpq+SVVbEzvI\r\nF5NRwfKbuhuCWIEVt/eTHcB7karUc7mQJjqRjd1jCqIW2Eu899/zuD9VQS9d\r\nkLdGtqMMwobe7HalQD96/tjUyffxGfLFve9alQ5dfoZUDNQYxk957pwhp6wY\r\nb/FAIilE8VCZ/Op++oe8cmU4VIJnb2tZpsSRpuoN7leuSZ22VeZYluSPS3cD\r\n1iSC0dINX5KzEVFBK7xMHI+0A3mFHvV0YurB12rC0vLOxAJP/KKi8muptqRe\r\nPrUh+nXhRQNDGDglXZgB5BFk4heJi/MtVsjBCRblfZCDfCy3IABGYV732X1p\r\nBNIfFvFqiYzRIX7uXx5dR5dKjtRgHThBpSKFvTtb2wqz7gBeFwb4PIaArjU8\r\nj0AGvRpUM6wGaarZsdGKPuUhLokwF4TegBpnHbElpkWmIEkZFA3b/trs1DVi\r\nVlRE3QI2XhxQeFcNzLcp9TwEi0J8WwgGiJQ4a/zn4Th4heMe5wKVez3j0b5q\r\nP9mCZwtIuq49IrrKVcvrMwfJ5S2GRpTilWY=\r\n=Heb2\r\n-----END PGP SIGNATURE-----\r\n","size":26035},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.128_1651269750412_0.7285885075179066"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-29T22:05:46.368Z"},"1.4.129":{"name":"electron-to-chromium","version":"1.4.129","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1009.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"dc33e09d979d84716fd32dc5ad4a18ccbcceeaf5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.129","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-GgtN6bsDtHdtXJtlMYZWGB/uOyjZWjmRDumXTas7dGBaB9zUyCjzHet1DY2KhyHN8R0GLbzZWqm4efeddqqyRQ==","shasum":"c675793885721beefff99da50f57c6525c2cd238","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.129.tgz","fileCount":13,"unpackedSize":168201,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHmY8VpJ4TVLB6BgIlLwke4fn4iWSIIODNT9nKj1mbHiAiAt2mAGd1TAUwXtpO3HEwkiobFi104wDKQgBNWpgNX/RA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJibJi3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYzRAAoB4Ud/+d0pSKM1n9nfdRowxMzHUJCYHbJeKrsEaCdoxUfY0z\r\ndcVNsfYPm9i4zOegryh1P7oXCpc/hKzh0GdtqAYzKlfq344Y2mv2dUleQjEf\r\nmv27NVw/a4FCix0rBwA3sLkjcr4r9Gcq6gLxW0OefZ8C3UzPLsW5DNHHv4KP\r\nLX15FMOipFASeZpoGAocC7Y5jPtLuERoI1gHFp+ZnMCWJuDP1CIzVTyU5j0v\r\nGK0/uT/fH3Ymlqhj0o0yBmB3qlJCuEQ7qwiEG7I5n56NxsDXYkl7wB48vCvJ\r\nALzADSkaNb6Qb4k/1jg4m7G6LnUOS63TGdABVFk0Y/uV/kNGTMD9yNPIlpuV\r\nPMa5F+Jj9shrMHJqpRxNYoS3nPlQAjnEZEpp1b+mXNNSGc7VKShlT/UQEyES\r\nYj3iDPGRghMsev9rNE9D6QAm1SrQ+1EhjX8ahyUphaj8fPlXtBtdpt9j0yDM\r\nFo5beLUkPOruxik05k1AMOUeKAGC4bBRwZtxUh6/gcXcopcVRq21VBetHBLF\r\nhPbMhIdlvhdomEsmYjK1yiJBtbGzTQoVfM2uNS4xVmlSgi4AbUAx5vpb0wxw\r\np41o4xUBH4GKQ30kXa0vmtWh95jCZbzUIrislZ7S9+6Xn/HlzrcZPKTabuin\r\ni5OW/iHQh0h6J9tmBivSH1fi4kTl/AgkxXs=\r\n=e5kx\r\n-----END PGP SIGNATURE-----\r\n","size":26043},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.129_1651284151215_0.9260486365732239"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-30T02:02:39.902Z"},"1.4.130":{"name":"electron-to-chromium","version":"1.4.130","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1010.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7a199bff1ac057554d4c15c9d0908e73a9a1ffa6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.130","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Xmht+yS42G0QAzLBYFTuCYofQ3NGUBENPyW9hi8PxrVm3E76AVVdFNl3xxTJ8/N2L8XEUb29hOEMGh/GFnZHrA==","shasum":"99d95d84dedb7d003c17151c67fde6d136dcc6ab","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.130.tgz","fileCount":13,"unpackedSize":168341,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9a5XThtQTVR5kdGQ3JbI0t/SQMqFeWraK8T0kN6X+SAIhAOaJenWXRrCBN28QuAYhBkl9LVLPvJTmkzInXv4mOIt7"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicFT3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLOhAAoiOfnBBvf8Ppi8Jrt6+mMGAOaFRXM3ScoS/yZvxsIDKy8mPP\r\nxLZtCr4U3/Rk+5OHy9qtlTjM2Rb1f1cznZAAIOcP+zxj3ix/05vRpktxgio9\r\neOXREQHOKtZta3OcxEuGFH6KGYOKHS38MMfnEEHfooQHNCL0qcgSXgkgwzol\r\nE/r/ehgk+Ev6LgNQxgFwZMK7nkrYA1YajtIulW1foglBDdYfPFwccEIYD0t0\r\nhH/OMNBvUvyjipz69myecvxnYIgHAd2ksL4HvgtjSiMt/PSiDq0HGfKR9BOp\r\nhUhi8nSA/dBBfawnbM9kOg0Vm8FqEwFntkNhInNvK+AEXm6vNu/rCqJxs3l5\r\nvAUYFwo0X9JzK27jHdMikG2PBfFH1zBw60Bgse+DoxXFTxpqkryuGNn1jBQ7\r\nVufn0Qh11W1IqnuEsEIiuFFApD5VKm8C0x84PBVYk+nib8dbS6YHhIjbClGq\r\nNuCKGawTDpJNoTkBBNOZDBh1JOxZzzq/9l//db00y1gnkft5vs5hYC9VI2Wt\r\nt6tqJqjIio0kw+9FIcykv0yIDCik74H3j0AwHxtlpVmYJKR/0GK7iF9A8s1M\r\nwRLEsWDkkQhqlhKawbFOgpqY+NzsiyEw36O0LO9Z7sHIhMXgzZ5v9iB6S5/T\r\ny8AGT4ZihzT1Rhi9lv59cIDUjCBIvYUaU0w=\r\n=JbHe\r\n-----END PGP SIGNATURE-----\r\n","size":26054},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.130_1651528951766_0.1411137636054256"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-02T22:03:42.324Z"},"1.4.131":{"name":"electron-to-chromium","version":"1.4.131","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1011.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1bc1d2f6d2fd9844c35e58820616a0188fc5ff33","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.131","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-oi3YPmaP87hiHn0c4ePB67tXaF+ldGhxvZnT19tW9zX6/Ej+pLN0Afja5rQ6S+TND7I9EuwQTT8JYn1k7R7rrw==","shasum":"ca42d22eac0fe545860fbc636a6f4a7190ba70a9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.131.tgz","fileCount":13,"unpackedSize":168441,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4IZtVITcFAhrIhR7M9+uhV8uDSiI+Xz3pBFGAydcsUQIhAIyID4ZKv5Qlm4kwvtKN8ojxLTLOPEKrG+iVASARTpXS"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicI07ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqG1g/+Jan/gEM4/syR8j2uGxoxiL6kdtGtlk4zD0AZS/UeMTQX3Rkf\r\nzVnwzEfH4YE9rWxhuFvxuBAVsugWNp6LKanIEkhSRFEt/abkTp7UwAIMn4m4\r\nXLI7QuF+qc9yzYoIduTQXwhNDr1LtvTDwDS6+/kKaZhqZK+VIwcqz7plGXqe\r\nFiIPeMS1YW+Ium5Jw+K4k8HpfooszhXMgy8RpFpXLSvF8uVocCs9zP5UvFHE\r\nyuES3QRWEmS66djDwLI4DBeDMEykXaV0XOkFS/rbh1Mc20zgSE1Fyw1wwV2s\r\nN+dLuG/ComhSihgEx8w1U5e0+D/5zxGcgzznXxlSpGGiBYAwwgV8BX0UHZ2n\r\nni/PFEIfGABmGySQdeqHYjcixZ0aZgiIU6iEQIUuvitlE+XsNGdfYtD76WOn\r\ni/WTLOJlBysRj5os8PtFOK/9VWbcVxbsEklrEWXCbpwH65f9ckOtbYRMcYGz\r\nUK4lEKhZEQK/Pds3/BDU00I7FqcVO45CvK9HfF4P0DlZXnzrtWTfbMI7YOOv\r\nYH0yjCxxlEMieJ82NfJKk+gbYUhnlyw3KVztn38++gqjPNE1AE7c6Fsso6dN\r\nNgePHL8xg/ekcZmnea8Y6CDi/pGzaIBr0FcKOGVRqpq5UVWyLZ6DON4QSJLt\r\nabP2bKC/R70Y2DKpjdS+jMOfcLppy/dJ82I=\r\n=vNSU\r\n-----END PGP SIGNATURE-----\r\n","size":26085},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.131_1651543355241_0.7279047713835076"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-03T02:02:44.797Z"},"1.4.132":{"name":"electron-to-chromium","version":"1.4.132","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1012.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"abb604c98903827eee3cd2cf4d3ce14c2187deb3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.132","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-JYdZUw/1068NWN+SwXQ7w6Ue0bWYGihvSUNNQwurvcDV/SM7vSiGZ3NuFvFgoEiCs4kB8xs3cX2an3wB7d4TBw==","shasum":"b64599eb018221e52e2e4129de103b03a413c55d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.132.tgz","fileCount":13,"unpackedSize":168581,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfyRXAP95Ddn9IK/IAqe1p1BhPOmLfZrYbogbNd5/HlQIhANuQjfX20b5O5uM2J1CzebYKQ9IKK3JzBpVdeJMLmdGJ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicaZ7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFNBAAlHWW39TGrTy1HhMx7hmo++k0h7YQt5V6tfR9lTIcnw57Gvcn\r\ndghuJIx3oTIfTSWepydF8w4YkB4hdCdkvpm14EwWasoD+DLVfOlrSZR6qEZx\r\nB28WZBJ2gEFQxdNdHZAA0QHcxxVWpPWRMHnEbhYdqM0ZWIQLZzBQB9D9ERXT\r\nnb3wDk0usdZ87GEIi3HL7GLR7aKcGX3NUdxskB+Pn7U9A6TphLQLz9zS5/a8\r\nOZ8qalNEwn1Wcy4p/NeKOUYaFKMDw3a0ufY6ASLySKMwoqONK0cHYGnEQr29\r\nJdRuy30ZX8BHmpPIKK3dXAtMHAOsEsSZ/gY91HbvlZeKBJv0I8U6QtEGEnPc\r\nr8HDP4UBqCcdDt20SnAqVN4y1ht1seZRd7QENlFJFaQEQak0IN1U6yOhZ4AO\r\nxhXG6TpM3mw6xZi1fWn0dOhKZJJ0IXozu4bZWa76krJ8jUJeMzzLCf7pD5g+\r\nh3enwkHs+qgt3opKnM9DZavms/p9cFfOAc+Z+7U/MvvYHlQ89zQ/bYx1FUz8\r\nO6JJTnEvKIGCzVX9uPUjtbbTGlVF2JtYIdggtaDfZl4vis/Ijahbes2OgV6E\r\nyYLUDRmxMQbQL9Q4xsZNP8usCe1X1SF1CXg2WaQfmtGynlyqEO378Ae+ZZpa\r\nKxicJfbMgWisLQ+QWaD5hpu7UTa3gny6F6o=\r\n=P4Y1\r\n-----END PGP SIGNATURE-----\r\n","size":26094},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.132_1651615354934_0.09490190740363502"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-03T22:06:49.352Z"},"1.4.133":{"name":"electron-to-chromium","version":"1.4.133","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1013.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6c5ff4140a0373c0c3b6bfe5aa95664ad8347305","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.133","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-ZiIO/VXWqY9WME7vztTySSqwm4+A8o66upAb4AmxPwOLejUM8dffcDKY+Hj6oBq/1de7w75n4GxYFxF52ewnUQ==","shasum":"d63d060b874d289f0555fd1db23c7e018d0a18cb","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.133.tgz","fileCount":13,"unpackedSize":168795,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYMjmoF41E1o7EG6j2y4+QHy35qBFEU09We6gKDiKQBQIhAOBSRtvNEUrbglLYDYoqkGTMFgJv4AY4yzi495hogfhB"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicvf/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmphNxAAkNRvWbKvYUybFAupAmO8OslBVmofgOYuVwaUVhtxC15F0MU/\r\nRlaW9oTX0YXiGNhB11hjEb1cQmLBsc13xNZYB25BcSD8nRh0fvWSveZ51Eb6\r\n3AM5H7X0r1xsuD9n0Kp/l3nrKrS1ttJEExigJh/TWFh3120igdErydXPlBWm\r\nX8daCjKJfrVv2lSQ20X39Sj+YwQ9DnE6r98C6N2ptboFrWaaZC9t8zkfVtRt\r\nkCVXx6IaP5BA0dStkoOHWhUVmCYF33bMK1H2q55kw01ZyxIzgOHTs3br4jSB\r\nXmDiHEyE+nrkz1cGv8xiRJjfbae0/q54x9WZdw4V1YjCV47OLfadZdf1FRfE\r\nsxyrKhhJAYL4IW4ssQwui+IMSzqyZpwTGFwK5qsDxH9yUv7+PGXeGxu6ZnNT\r\n/gBREHe2eGYtaIV8p7slkKxpusTNkg5ilQHadmu+vRNRbiR2G3yzSYtRXqdd\r\nNDYuD61qKIjPKCn1zR3g28ux4V5M1so1mMv3dv9uKj37Ht3L3W5k0zENmWUV\r\nrQP/K46OKSdwL5ueScEEYaW8/sTtF8zlbH0tmOxRJXjWTjuDwJ9DU7fZJC5q\r\njpvSNdCwK/fzqZfRt68EoC7eak4SS4FuP01nfl8Uca7yeIJ+fJ5YhCm+vdLU\r\nrDgxW/TVhlA9HB4nTPKOUVOaKKEGknOYp9w=\r\n=R4cw\r\n-----END PGP SIGNATURE-----\r\n","size":26114},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.133_1651701759102_0.16681801941561702"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-04T22:05:29.772Z"},"1.4.134":{"name":"electron-to-chromium","version":"1.4.134","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1014.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a79068b06a94a224f995bfa06a78a2ca31d9eb98","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.134","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-OdD7M2no4Mi8PopfvoOuNcwYDJ2mNFxaBfurA6okG3fLBaMcFah9S+si84FhX+FIWLKkdaiHfl4A+5ep/gOVrg==","shasum":"9baca7a018ca489d8e81a00c7cfe15161da38568","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.134.tgz","fileCount":13,"unpackedSize":168943,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVdPsvpmnHlO84XjxQ3aEr37X64ZtiO342rNqEpRARTQIgH70LKLTiIKp1NYG6fcQwcf+8sc5qHo9UFJhQJ9dkU88="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiczA+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5Ow/9E4bo4oZGWjNi+GVzRK6DfCgdeuTsOJ3pJsDm5429w0A756tN\r\nLUO5tbcARFZrK7R8mmb1rqABs+tlDqHVV0d9n5oEyWreJ5y4/NaMPNm9AYti\r\nsr8lfKrSfLmWoY8nAUMiIcd8DdyF/vTymN/xdU3EsuCDrto5IlOiUNosT9Xp\r\npa4EBczRIUR6kkfShM1iIczkpnzngcjMlzCYCCE5snkImjD2OU/n+mh0ZCe1\r\n8lM6Qsg3KtX+RoGDfIXOgSFrEEAgiLRCpDn2aDQQXg1Yvor0GcOZMKTHWK6D\r\n6AbxeJ9w2HiTxg2wHa511ZUKinL7MvajvOShsTtRf5eACf1le6K2JmoYBpC0\r\nJDw3M6aESDq0durjBXuhEFtK49ZeRT1QRuaShiW05pKhm4EtdTOKMZoFXNT3\r\njXD9aMDcJBi+9PoMmBBNDrVx+f5+2XhhRq4YYqYXL9HiaEr/629j15eleFP4\r\nwAJcAm7kE/pCarm7+BE2W+a3Vpl/H/9IxYwzG1UsYWzsggTOEvyH8u2l4jhC\r\nz8fxt8BvRH12jHTtFY89nfs/5NrlzHOjB57bXjQv4k/qHUlNV/2N3nRPD9RS\r\nEJww1Zn5OnxeF1RNXsBV10LvGJvPrxg0R4jhwanvRjBeF4b4PjfNgjl3H50b\r\nN93gEcbJ86QkzGxUoJqgb0HRr3Q6HrYotzw=\r\n=brPm\r\n-----END PGP SIGNATURE-----\r\n","size":26130},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.134_1651716158223_0.16424954099222067"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-05T02:38:20.675Z"},"1.4.135":{"name":"electron-to-chromium","version":"1.4.135","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1015.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7a09f3e262af31cc505986117259895df3706c53","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.135","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-jrww0WXvJYEUvhhNso4dobAhc7RXWmzOou9dciZ4UrtlSRwR6sNtXgrStyOGHT0P0oK3Rxr+Z47GNcbKXG+iSA==","shasum":"191e70540ffdb78f6fd7769cd3ae3d4943074656","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.135.tgz","fileCount":13,"unpackedSize":169226,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrzir3sZjuK6KsbTb+eGyYKJND8Ph1jYkKKqsb0l+GkAIhAMRZb+pqC7t6/y+aMmaM1dfp9IV4nKMHRnCAIa66snrN"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidEmMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBhQ/+OIsoz7NWRK49nmpHgzTVQsQwOL2636AU4C97MIwEYzVM1ZEj\r\npLBkES9IfAhqikoAajb/ypSGVYI8HWQQyZfZkmfM/Y9bEILeW4D5MzsiIG55\r\n+kxmgfnLENUrJYuK7nkIyoibQpGcAiqnzrL7dtGJIsBMJ9LWyXmFp+IbXZH4\r\nS3OCNuyGcdf8v8fWDknTzcC/OSzqFosWQzQ1ZSTaXPR0hf+UQfGr0YX6eKgo\r\nJ2qBihcv1ykLeu1qAori5ZEj5SKgFNjxZbBqOENmQH+k3UT33ERsDNKKlX6Q\r\nLBTAb2m8cyxWGUEq+RMBxevz/dZm7lzOlp8xZz/Vo1ak+k6Vz0sv+2X+vq2Y\r\njWEIw0NPgAcmUhzFQFNo9E5e44CKAyZ/YrKBOYn6RNghGlNKIWE2TVwHLeru\r\ni1IQVzomd2GeP/7Ds8TD61bfaoYcE6cwNu0tZU73ZK6u7HgdEDogoIb/aU41\r\nXsyRV9hyty0gf5EjbtWPmS63TVqppcjIRuDFYxKaFU0K1ZzZRUvBqKyk4QeW\r\nwJoM2zl3HEdSewlN4hOVfGtaBQnusW1cmWo4Bc84L8JQvCXOhnfEHk/W/6ZQ\r\nPE/E6M0eERygcWrLr658XJGqHB+YyOtfoaPM3EgkRWIfYokrSf5LEnKnmToM\r\nE0mYua8si4McjuOzoeLvcMsXSUIWJv5+BxI=\r\n=HuVw\r\n-----END PGP SIGNATURE-----\r\n","size":26167},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.135_1651788172723_0.7572840209734966"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-05T22:10:25.670Z"},"1.4.136":{"name":"electron-to-chromium","version":"1.4.136","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1016.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"107ea28cd2c555f5a1214f07e1c1df5467cbe329","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.136","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-GnITX8rHnUrIVnTxU9UlsTnSemHUA2iF+6QrRqxFbp/mf0vfuSc/goEyyQhUX3TUUCE3mv/4BNuXOtaJ4ur0eA==","shasum":"b6a3595a9c29d6d8f60e092d40ac24f997e4e7ef","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.136.tgz","fileCount":13,"unpackedSize":169300,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGaAm4LIEhbwTe/d+C9p5TE3q9J2HWiGlX26cr81ego2AiAxniRsTR/gxZDWm7fcXpWIMIkXMmRlzVWZKNHY8tMaww=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidIG8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrt6g/9GfHiQhtdEADvfF9PyM5yNo+Oqnv/PXN89agJcEn6t2wCK7Q+\r\ntgfjji1fSmzJEl89E11Sr19dJp/PCtBcLgNuQ/4NnUh61hSqQVmhzlZAwqvw\r\n/doWi/DNQPWoFuyqe/iK1QTAfoDM6chb+I/ofNN85+zoNcqhpAd47/QEQ5Az\r\nXA3idszf3PGCkXwnXA9cMWAWJuwol+NYbFBX+vKazWFUIWJxPEnshtJuygek\r\nSKYUgx7ZenGSHaJcMZ9Cq3oWoBEuZNFixcvc9HeHDtx6WYR8ZehRqsKCaTvJ\r\n2PF/WcZGkW79tWUR6muGZ4ZBDXl2Hcx1bp4xL6Mg9Q+4nrrZseLjfwpyQUTU\r\nYOVJ+tftt2AxSXNI6GVmBeRTb07eaFfG+7l84ZywnDbaMYet2QV317dtlHwA\r\n5gmXe8XhAA3I2+kqdS8FhqtlIihkZq2HmwQGnzlqU81LGEKlOY7YvIfBwitM\r\ndaBchbZD9sZqmMTVPf0G9qLjcVa/2fuB7sxshxGhLi/vHPabkoibERK0X8P/\r\n/FrgC+KYm+BcaiysiPmH25sg/PU5INjT0ufOFppCk2usWZ4nczf2ViHe5drp\r\nSJi2R4aJutbWa1BoziSZZy7ly+guI2iMpuI3NMmupAEXLl55s72GmxrgMj2x\r\nk3Squ0ddKoVNSQFdB94ztIZB41Bj+LzqZQw=\r\n=H/7B\r\n-----END PGP SIGNATURE-----\r\n","size":26169},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.136_1651802555832_0.9479213384958995"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-06T02:07:56.201Z"},"1.4.137":{"name":"electron-to-chromium","version":"1.4.137","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1017.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9eaf581b7594cf70d41e36b29ba9c66441518e77","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.137","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==","shasum":"186180a45617283f1c012284458510cd99d6787f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz","fileCount":13,"unpackedSize":169440,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEbSzfZQlqv6CvLMJiAQTmQtMXZ9ISz+2XeVDvPXuX/jAiB6qgP5jm/Cpq0VMJz9XnfVh1R806D/cGu70IpN/4sj+w=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidkO5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHZhAAj7pOEXkJCYaDnhG92caXyvR4uTLX4sVA1QE9zjoxSC/RNpP7\r\ny+qtKABoUg7u5/D1MmHPI7sk7ybKYm52ALBPasuUPeTT2HQZgdmaWLBc4Xxq\r\nRpXvmDDB4KsJ3+bKNiEuvXkQqvMiMy+6jj8bUzL4l0vVX2FEIpJCrLCzyWw5\r\niN7XBGLdSZ334gkE+nWJn58+xnvivDO/rsfMgBTvw4IRfMNLRds9+OJwAicy\r\nxaDXjTokX7TWkVgykI9k/2T06/MfmF/TgwHj+agkV42vYwaco/NXNIGNpL4+\r\n3VWpmfmcU0RKTOl30RwZqRLlzpT3KB/vdiS/Bir3rND7be+JTnEr3tJv1OIQ\r\nTpNOt3OgnZgyz8PCYCB3hXgasxlhDElAGhvA4Qf7Ds7ufV/FLpxOUzgxowrh\r\n0Tn6N8vI/bYBZXChEYt/CF6XyRYCTRWSub/XaHG2dOrjnK7LlkePX+sVTTTL\r\nVJapu+LHEElUmTZ8F8yS+dwHrkgM+llhopBfz2fAzmk/uTejsWQDOqAN+XxG\r\nQ5F9+G11EoGeVhR6lS4k0dMjdHpJDqWD4orE8GgKg9ixhtaxhnGZ484FnTUv\r\nIMPfdFJCkBDO2ZNtbhTUtOrYRzToLWfdTkFZMS0R5Lm+YPsZ7sM44FBq0Md/\r\nEGa0GcdDp3SOpKhNbrtNLEcdjKm9LJsB9K4=\r\n=2E1U\r\n-----END PGP SIGNATURE-----\r\n","size":26191},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.137_1651917753534_0.3953438428361915"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-07T10:41:37.048Z"},"1.4.138":{"name":"electron-to-chromium","version":"1.4.138","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1018.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fbba1708b620bccd3153b21c63b464dfc7cecf61","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.138","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-IOyp2Seq3w4QLln+yZWcMF3VXhhduz4bwg9gfI+CnP5TkzwNXQ8FCZuwwPsnes73AfWdf5J2n2OXdUwDUspDPQ==","shasum":"3ec41ca589aaf505dfe2034fde913329af801730","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.138.tgz","fileCount":13,"unpackedSize":172586,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlTahTk6opyoWld0jIKSfXg+IUiFmZ4VxGG9FdwolJ1gIhAL01Onveut3WH2+1weyYFMddLG7xXirQshj3cJjMzucU"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijY47ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqc3A/+MpqwHMGM9dvubmoMTjErsQnM3N6rYaPZ+jYVmSnw86Pev9s2\r\nmLqy/om7SUZtpqdd+p3NZOq8N0Wz+qWJ/dEC5FwoGaKblR8W+CO38/O4Hbmv\r\nBFbww3nbnQ90hj+SHsv7TjyUB3iR8EX2i/rKNyAdD8xjtq30D0sBUx9lah3f\r\nErnZfyh43XNg1v3FkDxmaCx0Q3tRJ7w/8WxVxLXUJbyUHGR22+QkA8MNsMZz\r\nm+Pf2v6zs5FXW0f1Fhsxh0Xfa3NCNooK/A8F4jVm8NrGQmDDZhWbP/Q24iEu\r\nIh5adEyw2rDzDwq007kVuORAoFVOFg0brsCDxID0t71YKZF7x745MaskoXRO\r\nc+Ck3GnpDLBEoBGmkgzWoZaq8bvuj1g3YlNLbWiCFFfGAdgbGiCKpLRKJ5aq\r\nEUulHfznBah/mFazpFhQOSFrykYlslBC2nFL6XmNvfKApIk6er0r+V6eVhUK\r\n80mtR0vB2jmrNzayNqniuGj8e3hqGUGdg8X7bVQ2S1kDMjMp2NOI4PLlX60x\r\nuyqDqy6KU93b0D12DYlok9qev7ggi6JjuBnoz/TjpnzYcWhXLjaCp6H7QvD1\r\njd1EsLi3rrRBB4XSkMG9pYq8LTUzYzRQwNFdkK8VCBPdxGjWf4T7QHuQSpCh\r\nsslKSi+Njh/EWgs8F8PeVzsMvYIUOCW32B8=\r\n=w26I\r\n-----END PGP SIGNATURE-----\r\n","size":26518},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.138_1653444154619_0.1476433861641011"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-25T02:21:21.534Z"},"1.4.139":{"name":"electron-to-chromium","version":"1.4.139","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1019.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5534e429be3e68d24617d2b6978169efcb3abb44","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.139","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-lYxzcUCjWxxVug+A7UxBCUiVr13TCjfZFYJS9Lq1VpU/ErwV4a6zUQo9dfojuGpw/L/x9REGuBl6ICQPGgbs3g==","shasum":"e634b69769ab4a54626bbd9e1475de872839c89a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.139.tgz","fileCount":13,"unpackedSize":172972,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID6tRJdIEnZcS8JrBkPQePqhCXkATJv1BHQgTew+oJgvAiEAlL9QD2C1LD5WZirZhVKJcJAgyKFQtp6VC1B8bOVKRG4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijt+4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq1iQ//WvmHx1KB4oSSy/Y1eBXZsgIke+3bfA/mX1bOy1gEkrV3ug1s\r\nU7cDZGhN5A5EfWdj+IjgaytUVbDkabel5aNqr5FwoXbJkdVHydX2OrMVS8oB\r\n4g+Nh+eAYzlBL1t9thnN9VAEC4UoKwz8y9vhSsSSV/rCOtw4W7UQsk/rYrSI\r\nBpiipC5qLAHr0N4Nvk20R7U4wFtN1y6Ra1u8vheQSpXXBuDIppDoTXkzUYK4\r\n+KFi/R5mKOy+gLnedF7ax+8QI6K4x13fbecrxx7T16l8bbMmBBsFR3wUBhL0\r\nu12HhbwQYJG6TwAqcN4Qe1PnCRiLS/Bhf1sk1aLsv6D/VwAEH9GkfUvp7MWP\r\n8fxqzesc5WX+le8rW2qZbW+cl1nIgHUfVAackZ/NT8+jhiJ79GpwB/20Rl4q\r\n+ud2P2maX1+zVquQP+FYc0cAaZ4goEmvXorlu58WsiRSQtOfq2cJDfetXIVr\r\nriSLDC8280CyeNUTx8EGuCfsYLVDCYIKR8HwecRjGefSoYOes1wQW71Vb/ky\r\nFl+yCYymGH4o6OPUNldUJzltHQdEv26TiVwQClLALYtjvH7yN34DfAbH5tBQ\r\npCeMd3vjMpmE5/zGnoP895PQUM0jDbI3JGruQ70rqubK+N5IhxNfY1tyC/UT\r\nvzIceCE7ZhlqrUWqUFu5gxjlmEwMHKwdk1A=\r\n=TA+7\r\n-----END PGP SIGNATURE-----\r\n","size":26595},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.139_1653530551960_0.39749370350926294"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-26T02:11:28.031Z"},"1.4.140":{"name":"electron-to-chromium","version":"1.4.140","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1020.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7f0aab4bb080d1724790088c7ca51f542a7e1112","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.140","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-NLz5va823QfJBYOO/hLV4AfU4Crmkl/6Hl2pH3qdJcmi0ySZ3YTWHxOlDm3uJOFBEPy3pIhu8gKQo6prQTWKKA==","shasum":"1b5836b7244aff341a11c8efd63dfe003dee4a19","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.140.tgz","fileCount":13,"unpackedSize":173112,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFGvgDZHsbYkJmB5vdFG39BE47gv7WMY+hMlUgVfzoPzAiAoV7EvN9p+Bs4h86MnfbnphEQujD7OC014Ezjh/LiEoA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJij/j4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+ZQ/+IRFPE90CVAICYv1FouVTPefYr+2OKvKgn9o+k/8sC5p4B/fp\r\n9Rz65SnA8ihCN+VcS31REpvsehNQzBPGaxooB9rc6hgM8ag6NOCuXMjNXO1Z\r\nRKcss8cLM8Bz1DbjshJ05aSJT0FdsLXphGy+IljsrEGK+8+aedATjySpJuYU\r\nWxbXSwX+rnzwCF+hOzsUkfq5WGQ2hqozhRhceFI0M2b+yXDYnO87ZnSeZeOW\r\n8qxCuBkE3ji7ZSzgl7d4D2pQSlelug5HSltkIF4MvdJ1k2t7dCqnZQgFsLuU\r\n08+pit6gNPkybGQG6Uw+s62ossP037+/+4N/vromOajfsTV4rMN0DbC90fvD\r\nTojEWwN2X3W2Io0iA5tZX0BV6LVq/N4vigKix1jUX//28rO+uElu3I+fmmH9\r\ntJ6yVGtpk5vA0l9wpN+/zQ7TQShGuN3VGKej9Kl2VjQUi2EaCSH+uWwx4Tii\r\nx2ZNgMeEXSmLtKHJvhmZEN353DAZDwnP5R1OTW2OReIcwhprjNU6UFntsy59\r\n/42rpK2uD4r7tbUbrKzxOl9ttbWQCfqk592SNdjG7UeElW0dtsk9LKo06QPo\r\nHaLNdqEs+y88C04ikNJofHy8S6dPwxjugRKcj3gdS1oJQnWToXwK+TiwkhDV\r\nT4W8uf0xVOwyLQYgrKegzcW8V9nFgY4PfS0=\r\n=3S/8\r\n-----END PGP SIGNATURE-----\r\n","size":26634},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.140_1653602552699_0.6679864210024193"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-26T22:09:50.243Z"},"1.4.141":{"name":"electron-to-chromium","version":"1.4.141","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1021.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"62c5755834f80b8e80d6bc3e1e86e20718334c4a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.141","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-mfBcbqc0qc6RlxrsIgLG2wCqkiPAjEezHxGTu7p3dHHFOurH4EjS9rFZndX5axC8264rI1Pcbw8uQP39oZckeA==","shasum":"4dd9119e8a99f1c83c51dfcf1bed79ea541f08d6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.141.tgz","fileCount":13,"unpackedSize":173252,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxbR/Ti5q6Jlv+PiTUQrLek1oiqItr3L35w3avtFPtWgIgV4UrtPpeAxY/VRMuQsy3lwaFDM7042SNRWGFEc9UlUA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikUp2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4LhAAnLgsFOfqgUi7qEIzICxkGuB9VopDdXJq5WsxPnkpmnwU/4Hz\r\nEjILJ+1MxUV+Fu0TZBpcClAPUQ8mBmmY/IgayC2yZvKuC6Q5UXZ/avRZRyKt\r\nxtXzZNncKnC8dt30JlLd8sK67aFPOGELfFEUJhe1w38ix/+W8JCqi0tqw51V\r\nEomdnSRF1hOLwHOxy1+6W8twA7E8NxAqw41lheN8YafWWfvgXOWS5DdiSmet\r\nSYLytXzaU4/SgE9I2uSl5mhmdlRWUR0CcXj6NDk8hRdmIGjNkB2ZnIL35yXI\r\nZIq2E2Ydjhs+riQqeJY+3yPQTaImhUpjvljORZA9ALfcRBLEMcO4zFBYiIBv\r\nbFtzOQ99h0shKI0QaRkpRlL9Y1zUcl+G1/CNuJF7f2QtAJBuLNcHpnzDjsAp\r\nRkB5MGCGXfDmx9btSzxtSESHzblFm/lWPvDipMMZNoyfFFBjdQQYcbgyRLoH\r\n8KSA+boy3UE2Ys0rJTBhUQYklW29zeL0ytF/7QLmQmZ/wSyrBJRIO89i8vE/\r\nvDxPzHQVkM22erdGWX4yxRJE01p+dl6VBurQhNqc6vm++b0mw+FcogkL3+k0\r\nTUKfh9T883hTEFnj/DsQHVaaG6UkgRRAZq1PPY0+igSs15TbtWjrm23NC4IX\r\nQ2zn7fF4v2xkv81KQJZpw685hBIYgqIYIWk=\r\n=74Lk\r\n-----END PGP SIGNATURE-----\r\n","size":26649},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.141_1653688950097_0.4370524970492691"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-27T22:04:28.215Z"},"1.4.142":{"name":"electron-to-chromium","version":"1.4.142","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1022.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ef1100440c89ead95d8a4de5072461a9ede80ce3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.142","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ea8Q1YX0JRp4GylOmX4gFHIizi0j9GfRW4EkaHnkZp0agRCBB4ZGeCv17IEzIvBkiYVwfoKVhKZJbTfqCRdQdg==","shasum":"70cc8871f7c0122b29256089989e67cee637b40d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.142.tgz","fileCount":13,"unpackedSize":173392,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfImgLonGdoPU5EDhSGNLGINN+RVxUXEfbGaX2aedXYwIgccQueaw6F6APi080txgBpWRZs8CuB78zUPhtivR6mPc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilT75ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqe2g//TmKjNSdLGToF0AR0cpsx4XoIeiJuRrVEXChZLMCn6cvVt3YE\r\n22qTtgrfIdyns3Wkm1Ad3U7HHUxRLSYeE6aVBXYBDBtgt/ILdn9/Qkon1Aj/\r\nNhIXrTeSv1X3Vn0IYGMw3PrSVF3cAW+83aOAidZLQlTfdhxgbqVws4tmC5IT\r\nptRVcc7u4SpcFk0BwrztWupDpNzIhYVCzMlatd56mQ1YvuF1CFzNLRqK7ZLR\r\nM3FhfmzRM+psyemIKj9zthFPxcub49TIgRJetDbIJJrEm8vGDHeRhdxdf7m7\r\nAdloMx37JHcbV8VEwE2sujrxgCQ7VehUpzCdGvtbFpo+PFFosn9XCXgkDKkC\r\nA8hX8ptwhG8EGlGUm5JpCNGL8lw33saSH5Vmu5nZ4xd0ADQo41JMZ2i8MG2+\r\nBHg5ChhsbCo0MSZjZOvr0XFnP42hQQLWejNIiWMiTCigCot4A3qHrHO8Cqsa\r\n2oeRCQZQUxVzZLOmAbksCwjNrC4VbQvXmRjus55IsWlQTCSuzcmDN7HuhwMd\r\nBb7k9Cn6HZcicYFGuATJL0IiAsRGnFIYQMjo0t58nU+CK+zosiE43BitKWWm\r\niipxI2MMd387fwv0d0+gpjas01fWkVy4mrxGvXSZPtNtdduBHFcSZY01h9zX\r\nLCNo63C7LkPueV2XlegYytuZkXoinWi4RhA=\r\n=Za0c\r\n-----END PGP SIGNATURE-----\r\n","size":26665},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.142_1653948153608_0.6196051970035028"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-30T22:02:41.497Z"},"1.4.143":{"name":"electron-to-chromium","version":"1.4.143","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1023.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"35ade23826e93c5545e9c5065a39202004fda108","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.143","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-2hIgvu0+pDfXIqmVmV5X6iwMjQ2KxDsWKwM+oI1fABEOy/Dqmll0QJRmIQ3rm+XaoUa/qKrmy5h7LSTFQ6Ldzg==","shasum":"10f1bb595ad6cd893c05097039c685dcf5c8e30c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.143.tgz","fileCount":13,"unpackedSize":173532,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBGCks2I+HvGXIngA6LLIaGa+NB3hKNr+Z9oWz/Mmxd1AiB0aUXMCTbBqMZcLogKNWxNeKLf8geDeNMkFDoeJxoLuA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilpB3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLow//ZBLJK5UqUG5kz7FsDcPEH/mqMZrc0CGOqsrEb1ZlYlHTkCaq\r\n0WI1GTBK/ih/LwVkKM3JcM2G7Fzi57F7zL3aWV8auSLn2egxjz+ODmv86syl\r\n8hSxNw8r/JsezaKCICjxK3Ocw5RLW9LLAbdNh1ePm1bZ/Rys0maMAc4zSIYH\r\ncFKoraMg3Y8BSmr7a8GnOiejs4cCOKY0CHOTB+uS/HCRDZnHucrNE3bjMxNX\r\ngLNPhGPff/AEgcVXDVoDE2cs/9PjO3oQFRDmA1PKo1YVAe6sUOi7Vj8Rf1Lf\r\nyttdF8rOG79SsD5T3mSZRAHsn/bF8mZDci5MEBmOcKUWlTsXRC3foFMgd4xT\r\nvjmP537CDnwo7x8IY+3z2hXm6/KrxTLXaY8VOr7GdXpECvE536svcqsiO20I\r\nRiBc9XmAoSdClIxHMIevlBZRiPMTToUKGzLM3Iltev7Z0hrKW0hBRTRUmmOJ\r\nQnr+YhI0cfbzDosmpSYKalmGk5JTRIoAt5fscTOrDn5c9EEaBJ50Y51euH6d\r\nd1k6Y5Jv3AaNajxeA8tozSKKO7nOH60k0/swtSO25xbZPIH2UBsFG+HL5rEQ\r\nFsF+OK25y4CSW3ZMx8x44zunvN9R7+mTl5gsHzeC87iOfInzMWuTYS5zw1Tj\r\n0tSS8Zc7N5hi+cK1Go1h9dzvEhb5uAw2WFw=\r\n=+Kzc\r\n-----END PGP SIGNATURE-----\r\n","size":26686},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.143_1654034550827_0.9341282667166229"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-31T22:02:41.705Z"},"1.4.144":{"name":"electron-to-chromium","version":"1.4.144","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1024.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"31775b57f92b59931f6d7faf39df6804f7c04a3b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.144","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg==","shasum":"9a5d1f41452ecc65b686d529ae919248da44f406","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.144.tgz","fileCount":13,"unpackedSize":173797,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEqJhGmSWS0lUYg3GnnImHhY75ewtaPXMX+GuEA8nj1OAiEA8MQEWuCeElB+YrGqNRmA3rAjxKQYzVZtDvvo80F97Wc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimBo2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrqwQ//VNEz/8Duaf4FUh8civMxWBLmVFDUQLCHxRO67kS9pYOkMQss\r\nolzShwOhna5iQew+nStsxubLM5t2kH1l198L/kr1cB6/MMbKsnw/J6mO35rv\r\nhb4yqXrqCxwZjsynuCZQkoPjc4GTtoBIv25wPzNX2Q1VM1Ptf4f5B6mJjB8Y\r\nMewJP+qF9cG4ssd4s5KTbIDh9hwLxqTaBjS9rH0PY3pdqfuM46E7Ea772Ngn\r\nXx8Ttsai5iconiM3eXKdGuj3hBza886HyHR+pJnCEe6DjDh8pCYeAfBHdLoR\r\npFzpRvvn3LvKYE2EZW/YSInoo9Sb4RHe0T7MqTKKikyBROwFkiUiay9jSk6p\r\njpUGIKxcAJC+Nz22nNwTP2q7ND9LazFIEGAKYueNEsMhH/FjPJ7EjRI4Cz8Z\r\n2HEiu3JuudC9hAgV4JYXBFTpQnq6lWROpTwv4LpghbviNLLDQLtBxyM441l1\r\ngMsj3sWir5XEv2DW9eZLu9BLIWzS6QwXjlX6v0LAd04cLk9zkUpZVqLO9ZrD\r\nGUJNh746ztdrfEU9yFoJCxDrBd4Jl17jpupYSMv0Ehvbralob9z5seDwC/oc\r\n/IBIZyVju8DZ23tVZQET4usQas0w5A7lfFKf3oyV9mbOyU+WuA2fgBEwd/vc\r\nIsDhOYtQYtc0fsSsM1Zwgnq4rrnE1AMOVJs=\r\n=CAwc\r\n-----END PGP SIGNATURE-----\r\n","size":26734},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.144_1654135350716_0.4773204403695437"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-02T02:17:37.745Z"},"1.4.145":{"name":"electron-to-chromium","version":"1.4.145","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1025.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4582b01849b56503d0888e02f16fd85dff320544","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.145","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-g4VQCi61gA0t5fJHsalxAc8NpvxC/CEwLAGLfJ+DmkRXTEyntJA7H01771uVD6X6nnViv3GToPgb0QOVA8ivOQ==","shasum":"5be3aa470cae3c2bccd20afc4d2a5efdca337b7b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.145.tgz","fileCount":13,"unpackedSize":174183,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICeQcPhO9byFG6TVx3ar48eW1r/F+XbBhCoZKSomcz1dAiEAvxELnmY59GU53XwGP/oIu6rcKdyu1E50xNWopoKNaAg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimdw0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrP6Q//ZA+ZVGcGB++QetpGlgIAnAs1mBjuAsoxMmabHvNDVE3YbeFH\r\noUHmA41kQ6EzoSVTTckWyl3973dDd/3SwjrXF4FZ33wXtFenTl6aVRj6GC3P\r\nSvFfdfPi2TUisVgCZTVwOO8NiXKKZPe609PxVEH6iZ/vdnErrL6dtkOOTl2f\r\nKeWMJFnRsUzOH/nmLoai6glAi7Usraeaz/97VKvZerCZ1Iny05opZbXyfItk\r\ntQs+SNziyImLB2n/OAAxVEA95jtEsCk3Z4vhGtdvsPdCEIvxZRoDlEhaY5kK\r\njKFZAu5Iumk6ijnW0n4YdQ7fopg4uUYvpYYAe7cq9ywwUXATIn/HdrpKvk88\r\nulQugUqPgUc1zhEFqpC3aFljoROQQtEyOGUzQRmOhQJQ+E3fPhELUKeEn/Yw\r\nSXQYdRBfU9l6VdsZDELAJuVVL19JIRZG+nj3aMXss84naoA+NEs+moW5K7kx\r\nk7ixmskcJc2fA4rk70Xcn0AKLYQR+9+Vj4Z04lhnJXI8iOsu/GB8TYK1xb7m\r\n6LOeK8s4qDLWZyaHG2fm20CHJ+kj7Zq6/XaGUui3kTL4QhssBnxxWxu0bd4O\r\nByhBR9J0Kog6cj9O1CbcEx9FU+3a8Y+U+GnIbHu4douzvb5yqpvRLQYM6a25\r\nb6Oi2+Va7uMBwo93PcRTCJaq7z9GRpyUeOg=\r\n=ZcuI\r\n-----END PGP SIGNATURE-----\r\n","size":26807},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.145_1654250548602_0.7609466855084102"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-04T02:11:20.289Z"},"1.4.146":{"name":"electron-to-chromium","version":"1.4.146","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1026.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5ec6b7526dba37f1039493b59241609e694e6d96","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.146","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-4eWebzDLd+hYLm4csbyMU2EbBnqhwl8Oe9eF/7CBDPWcRxFmqzx4izxvHH+lofQxzieg8UbB8ZuzNTxeukzfTg==","shasum":"fd20970c3def2f9e6b32ac13a2e7a6b64e1b0c48","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.146.tgz","fileCount":13,"unpackedSize":174323,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEyUDQLlcg+TJpSy6qtNATSU2r6IPIzLd1h6iuGI0h7MAiAjqUrm+FcAi0IubvJJ6ypGUZJ+EDpP4YNaEBGnaobCOA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimoT1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmplVA//cKwHmAnPvjiD3IadaTDiA06oPRca5KyVjGHPupwUYLJzR00b\r\nV/oH9yEcHHooI7mI/S+jpt06xekm5ohAxiKJ50lPhxvInFKzG4B4j8ZVBzyk\r\nunKUtC2nCjQssQqCT3T6XE9JlWJskuM2L2OcfM1oiFdyBVE9Ce1nCCm1ntnY\r\n4W1hgNrnNNGCiGc7li+yyGi71NyT4PmRJlmg6vaA3Iz2vF9+90GCsFaF0HTJ\r\nfVpqt2RqFsXOv4SQTAz1wwCvUebjUal2VOOcT1kf8gZRosNPsCUpVMeX2kNS\r\nC/hdWAuJd3w7XxsjuwNjD6eo84Qix7+L9ATi9g4ppX4cZZep3VLRorrXaMv9\r\ndAuiIx+PwNAcA3spmixoi9o40k3uRZV496eNm1n2+EnAM1iQOqWHLK2+ke9n\r\nKo5Q8j4CPCWO8pERWRg3Ff5tID/ieXKv7XNVqp50KarlqKyg1MOrP3MIQE3S\r\n40LGv7CBZXKVoyLX5dGe7s3R9fus6EJ6AiiF1XG/E9m/8QP7mlUNQEtjBqN5\r\nafL/rmhZR6s/13nJJc+kDPaZeJMayLviI1CZ04/EEhl3DlBZD8ymOJd3m8vW\r\nAnZpnZ4OJNftG9+GC/luLkdHiqjU1BpMqTAZLH4xKYf8Qw7CBhybxu6SI9Kk\r\nWM0XxIq0uJ4OBwknFkYuaUQo6PPWBgAVHps=\r\n=MrNs\r\n-----END PGP SIGNATURE-----\r\n","size":26854},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.146_1654293749392_0.02068735366233465"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-04T02:11:20.396Z"},"1.4.147":{"name":"electron-to-chromium","version":"1.4.147","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1027.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f7d23b63fe3a9cc32582764ee67ea3f73ab91f53","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.147","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-czclPqxLMPqPMkahKcske4TaS5lcznsc26ByBlEFDU8grTBVK9C5W6K9I6oEEhm4Ai4jTihGnys90xY1yjXcRg==","shasum":"1ecf318737b21ba1e5b53319eb1edf8143892270","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.147.tgz","fileCount":13,"unpackedSize":174567,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEdNbYjfrW9eFYIFdWxbh9BKV8KTaQOI5aS41zErtsk/AiEArpMhPq3HM8yJhn5zlpaKyhKBhR6MIvlo/lB3LAA4GJc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinnl2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRNw/9GB8wFBAw5R/nDeuTwRagI6a+DTqCJb5N9c9VJ9z84cJHUSJA\r\n0CC+0Xdosyl+1a74VOTW7N5M44lBPPXC21/J98nynbsTtRtx4Ci3pSmpGWVu\r\nupDKy3aLOLH8C1z1UGid3RhiYzVd7yORnNx//MStVdLcataw6Mm0M8CQI79t\r\n9riIU5bj8SCznFnmVQFDN3sUn4Yp8Viv/0ZHSA6a0+B1e2Xt9fBEAPiDTGdV\r\n9ACX4eruiGFvFUX72gn7GIpYyIKdf2HCghjipU38+PyF1yyhVqTB5YBwjrm/\r\nihI7kfSVp672LQgiOFS1EW5JkkCB/BN+4REghpigqiw54gWGN7lBmgw5Gwzo\r\nlSCOgKmSRAagJrvZ7w+/lzjfbzDeNpeW3Lvk3tb6OyqRIncfKklK3TxHjv1j\r\nk8sxw9lCXTH9IsBVvE7gcBnwM/KGx2ZBaqklc04qGEuw/YmPn+YBGPUM+8DN\r\nYXCf55NQuHe4n+WP6GXlHN4Os2GndIIiItA8LmFG9InqVEG2jYvcp4Y1+2OF\r\nSxkLKnOmizzEVTdRpdLUOvbD//C/KjWQX+f1mVkow+ByLm6NIdSpmcw/GqYT\r\nWjQCoWScdQjCksbVSATgDYQB9aYo/IignqjXUSRRUBTwltmMXHFmzwa6BGo1\r\nl3I5xsSj3ihHUYR6OfuFINdf6Yu0NVtVFIc=\r\n=4MHZ\r\n-----END PGP SIGNATURE-----\r\n","size":26880},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.147_1654552950488_0.7061487685232468"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-06T22:04:09.869Z"},"1.4.148":{"name":"electron-to-chromium","version":"1.4.148","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1028.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ba6ac9ea395b1cab77f56a4da19f663af3278e55","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.148","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-8MJk1bcQUAYkuvCyWZxaldiwoDG0E0AMzBGA6cv3WfuvJySiPgfidEPBFCRRH3cZm6SVZwo/oRlK1ehi1QNEIQ==","shasum":"437430e03c58ccd1d05701f66980afe54d2253ec","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.148.tgz","fileCount":13,"unpackedSize":174707,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDuLS+NjQqMpH2zdjRC54tX0RNnPKSENqlWKaCXAACIhwIhAO5fCoCvqHG/L3BH3Bx4619xblZqyRC7wgSgoLF4dTcX"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJin8r1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6dg//Zilv0mmlu5/4iZ1YmjBCWXAafvcCG00ZGqDTEcBjkJpezpYS\r\nbSMjtTV/aeqJSLpXu7tEQC9MYp6CUy6jfwQ1npxkyRkarfez9AUaVkWN+W8U\r\nWzzfJzz/ALRfSj6FwQbj0WdbiLpVoDmROYfIy0smPFf8R0NI91UUgOBj+Adv\r\nO9/FwyRY3B4j2H9w+ycTuiMs1xf6j/9TZdi09V9jCAwalkVdDvP3NTSG1Qv9\r\nlKqAbfVfoZ4hnrfVtIZT8ne3L99s1NugAdKXYmq2IDSxfe2puMTaKGpO+nfd\r\nVE5og0q/xa64feNoKaA8hjh3O+Vf3X8iTCig/yHe9+mTEU/ILPU+KJo+LUEu\r\nmhITwJuYTCdVKfRVMxWUjO/ar0OM4C6yRlRRnaBhcQDwFg+AegCEC0Zn9WD9\r\n0Q2/9ZmwbD5hNtblSkUPweVb6W6JUmJjXe42uDxEZn2Yq2ICwpl6bbLZunh6\r\nsCzabjlFs8MZCAg+rejrZOjOt4sOdJmkabpTgJP8vGEfR8BB5em6YPEPW6p1\r\nQ9G1O/sckUF81KRJmRz66ekny+OtF0DNAB9ni07MLt/yF2w0Mrn7BxucUrad\r\nJcqcWhOfI66dkrH8SiZWWmiTE475np+cdUPVMCC7K6sa1MXrYqIGS5TqAatc\r\nnHDHUJgQT3y2Xp3NzeRlNplqkDK7/N1uocE=\r\n=SCxd\r\n-----END PGP SIGNATURE-----\r\n","size":26892},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.148_1654639349091_0.016585304912692056"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-07T23:20:34.270Z"},"1.4.149":{"name":"electron-to-chromium","version":"1.4.149","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1029.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"15ecb5ad915a35f77d68de3f489226c227dcf8dd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.149","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-SR6ZQ8gfXX7LIS3UTDXu1CbFMUnluP3TS+jP7QwDwOnoH5CcHbejFdaaaEnGxR6I76E55eFnUV9mxI8GKufkEg==","shasum":"7ec621aaa990bc2c9fcb4b92a4be5b98570833e1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.149.tgz","fileCount":13,"unpackedSize":174847,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDin0imGx2F/bcD8UKpQMJRyFFKj7GWrEgexMIGgq8TKAiEA3HG3svVG6xXE7NFCGCVJLojDmroL99UwoVcmvc2+evI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioRx3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqy+g//VhsTPckFnV2CIqHsyJ29IT2SBf3IK7DUiqSPgVDdBcKw3SsJ\r\nR4gfZauYCawaKk9dZSwDaee13zs0WBtjF9YCQGWmFYSxrnBlvt2o1VuZyxhb\r\nQSoT1SvI3rdigp5dC41+iexwEmyGV2vyUL+ducMUZd9Pfk8MLRccdbGkXkjt\r\n9dS5qF4J4lM78i7VhTBFJMah5BRCF5xqhULUP5tS0vCCjt8jsXGxiVTd0I9n\r\nxnm/U7b9HTMKCWY8XFQ954E/F5JwW0fjpw6sSMnJs/xy4jRE3VdqPBuQSPs8\r\nHvMyy2+7iIOHS2tSGvZ5deB9Y2aMWWw5weG38kIjRZYwqOZNEDzMv4IJT5FN\r\ntTojoMrbKHYCtV1MlAlQ0fKQDS80+s8g0oYJ7wdwnJKnULFBunVdK9IL6cEx\r\nCvwcCAfun6bTE8Bkx3ZUXCNjWAOP9fjm3KPCpoPgEbuKYUU2+5MCoZ9cID2o\r\nMmxUd5JyWWSCwpex1M4fd00kuohDL7I4jeltaAXQyPpbJSxsmkuh6r2/fy76\r\ns2SKcDhpBMjKZnvgXnkFu2elu02tyhYkzxS/6bOOgUtsUQqIrHTP5pEHCJAs\r\n/w2ztGiTkUcarfi6kXB3yKmzAz3wdp/wh/iO3CItmq1RTCNuyivn9mwfyBzq\r\nroSHA+7QlZNNAv8TgoJcJpIVVy/98VTmSeA=\r\n=FATw\r\n-----END PGP SIGNATURE-----\r\n","size":26902},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.149_1654725751004_0.4211820806648712"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-08T22:34:03.975Z"},"1.4.150":{"name":"electron-to-chromium","version":"1.4.150","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1030.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"33db646d648bbd771bab6812fb662c1938dbba72","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.150","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-MP3oBer0X7ZeS9GJ0H6lmkn561UxiwOIY9TTkdxVY7lI9G6GVCKfgJaHaDcakwdKxBXA4T3ybeswH/WBIN/KTA==","shasum":"89f0e12505462d5df7e56c5b91aff7e1dfdd33ec","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.150.tgz","fileCount":13,"unpackedSize":174997,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDta9sUo0gnubIIbNrrGud9TG4DIqVSG0kAypz4is+W8AIhANcZ1IAHckNxDMqMu8BIfRsezD+YZfAKQKa5eYMIDyJC"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioVS3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1dg/8CQJGxmROiiXd6mFy8IQsAn2DGGDR6uYUZBnu1r60spYXJeoV\r\nJDjEeEQEOuFwRB1XMAbIV//7JNgwyxjGBWUWF3qJIxycuiaVfDE68hU2Icqk\r\nt87ITj+u34jkzLPD7I7cPPOPcfK0Ri8vYlcQYsKyg2lJBKZsnNDFhKOO+5jP\r\nT+vjwSFkT1Cne2YwzkUmfenFJICqz7DgQo0mD/NjC4P6gcVHbMo9YTwFASCM\r\nLOGCO4kRbPO9BQP7l5a4R38csvtc33JaDSRUuzX3AzAg3GMeFc8Mwe3CmolO\r\nmmxpQyiPj9nCc4Rz5wwPXLGFyhkeKBGCUwxenhtMWSsVnhz7EXjF14CDZi3M\r\nGMBPDD1iLNDDOV/MUTN3hWhB3D1yIqVhzbjklnyZKjncvhvT+qKjo9EKTdsA\r\nfxjI55IGAznJDeegghM9wPLwVk4H10nCSSPuEStao/B5PIHjGMQzlku1lyHs\r\nDoQQb5tJbEP/oiM5YbSN9ycl+jtY3dbYtlwcVUjHgsx5vGCtd7lhUXMZP1ZC\r\nZZ58Qdoi88GeRvkLjd6uEeyZV3UAkNIZVVeLPpSzekng4fy4iZFjSRnxSidV\r\nZd8NRNtAgPdO1kMwMUdlx1fMhYjCFyrqQsOgO+LFhP8qp/Jnhr/Ygy9J7HbI\r\n3fWjlIEkNYmPq4xOupYZw/GuMTXYEDRodpg=\r\n=AOsw\r\n-----END PGP SIGNATURE-----\r\n","size":26921},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.150_1654740151632_0.2542983261395573"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-09T02:30:20.171Z"},"1.4.151":{"name":"electron-to-chromium","version":"1.4.151","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1031.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"eb2fa15c51304b441c2545a1cbb90ef3720c64ec","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.151","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-XaG2LpZi9fdiWYOqJh0dJy4SlVywCvpgYXhzOlZTp4JqSKqxn5URqOjbm9OMYB3aInA2GuHQiem1QUOc1yT0Pw==","shasum":"d1c09dd3a06cb81ef03a3bbbff6905827c33ab4b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.151.tgz","fileCount":13,"unpackedSize":175241,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEXlvIdjo56cCPFNGhboj7app+ALSggKtlwyT8o7su9wIhAI4cYkpI93DdWPLCpMr8KmVkAtL5wpGEqob1BqcxoHI6"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiom35ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDuw/9H3RNz0DotvokChLdkdfJcBCYCvY0e1SvwNvWwRi8WWwEw0ll\r\nawZgBNAAYEFVbzE3/hWEZZRREbzZkkEeW/W0DoCkzEMvN2tERBPz6VzxGoLi\r\neql8jbVPM42DC5AOrll7Xk9Ts0KkfeU3+7MOwCEtEtQd9WYq1Nf2rHBDHKbM\r\n7+n1lH7N6a1B4wwsDi9rbPExfu30YRSCDcUfKxOkiPl5GEh8pYk0/7d3GRNj\r\nTC2BVKVcmcGA+8Df+GsmX6YTtcYDIJ4elJzNqwk1fepy15crwU9IgSt2MumT\r\nwnrpz1hcVaPhfoZ+i8KKiRkSYTSDS7UPAMGepOANmMbcuyvMEXNgRVf20D8y\r\nHRjlqU/vq5gPvQrAWrvPp8i8moRNg70AVFjkNcewtNuvgb+2NeIy/5ZpSLGt\r\ncWL7Gnfnc6ZXWoJ/m5hKSlClaLA8zxNq+oaLq5ML31ZyFbNC0Pc4zGHqzf9X\r\nIe+KifXS19JGzKNntzOZqtixUZU/Pj2NI6P7tKJWzA/NNQxcf9t1yovDekxo\r\n6xC6CWM+Q4rRHCRt46DnxY48ySvSJQY+iTSbOHkmFrLVVzEgB9a0HsfA9rGl\r\n3phEm0BXumk/xyEdAY8xTbyVWkcpK/pOK3hBekpql8cuZAaCap/kgXK/e7EB\r\n2Dp4GhUtN6JxB3dzwc90Zw09/8LP/t7mDgg=\r\n=3D11\r\n-----END PGP SIGNATURE-----\r\n","size":26938},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.151_1654812153565_0.22090187821589424"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-09T22:02:42.708Z"},"1.4.152":{"name":"electron-to-chromium","version":"1.4.152","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1032.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"262eb482bd53732647516505c0321d48c2b3b3da","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.152","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-jk4Ju5SGZAQQJ1iI4Rgru7dDlvkQPLpNPWH9gIZmwCD4YteA5Bbk1xPcPDUf5jUYs3e1e80RXdi8XgKQZaigeg==","shasum":"7dedbe8f3dc1c597088982a203f392e60f7ee90a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.152.tgz","fileCount":13,"unpackedSize":175381,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEo3J6qPZc3o3k9xem8YkLHwymR8lnWz0s0zIs9Q5aNwIgcqXkfB2RSsZY6f6Dnvoa48Q1AJtxg9Bdcc1/4TiFd5E="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJio795ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCTw/+PJ+LWS56VTdnCCPktMwvS1E/+gubHYLg802M3yWoSRY+BdE4\r\n1uoCiLQII38ZNT+kqjznBwyfS1V6g6eTcxh7+/ac6R2Hp7CG59cCsnBl2LOz\r\nkXdkoclvyiPRIcU56Nmrd9ivPQeC9QTyPhDdd5/qggD/Tw3iQa8lA56UEucY\r\n4FCsnJsbwyuTYHx+7mVwkXpkOm6qfHIcSOHylhOHh/rsw3RXltsdneXeyjjk\r\ng6ME874Wq/71nir0/e7SJqvTck1o7S35rP0fpc/I6w+luSnsCDod7T8Hez4S\r\nquGgUEaenyF1QbpXBL9NWNvrSJlbJTDcACPXxOlp8CNju0UBbkLkN7JONyRo\r\nBH6PXh4p9sKXQEJihKQ7Iq5MUYYXXVpvV7oBnLAQ2HfY0B7dv1J3Oh8lJQtt\r\nOdLcqzUk+boP2FcKCCMmJ+ycbelz3aFIZCTnqplSnfQlmolMyrzpuQ3b+ZKN\r\nrwKBxMlSxkPKQ1m53+EiGOsyE5/jBgGvKARBH6TjwfCv3h+mCoRwEfNXpiAM\r\nOXJFzhnunui9/87JJnBsUTTfz9q9sjQkmnnLZx1bA0O6t9iwRNRfrMtWel/N\r\n7MZnrilXfajhU1XG9t5mUfYhf39EfxQJf3sphqKLzlcy+51nvtLKmybLb4Ct\r\n3B45cE/87/btJHcSifPZ7lWnOKhtBmP6Taw=\r\n=81yU\r\n-----END PGP SIGNATURE-----\r\n","size":26951},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.152_1654898553379_0.15487827924293374"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-10T22:02:45.401Z"},"1.4.153":{"name":"electron-to-chromium","version":"1.4.153","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1033.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"30e1c88a8faea775b6f41106a240e3688a63e150","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.153","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-57AV9DNW1R52HjOqnGOCCTLHMHItLTGu/WjB1KYIa4BQ7p0u8J0j8N78akPcOBStKE801xcMjTpmbAylflfIYQ==","shasum":"7ed324c039745629041169221ba8dec653146f37","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.153.tgz","fileCount":13,"unpackedSize":175485,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCIDOk7bF4skKYUeMBNfN+gfG1+/9pUyoZ1J8XggWxyxQHAh9Q6pyvSlOFzpOgQ0btIbL1x2kJH1pct1DhFFWKTFrN"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip7P/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKoA//WycRj/6BK54IeC92oDiXQ9jx8i/Am/ppmPl6XHJgrAZQNh3i\r\nep0X9M6V4h9Eo0y4ZJbSqlaIo+9cc/5tk1oDyANm4t2rI5UNR6w8TGVdjfTU\r\nGFnfcY7vXwrJiIRRKAJeXr77eHtIrNs+UKBKKCk2YXIUXyyLUOk3+zPohGa7\r\nxRTiWZ73/nNM9jv/JMw3o09wYTGZuUqoNz9+FoTlg4LEM9EsFRf4cJaRLaEj\r\n5ozV6D5g9oUPffKhs4DhsFMdW2Y+lBAsWzH63N3104q0hjKsunacKeetQxkE\r\nCDpU2s3JoVWkn7JiYxWyEuSq6eD4jyMAyEJoEZs1dTfKSaZFFEQq2wIgJaLb\r\nFcPpZ06b4H9vBTCdQqeH78x6HDd7W9c08yIvj27EkOX3OmRrtrbPhj1Mz49l\r\ncVqGaRBtzmIknoMKMw3OpGUPdoJmmwGxLypbgG0jENUTlZHa5KAntSUpyHeW\r\n73X/VojRqRf+z2NIeMhqrGEKhoupLLcL5rLMlY9tV0GIUFtd5arpjARjbeTI\r\nAjOw1nKu9I1H4eqn1JD6qmApwuLdPVgJ3MvC6o4M9SIVkfTwrd+fNc/v8Aj3\r\njFxZ8TlZiqLALQo9d1XbMiHPVRmIeAa3RDpIEN12mZIoXaNlpBVKjGItvrm8\r\ndyKurYsapHIod1EV0jc8bdoYjgsefuy6KgE=\r\n=iFKD\r\n-----END PGP SIGNATURE-----\r\n","size":26956},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.153_1655157759690_0.8415360615629539"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-13T22:04:37.504Z"},"1.4.154":{"name":"electron-to-chromium","version":"1.4.154","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1034.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2e7dc6960d67ead200b8fb66d85c0c27fd9d7dee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.154","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-GbV9djOkrnj6xmW+YYVVEI3VCQnJ0pnSTu7TW2JyjKd5cakoiSaG5R4RbEtfaD92GsY10DzbU3GYRe+IOA9kqA==","shasum":"d69c60499fc467a6c59591d29183e520afbc78a1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.154.tgz","fileCount":13,"unpackedSize":175625,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDouwHRAwmULtMO/HyqdeK27DVNxUMluRDvFqHGTYNxawIgebXJyDz+yVtH44mF90Io6yIak3Z3miaNSRLrVeFdQWs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip+w5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquJw//YXR0fRzsxQY55uSjFUajjGSH3dBkJsIUDBB+nvjfbPSCkTJz\r\neSBCveoQahiWgTQ3L/UThVLRmI85dXCC3T6PTSG5Tn0DtWrAH1LZCuLOR24i\r\n6vk9GwygB5GoxEy7ei9Qzt3l2Dmy0ZN9Ltbw7dBlTA4xhwQtDTt7oqWz3Uuk\r\nSDAoJo1/XyoIFmDEFxEJuHaUsrlEPaJ1yydkE8B+Q89zod3++z+wKg7FglJx\r\n3XTUmXDgiTVl36I42reWGevi/NRcF3YIvCKWuWk7W7nxzINKmXoOulhcOu/e\r\nN3Aa08D2gTaRDVOVsb6o8I6TZrZbainieex0UvTqcpc4+PTQ6/Bw/mGQ2Z1k\r\npw1RNEIsdL8OoXsBY3ZpoK6rIcokdHX6dG8ymyTG6ChtAV+zoa3m582ugTUe\r\nEk5rMu99ZS5PKDU3gAY4Dm/mgW8fleg4uk7/cXf0+AeraBXPKKvsRnqrCkJc\r\n7Iw7OQSLlrVJ86Z/8u3NhPOwjvR02uh9s7QcfX2GMcb9KmoE3LAMmQ6+35Il\r\nYGiaxixC5cHpry7/GLniCUKt7szwKsGy3Pfei6PPMaCIHR0No7jwHTQ7N9t4\r\nN0fS1eMzTk2MBfUenhoq2F568UIhDLIPYiWCiq73MTJjmbXJqlVaJcq8ocnY\r\n2DoM+evn7Nxt5LpVnXza5TccsvRHS3BiSVQ=\r\n=avhF\r\n-----END PGP SIGNATURE-----\r\n","size":26975},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.154_1655172152940_0.32404820291661407"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-14T02:16:58.568Z"},"1.4.155":{"name":"electron-to-chromium","version":"1.4.155","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1035.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"18c3589ce493748df1281ce26b1e96b61a18338b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.155","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-niPzKBSYPG06gxLKO0c2kEmgdRMTtIbNrBlvD31Ld8Q57b/K0218U4j8u/OOt25XE1eFOn47FcmQVdx9R1qqxA==","shasum":"9c7190bf5e8608c5a5e4953b1ccf0facf3d1b49d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.155.tgz","fileCount":13,"unpackedSize":175765,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBgOpYjHtXCi57l85OfSdmZH4WcoI1Te0loGzEl9abgNAiEAwOF5YuLp0eCxl0g1iMa6Ug+xpYWKzq2ZIlSzPJJaKYk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqQV5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2zhAAivUVs44/MIglUAVX9c2wsGl5FFCvrxfvLNFtWsOoe2ZsE8zq\r\nvtyv2RZKyHw+HkEq+vfqE2hQ4M3w521G9EwlcmKFvrRaHI0r4P1ISOHMvXjV\r\nKo976Q107ugkvVIoolYx82wAj0NGMqSNM5rfQ183iGU3QsjjzkTKu9vwSdKg\r\nP78aJ8rlnT95mgRuS6BtmUxLMWlFbe6pGx8TGQSfpyqqUn13qi98elY3MiHX\r\njrs83DFdqHOYSHYZINSCRW0SnejGBHGMWmtK0vWHv+2saHGEvdWV99uE9SEL\r\np4I4MQw1oaBEmpBgmmdfZ7ZkhHvLfpbdsQ6sVKXFZz/6zvF7LfwrZqiaMScS\r\nQHqE1fbkhOpz8IV9G+sxQcWVM6v2SYoIn2I74jAxzCDBV++XhxuZNz0GmNcg\r\nqfpGmTrkbWDLDqg7vgo6eaHVZj7qAQAqHEMUIViZYJAdJYoW7BsirnGwKW5+\r\nJBWy2pJ7hxRtdC4JUZ4Jto3wbtWEDUDrn1G9Y2Bbhx7Ru0bAp+a2IFW9l5UK\r\nyflQfuYG+xGnuih9ivYX2icaND9py+crexH5UHv2xNxe+MAWHPTs1eqV6YcG\r\nZupjpxpYkbcA/IkWssfgJPku/0qqZ10GaT0YoPiqVKTQdes+LBxzHDzo8lEj\r\ncLwl1dagsXjrsG2NWOxvDoT+sdCiVv6woQw=\r\n=SDjQ\r\n-----END PGP SIGNATURE-----\r\n","size":26987},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.155_1655244153647_0.3155966019072278"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-14T22:02:42.896Z"},"1.4.156":{"name":"electron-to-chromium","version":"1.4.156","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1036.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5fb3d4d9c53ef8d8a202c81fc0212250b8094644","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.156","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-/Wj5NC7E0wHaMCdqxWz9B0lv7CcycDTiHyXCtbbu3pXM9TV2AOp8BtMqkVuqvJNdEvltBG6LxT2Q+BxY4LUCIA==","shasum":"fc398e1bfbe586135351ebfaf198473a82923af5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.156.tgz","fileCount":13,"unpackedSize":174852,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGg03eWplA+qToxSIpvVVp/kG3nMjh2V3PyFf6CGgmQbAiEAiF73usroXdeHiriU5Xx9Dp+BALui7r3wrdcdgW7cSz4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqa43ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7ihAAmytYmxDBQEcxbyb95P8OJdbBxzmrYitsOb4tyHbyPY0jJv9g\r\nWUZXZek5l7iHaXg7J75Hsucxk1TTE5WKF/whfAp3D19J07O15IJFOtp7xY1U\r\n9b/HpTPsN1+V8sHMppkUYAq/MFx1uZXabH2RayMQBkfIVabuq9zozxTzEwND\r\nqP9T+PFClbf52R5wJLkp9CD4BTuegnQW3Wk7gGlrxZbWp5GChe482644+nAx\r\nRuSCDHwraJWOmk6oxVEYkkSXOq62E0vXqD1rNyECWnvEJ61lAMSwAMyQjn/g\r\nDEDceL6IKricX906iwGHSy1Q2JKviyYjqJQJvy878twc7/GihJozqficlz5O\r\nnKfIrZ9RnqQWA6pQru7uedMOR/DixyyKdpUB0Vec1HXC2kNMc6JDW7D7u9FE\r\nZMyjZYySUq2M75oHl0Akid/xpgMAOQDjF3SyQBcYDqEB++vM2OHrxwxqerd/\r\n9jPaOx1rtqm1/Pj/Kw174pi5OgU6uz6kzSLk2azavZp/cFa5TQAswJ7f0EfJ\r\nZE8tEmCuUbZurIqSl0PSU/mHKRj4Z/ZyNLspQ75XDTNJT37+a9Fx8hz0fm6f\r\nv6CTSfN4hWmSYdJdsbKq4z3AdXYQJktyei3hUrIF4feZgnSouJSqtGMRM61d\r\nmZxAMS42gJ2XVjVLTA2zB85XQOCtD1/KeaU=\r\n=n1WJ\r\n-----END PGP SIGNATURE-----\r\n","size":26878},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.156_1655287351124_0.12423449279558119"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-15T10:04:05.519Z"},"1.4.157":{"name":"electron-to-chromium","version":"1.4.157","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1037.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"67335729c0a2dff65ec5d9d8a2a9fe3d88a98ba7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.157","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-gteFnXPKsDAdm1U5vVuyrLnKOaR/x/SY+HjUQoHypLUYWJt4RaWU3PaiTBEkRDJh8/Zd8KC/EFjV+uPaHsjKFA==","shasum":"25799684ed6f2be52bee2b716f9de257b24f3ba7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.157.tgz","fileCount":13,"unpackedSize":175905,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSaWo7Vifc2hyg5VnTwG3VvTKJr/rl4RithssygHWYLgIgNjiysTNi3O0HQxdO34izsXMsJCPxZfGHCnown3Nv35I="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqlb6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmql9BAAizhAkrPjADy74VCQF5p5qPVysSsBQqBGKHEkV3zsvxKKmFnW\r\nD6X5+Rd7fw0noz56eMGpCMrfG3vopOoi8frjWVHmpHA9tsequg6Bg6+7jVhA\r\nDhsQXx0P4UR3orKEaWlmGpnDeA2wwXDE41UbVBLMdLgfO79EONWT7U1DI/DT\r\nQkAMFlmO/U6oy+DaPGhcLgUYASFOfVFeQPyspzXA/9bucc5EBY/mw3IcYpyb\r\nEBOUhNedJasJa+cn/1+ouYDfpQOVEfpiwt2LQu94OHXsoyKuCfXU6nx8MaSs\r\nk7N0Wbte+0fKw/R2SvDWzqFMLdWfjI5QVWkBxXnTgfTwR6mnPx+l5763L7Df\r\nTqOCR7s7nFBi7zTCvOhyH05uRWczOx7FqVq0CsanFFutiYLyCLrb3ty3sNNW\r\nQwcg+GX+LCpQX/q38LgwzS241/VSuCfq2JrkJvUS0WDxBZieQN0bNtzlwi06\r\naOWodej5MfpgSU4qfi3BqjMRcwDEHmDPnDtljpR64k5nWAlMb/+ZyzhUd6f4\r\njTeXmQeuxwkAVQAaYsu0tzrQCgLX2g8MqWGZ3+gJkeYlpG6LNVlA2Y+mscZ9\r\nSkfzkWazaclr8z5grRhTjTKJPaJoVGJfsHmVh/vus6yOnf8MkJ5sbYYbzmrw\r\nhcnt2Sp7WX+txMTAmecfpuUrpxOjgSdgEk8=\r\n=4bz1\r\n-----END PGP SIGNATURE-----\r\n","size":27002},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.157_1655330554099_0.9393757408043972"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-15T22:03:59.530Z"},"1.4.158":{"name":"electron-to-chromium","version":"1.4.158","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1038.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"855babca8c39a3a8ee47e997cacce5e3c51e4b86","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.158","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-gppO3/+Y6sP432HtvwvuU8S+YYYLH4PmAYvQwqUtt9HDOmEsBwQfLnK9T8+1NIKwAS1BEygIjTaATC4H5EzvxQ==","shasum":"abbdaaf64676bfa4bc0307522125db34424a0ada","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.158.tgz","fileCount":13,"unpackedSize":175981,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICA1sxd7LSTl+OIeKTUQkCQObQcqaX9om9RDQGIpSIhUAiBVkGUPZ8pwsHo5KYeQYZBSHfKkwYeWT7T/7bPiXWI17A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqo84ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDGQ//SyKU1IL6RBGxPIjPyvCTMdS3TCx4ckyTGF1GIqq3Oa5pFdmf\r\n6MMgPFdoUckrMsI8P1QJCc8O5HL1iwTAIh6GOTS+uRx13QNwllQEFn/8/Hj5\r\n7i/dEXgrpTeu/RW0jARVh60ZKBh0nkWJZHojykkq0K+Jc+NBqqYOxFSi0q2t\r\ndhp5kok3Hj8pf+Da5ez5N5c9SBhAMEDH662UBC6dSqhxkq0RugAxXsQiR9cA\r\ncR80OcpOxAHzdjDFOS3qQjawxTIcogZ+pvzf31xM1ohAVuIVBOYSnswNkC1p\r\nhp6a578bjPRvcbgGDPlOsFgBX8jwi6al0aE5pBrsh8IFyE1/8E/soPV3oLx4\r\nXut/8vw34f4KfeehDgnn11chZPxZaShStyCKCftaEA2b73kxOXDyhHsZyRt8\r\nX+fqH1v2LKa9h/v/FizHAtqL0Ju+87++Can2MQG70ntbmO7dCV6TiNjYP90W\r\nch4rHJphlde/DBbLoF/h5Hek3v5ER4GLXbNpQ06AzmkSWxPnkISGt7BwzfCQ\r\n3yiHHYup1tbJmCOiiy5Gcty4mHAcyBjv6t3epUESCeQV9Jro2qPSGilz1tcl\r\nLABtxsKHWgepLT16hct+t7+G+AeCc6ONN6fL5VHH/s6ILNUOq3maNvvzUpT9\r\nfplDO732o8GboPuOoTODJcilB4fJxv5wTyM=\r\n=hHve\r\n-----END PGP SIGNATURE-----\r\n","size":27012},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.158_1655344952290_0.053968507899686324"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T02:20:21.113Z"},"1.4.159":{"name":"electron-to-chromium","version":"1.4.159","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1039.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"21594573e891788bd66d6dea6c2035b577e7e423","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.159","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-D0NfhJzv5GgN3L7bzy5VUD90yKXnNFdCy+fH6jox+5UyJJSFmDC2d1mUxc9yi3bpTaOA1MJ6BkuVjn+GZTaZwg==","shasum":"458f8c36736680f0369adc0d9ea601f1f2da06cd","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.159.tgz","fileCount":13,"unpackedSize":173983,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+wkiOJt2RP4x4BXJJ3aZ8PeW0qCMkGmidWwgfq/xc6gIgKQ5BgnUgy+Bi8fZcaus7pwF8in8KveY0LvqhGeweK/c="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiq6h7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrVww/9FzECogMj9LG+pVTIUztuGvn1RxPIb3wr58LyVmcUnYKKYPtQ\r\nBX1TOsJkw16TYXBqeMOSz+nGeGGvgwCpjEPmQBwbSJPhgIFGReP3DKJT9SI8\r\nWorYZPByw6CQkgQjZTsT3Z7MLqra4dtIYwEZkNN1K3iQd6q4XKPhcnI6R1UO\r\n4Atu/8842FNUGssOW1PB0rHrUyg27QpEWF45N47WYbrepK+qdPFlSvwTPIPS\r\n7jY3pDNANSGmLExriVRkmntFV/K8kBNjD+31G86c1rizjre/DUXyoiKMLwAF\r\nuA4IEC3hNz/sS8zxftu7Q3u6AXlwcDCHCQ/NI/eE+7WguLrFhHNfXUGqgAnn\r\nn+YeJeyd7Nmm/DGxC55PwogVBJGkKnDJWwPgyxxGLAqN6d6re8rX9gevg//B\r\nj6ewfOFGEsVCwKgWy7dWXVnj6Ud966dvdGQL8UPyFOYX+SA7Z76nxmcNPrAd\r\nv5BN2VZ2E/G/cEqBRVzLMLl3fcYY85y8zTXbP+qBiUWr9WrQGwy0mcAjf+WC\r\nVW/0EZGLsdo9PetjU/7DvitpcBVB1PXz5/0MU1oOoMQNTARtX6RZ/DEGgPU1\r\n6/EJFUTUWdjfZrz+OuwzdwyqirJpbajHG0bwWQXnI1uIHOPoMTvxOKqVJe52\r\nr3VKSrdT50442YGFCdblZSkvfbX3RuY1avE=\r\n=GVYm\r\n-----END PGP SIGNATURE-----\r\n","size":26682},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.159_1655416955279_0.5690393870044395"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T22:02:45.763Z"},"1.4.160":{"name":"electron-to-chromium","version":"1.4.160","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1040.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8e347450713109dd5da5a72511d61615b5ad45f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.160","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-O1Z12YfyeX2LXYO7MdHIPazGXzLzQnr1ADW55U2ARQsJBPgfpJz3u+g3Mo2l1wSyfOCdiGqaX9qtV4XKZ0HNRA==","shasum":"da54e24fddeaca52f37965c7bec1bd964c97d487","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.160.tgz","fileCount":13,"unpackedSize":176225,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAiD1Z+1LJlY5XdGEDCKLSLD+7wqWzLMV4e2GvstIpSgIhALfwqCxeiKMtC2/0VYEYDphLaH0iwAwphjdK72ri4N5l"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiq+C3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvYQ//U8v9lJpfOV1WcxeNit5VUKTJWlK9lAP2ccS47DX/GPT/hj02\r\nAkwMBhA9N7nsIhf6BrEaClPH1Rboz7jDtEEUQqXKvFad0syWX0Raz+tbN0nF\r\nqpvIfegFvuBs9aWf9hkZt/rCWIsOssFzwmWCflIDVlcR0Rn7dmn0i2//Jp/L\r\nqjSP1QFduRO3t6+Syht50iq81YvLG5mIo2LCvzqHJ8cgzdWCCxrxWyyxMZfn\r\naWJaRn20jVHhgT1IRtgqiFr3nKKheEIOk1yrFlf6xoRMN2rWhyI7XL6dJ7Y0\r\nkALSm6JpsewSYQ2lGBJ1FO1gyh5Ear/4NXOT7W2XmB3rcFsw9Q8iLKmqX1k3\r\nF2Y07zc08cLYrIsgkM7Qrlzco7LKJ4O30wIa+y3sbkin0xwpeGLRwS4F7/W9\r\nvJ7A2q2LPfkE+f2tZRjKfZ+YdNx9oNXkfKR/QOlaxYrSIRO25mZ82ZfzgTFz\r\nqi9RLNBm/ee0HU5/HG3v3P5iJCNGbsmTiie+DNn1ie+IrJE+Iz0+9TnY7ROE\r\nYvLz0auVRKL4+Durb9dcy8cIn1IxK7AMVp6BgysZ975cH/TdYVd1rXWTgvkD\r\nKNlVOr14edM5rG8Evn7OyOk16AkyIi7FfimrYt9VjDIJ2tP8EqyG6B6HgQB5\r\n5Bj9fmeFwz+96/tIFRz2fa+7jB0J9vEm1DI=\r\n=V8p/\r\n-----END PGP SIGNATURE-----\r\n","size":27034},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.160_1655431351679_0.7219699236097263"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-17T02:06:53.310Z"},"1.4.161":{"name":"electron-to-chromium","version":"1.4.161","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1041.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"785db1d858b4b571547ad073502e24b45717ddef","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.161","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-sTjBRhqh6wFodzZtc5Iu8/R95OkwaPNn7tj/TaDU5nu/5EFiQDtADGAXdR4tJcTEHlYfJpHqigzJqHvPgehP8A==","shasum":"49cb5b35385bfee6cc439d0a04fbba7a7a7f08a1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.161.tgz","fileCount":13,"unpackedSize":176365,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnCtTrorPNJtOd369HmFzPCHb5+Xu1WoG8cM8k0IlbPQIhAMa19tJx1q+kY2yewt44XaDfZ4MfrhOtu+liNOUqBs/P"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirPn3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq0HQ//ZZkwnWfP+ndBdA4BicDZx4Muhlo4BfjOqJeNzjQ3S/SwAgeF\r\njCBbVcWipGOrouXTOb5iZZU49wHsKfETBmrxtgevXzS6/6pRsxYw10JHWcp5\r\nG/qublH24xmOiVS3Uwpt5SoaosC2F9m0v3ox+7dvdtHz33KBLWJ7CN36GAQZ\r\nkEP8vqBXidEvUdSR50avEAZ84ULhrvpFzYHNygI4iOjd4MwejzuRb1wy6iX5\r\nlNf0qyGupLHJZ0PrlKRC1gvY67UcAlezlyCX4JaNd8uNBMY2E2zfBghA2+uJ\r\nSiCRGsknrSVNztOdj4KyCjMyuOvmInVut6ltFfXj9lGB93LTH9ntDEXdPkwb\r\n6cqbNtgKWa3qF9M4HinFvC1r4QKxQcEAJgmkRWElSbhmjYWmHBzXfRBCijof\r\nAivAmDKhNLYMmQ4ZdHIOeWPAGIi011X6Bf2gbQPuCGDMUngTgsm7ekKwAkqK\r\nkDOUKUljfTHYIes5DFbqi+FcYbEyKRwTAZsUlgRnLLz9661n1fgpDOWvu5bB\r\nOpA2hKGqYJniZkYM+H/nL9I9jWPceOfIAJQc2uvKkNCBgE0ZekI1eMB36Ewx\r\n62L3NwbGCuwwdFzIoJcGBEi2gnF+1QMZ4p1NydktTuvJ6RJgW8em/qt5h/4v\r\nR+RJ8tytOClurFCJPgx0QLacmdUUtvh1ShU=\r\n=f+zS\r\n-----END PGP SIGNATURE-----\r\n","size":27040},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.161_1655503351649_0.3848937468828608"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-17T22:03:34.839Z"},"1.4.162":{"name":"electron-to-chromium","version":"1.4.162","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1042.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"34ea1171db0dae060a8f33d7b102ed67ee6779f6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.162","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-JrMk3tR2rnBojfAipp9nGh/vcWyBHeNsAVBqehtk4vq0o1bE4sVw19ICeidNx3u0i2yg4X8BvyUIM/yo2vO9aA==","shasum":"69f8b900477208544a6e2a6e9bd3dc9e73163ed8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.162.tgz","fileCount":13,"unpackedSize":176683,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGTdYY1NT4pdTpKpc1trAbzYWnrEojVaIPL/LyFRGL9TAiAXd3bkUZnFCWicKsEWGnqX31nydxXVJCVa9X2Tne+i4A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisO54ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0pg//YTrIU5R61xEIohDv3PUf313OqH9HolBz+WI0Gi4DZYRlvQso\r\nMGHpK3bDUOBbWYHrGu/ZhY0Y/fFEy9DtTbvfw0p6a5r8U0Bpkf5tk7p3wzSy\r\nN3t5NW644WudMqyiS5KiIpQEXyFUHCGtHjCw4MvDbJcnqo7TzjtmB5fLXcgN\r\nWdXMi9+AH08O7lUFAANjJ3I9OVn9whBG2JY89DJ+T4XZyreqAv6hyfiPTDLk\r\nfbHoZezBYfPx90nCqycNe8giZ8p2dd+yzSHLyWs+Gfy+8Qqn+IaZOlDtPKcq\r\n1B+utz90Qjg4UVjdvjTLxPXHvNVcAPtgl2Klxwbcgv5nMu+lrXSiG8D9LLe9\r\nQflmokDRbU5vjQHzh1s1d29eHpNCvqMBZo95j/uO/y8Rq9sdGrQpHuUj9cOh\r\nFREfsZfQPTpNQXBqEnH6r3z1iGJl/q2CuaJX5LbGHNWPkRF5bIIhVtCQKQHs\r\ndhilCcS+F1L7oXNMHJZdxtFBq9RJaTIUn8NINayKH3cd1OnH9MmOqUbeq4Nc\r\nhUor3DM8irGQWjFzRZkKW83rsDe/vJgQR+E5XYVMA0RZ4fJVAEZW7/vb2MMr\r\nqoHTOXLch42BhKtRVcdI5Deyu8a+cr7/G5aQ12Kr1GQBUTh4j7aO178LxOSt\r\nGZ7ylu5/qVg3uB3b7eyqZNza1pnnVGu0KxA=\r\n=eyRx\r\n-----END PGP SIGNATURE-----\r\n","size":27065},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.162_1655762551873_0.3612706026707839"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-20T22:02:42.382Z"},"1.4.163":{"name":"electron-to-chromium","version":"1.4.163","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1043.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4e039bed1b771cff7300167a813f467692403262","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.163","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-c9q94pUVqIdc8hyr7jZDB4bNEoNF3QJ7y35lnddMD+mXtiv5GsL1bT/RmfW/KEOmvlNg5Oy1qioiy4tA7e864Q==","shasum":"d881ad93360001e79cdc871b3a5b5cd9c74e9639","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.163.tgz","fileCount":13,"unpackedSize":175010,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDttLAKpRGfd2nXtLdP3hTHQUY4VCn0nZw/ktNrRYzg9wIhANCTDzU0Mc+TdJtaFkX2KswzANilBn04DzTHKB+OCzLe"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisSa5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNlw//ZOmnSd+gJtxdBrTSZjl/hsUX/wXWRS93hzcUIHpVAyQ0CjZe\r\ng4cq9LhNUe7aTapiCLgQ2DgAstGevE61W+Jn5X0B/SwIzWHY9SR/+CM7WTX7\r\nndxfYwxwnGLuTFNRfvP0VXAHU8W5xSk4+V7GRyODDJxQ0wKftgkQEomFm+su\r\n5Jx9z1tw7slAQ0hOB2nF00XiLLOgQw+rxlJqpl/C/vDW+/EICMkUeSTkZ+Qn\r\nB4w0mrLZ9o20HoVu6sDxhIgvJzDOoM5q4oyCXaQbZ+OzuaiFQwNs81kQROm3\r\nf5HzDjW4CP23zhzLu31gN6D7eReUpZuocbr+LFLC8ers/rjLJM+ZRyfzVKbl\r\nTGekT+6NGJUbIyi/vgysioifFjWdQghP39+KLONgMx2UIXxR9IpO/SgbRNJb\r\naQ07ckzSNg88JLHcpFQCZwAGNls4jXdhXov6VGTYCSsiGRDZf1HaD3gKaBdK\r\nb8+JhgkxdS5jerpKhyPFQmt6IS935i8aLWzA1OZn1EeQ/StXH2N0YHCLqy+U\r\nVxKaXTgb48YldkkXEEjQ5ZengBDe83MoMlH2er/TnqrS0ZJXYDTHbDFLhyqU\r\n6mKS7wYWP0a43CSsHxgJiH3eBvnKhCQA2B59W2X5o5jxaxv685k6kQ57nX2o\r\nx6+igE/44oD7BEF10/icHjiFSOMZicw+iNc=\r\n=uKyZ\r\n-----END PGP SIGNATURE-----\r\n","size":26750},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.163_1655776953604_0.641052613429028"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-21T02:05:44.702Z"},"1.4.164":{"name":"electron-to-chromium","version":"1.4.164","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1044.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fc3b0f7c1f790e56f834cf8e9303c93488ef25e7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.164","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-K7iy5y6XyP9Pzh3uaDti0KC4JUNT6T1tLG5RTOmesqq2YgAJpYYYJ32m+anvZYjCV35llPTEh87kvEV/uSsiyQ==","shasum":"3d0f5c83557d8ec8a7faa531e498f198c3bd974a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.164.tgz","fileCount":13,"unpackedSize":176802,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEXb3AGNrdIlWOy7gRZeiUn3qaTiTx+EEiYrA5vnS6zoAiEA9D+Z1BSVGImD/iS1EfvlTKNT4W/nX7r7J2Fe6+RhcqQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisZc2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrONBAAmOdeAToRYNbbACRoN3eIjfYmRCdOwgtAvqe26xRTF4IMaife\r\n/SEbwySJzF2mWfnDiUHydZ7Ae31ANoHkWNB9XUJ4O8qV0ItCvW789KQjE1AW\r\nSGoQnLMo0PkHzpBpXvrsS1AIvzklqDYLDP1rUafvxXlGS3kwT/S//lyFqz0E\r\nI/xgmH+PCuoIpBG3lOAg1HGVmJX3iy8A7mkVTKBwjHezQjUb1oauv48Flgoq\r\nyc1Z/pV8Ly5MYjfesBbv0f1idn3uph1hEWXEwqvTBtnrqQaZBG174rnOEXvZ\r\nyuaCaURj7L87tJLX9yoBog9Buvg7irAKAUFdzTA3EQYAVCk4nA7tU4x49Zbd\r\n/VZLPvEIHEcSBSnQiB7tVwSicc5pXfcvB64q3T4G9oDlytnoSKPEUB1iZjio\r\nyRZ/Mt4mcdZi6YJxdWzaho+V1SiD4VkvFpV7c2mxGh7hJMgzuh40v/3fRX9b\r\nkBqaIPy/HqGI0AsZagFLxFYgFQkbsrMO5k2007lfIx3vscnrHQBDp8S0NKcS\r\nLZ3IcHw+xAQUd+gP/n7LfhF2rGw5FBxWw627HZR7+51UO9eSyjcNS1JrLeKn\r\nCbFbnoRhGeGVoqO8JejWAZZfFk+YSSlfB9QMh/f+gzMG9bC5mZ2ak5v2Ld9o\r\nY3CkuGxJ9kmwQobtXTa04+UWWYAo3WdyJYs=\r\n=yCdX\r\n-----END PGP SIGNATURE-----\r\n","size":27099},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.164_1655805750436_0.5693914750574731"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-21T10:22:56.344Z"},"1.4.165":{"name":"electron-to-chromium","version":"1.4.165","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1045.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"80b48128f4efc1c76963c4f847e4e488b633a421","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.165","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-DKQW1lqUSAYQvn9dnpK7mWaDpWbNOXQLXhfCi7Iwx0BKxdZOxkKcCyKw1l3ihWWW5iWSxKKbhEUoNRoHvl/hbA==","shasum":"a1ae079a4412b0c2d3bf6908e8db54511fb0bbac","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.165.tgz","fileCount":13,"unpackedSize":177042,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDX7VZslRasx1+/wzfZZkdZJ69cIiqfoyzWlbLqDvBfWAIhAJoAba11I/qPga7e522Xwis2RhIHUNikp/enuHPglzax"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisnhDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQmRAAifMzl2UU2CBxiyFP9yynMrjsQKUyII/EtwNbFuRmw1D2m+ZN\r\ns3II6ZLzzB0q7DRyui8EqmCJF9T8hvkt4pHpz0+7N5MfuoXmeThk4+s0vDRo\r\nlB0DAzW/0pujfLUR7rkfU8niCCZUuEo2n3Iix2QqCRw2URwpY3dgSVJ5aYNS\r\n6CItuNb7DzxsAARO/y2hL/WCqHRmWl9gMnIV2ezd/qlE+FHgab9DNNNZV769\r\nVkRSz5UYLC9n8fRpp78frRAR+DBK4e59eGYAjkW7EUttT/RNkFqdWJ68ZeDt\r\nBuDw2PN713poDfU8IO2HUGpTeOt8hfK2SYYVmu9+vH6kozF8915oL+Tf/VgG\r\nfjKS/i+hQuXAMyyMpWdtb9Qs72LK6TJ5nObbRBnP/WeOZDukUf9bCL6oPWNb\r\nWXzKkPCcuvaufRysPdaWf6oJ1Nr+BMgjGSjQx7m+3c2ctIuJKdi2Pt8OZ8mu\r\nqrGBpdXiUrXnlCRfgoT8fvHiUGtgAXOmWU08X9ffDVEPCTV1WfwTDYfFoECe\r\nZbi6b7hLLMKpHJTK1Ed6KiFYHpVCjBuJlnHkx3HkqknuI5XHFpxFKpuOXWBI\r\nfzHn3QiHTtWCMFEK4C30zMAcL2QVll368PY2LZAE0Nm4LB4S2ISi5mF9D8GE\r\nA+BhAL4GkPVcSEoxb946Y4ZoEuVlzN+P77s=\r\n=nHep\r\n-----END PGP SIGNATURE-----\r\n","size":27117},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.165_1655863363352_0.30107166947854624"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-22T02:05:05.835Z"},"1.4.166":{"name":"electron-to-chromium","version":"1.4.166","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1046.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c0c9bb5585e765a10e788463d2868459db76b14d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.166","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ZPLdq3kcATkD6dwne5M4SgJBHw21t90BqTGzf3AceJwj3cE/ICv6jyDwHYyJoF4JNuXM3pzRxlaRmpO7pdwmcg==","shasum":"83cd596e59c1a192425b99e6ecc64d9ffff50aff","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.166.tgz","fileCount":13,"unpackedSize":177182,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHqujUI9AGf+khQUmzYk9C8v9XpDPZji9+7qbfM7l+nkAiEApYNQx0HXt5y0Bu3viUnFtMq+JRA601hfm+EQr7yJ7ek="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJis5F4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/vhAAgwybzHa1+ykqcE7ABCwW8DKQOz10Jjywz7pH8OjxgnL1s98v\r\njNqpUrFTdxpE7A2+BM1q+5lEp3zqOWlJBmuRgmNQfe7VenIVndK9iofTAVfD\r\nJnph/5AgKqiAX9MJBNWtPJ9O7vvmLfEhFtuliVMplhwH3yJni3WIlLiyNapG\r\nEjsgduCG/sVjntnrUiYdbh8JTt8QJmdzZPGrrPGoLTUFmG+9eI4mtCU5T9Zd\r\nJzYbTuvLpgMQgPvcDpk9Z/nlZv+m/8lidzWuGJSut3udo9WYq05sdMoGgBFD\r\nNHnXjN7c9SoZA0ZU9UXAC3InHibhxf8u7TMWo7+YjNcWQLP1v6vZ/mnrIpLE\r\nms1EHqTfUPXy7t+DnW+5ljc+nQLmb8SD+z5X2GhNB9IMzLoVWHN3qRnwsCeY\r\n+o4F+h+nYQvDSIWxL5/yRTpcm3tDf5bGGEmvl4aLuwlDmBZgopTCM9kQ/qHk\r\nmhvfFjwy7XYW3Y5GPR1STbIqTfG55yIdKrmthKWWx4cwzfRmw07C/PkiZ5V/\r\nSAcLHfPWCgUZHW3Wgu31TUJZdj4yOzJLAzBQidHNaU0ANV+CF05YHeit5SM7\r\nPzApvbd1p7k4BxMG2JL3qIclLfTzhxMbLWRZbkeR1CaTIYuWI3o9A5BVCN/5\r\nKjqXxHTuMVKFgmTC/3cW+9r5b/DaBA48X2s=\r\n=CeEN\r\n-----END PGP SIGNATURE-----\r\n","size":27141},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.166_1655935351816_0.0735155724542147"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-22T22:02:45.323Z"},"1.4.167":{"name":"electron-to-chromium","version":"1.4.167","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1047.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d158fd57cea0f50fb3733b7daf96c31881524a5c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.167","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-lPHuHXBwpkr4RcfaZBKm6TKOWG/1N9mVggUpP4fY3l1JIUU2x4fkM8928smYdZ5lF+6KCTAxo1aK9JmqT+X71Q==","shasum":"72424aebc85df12c5331d37b1bcfd1ae01322c55","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.167.tgz","fileCount":13,"unpackedSize":177334,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDxSsKtzqsOAhYhqqfafPpdrwk2xKgaTCXmKsxdunLWwAiEA07eiF8lEtZQ6Vno04ftyiuRmclJo/8RS2uvazcsvE9E="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJis8m2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmosbQ/+OGkDXR3KALsq+pHX+C0vcLs65zIY/aKHHsvyEgc3iKR6jneA\r\nq6zxMJL0P+gcplAKpXC/ThzmcrRE2PBIF0BIeBMtWctxDT9r6WbmkXXY935L\r\n1vmEFIqkv/+bwm7rqRdAWt/o2fMKsNrjuruOktSsMVq/RhDEyZMrIziMCzAA\r\nn67QxiiizROWimpkNhuKf9lFrEWO3vmiYlj4MPIkswLMVdunxKWsYMsQ5Tl6\r\n9ivLtw/PFs/UrHJvFdXebHBlpTWzdFd8kWaFHuh7hq9if75Zz4r1eaaCPnvn\r\nxbJi14YGmLZXwyN02KReo50UeNqUJAB/++yzSIV10PdovwFdzjNBImPNsUU9\r\nudlSM31WNiRj3j+28AxYwd/4MgS0Lc4HAnXGXxfBwN0mFPbc2I/97XnwYTFH\r\nt01dTXd+j9Bqc8b9plQwfaPtNSBCcfYZ0+/lSw2xGiWLVunq6gcIZ2gyz9nG\r\nGCUmKTVl/Umz6OIC9GKrjdAH7Z0ce3zf7e84vgAEPLn8QSAS335o0SEaIgVv\r\ntcS5GxUYhpp1aBYNEGLqJWsJ5IzKkFOyVCXWwTVrIcCgL0KTSHgQknoJt10x\r\nsoIuueSTCEpHD8VbgjveRraaF2cCzuh3uq0xr8Rcn3ZzVMxaKfM+5jjb6c/X\r\ngU8glYVcwG75fEXvEuV02M5aQEevb6ajGpc=\r\n=X4UV\r\n-----END PGP SIGNATURE-----\r\n","size":27154},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.167_1655949750317_0.8449927464602487"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-23T02:02:42.733Z"},"1.4.168":{"name":"electron-to-chromium","version":"1.4.168","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1048.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ffdf668fd79b5f8e89cb51ff028333186fb8a6ee","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.168","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-yz247hclRBaP8ABB1hf9kL7AMfa+yC2hB9F3XF8Y87VWMnYgq4QYvV6acRACcDkTDxfGQ4GYK/aZPQiuFMGbaA==","shasum":"8f6bda320a434ac963850d18e41d83220973cbdd","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.168.tgz","fileCount":13,"unpackedSize":177574,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBgS8Ic5foy4o4AgSHiMZnsouMxTi7oPNPY8zgBe0iDJAiEAsxetdB7sLA4GAflcmRFN00pP9lm42djR703V2zIGnug="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitOL2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogWQ/+NqREpQBG8Og/4D9h/wj1Iaz+IwfMA6Bavuu5/CGQhR3BjK5T\r\nKEo9ubHsuONSV1RdRXxBaeO8qkRmV37XKcYYdrr6NZ5J1UDpISULxt2BrCro\r\n+QQqMCHLeQzI0IiBnYopYQMi+b7S7aHfqedRoXL4QOOA99o76sb7Gd8QKrMi\r\nnWp7HcUxwEGkxVZa2zWlpVn6u8K6DrSQ1XH46FkVHqO06qFfqFsX63ywcQrX\r\nm44le74sxfP8SXjaajHMK/q5BDfGa6hUpT/vLnR7GW99hG5faekdmOsGEtMs\r\nUfC7k03PqlyLStuB0ZAKW3Fpk6/kftCwA2XzOmB50yIt9759YfLm+BB159Uc\r\ntPWhr6kzDC/6YcocyNxp8hjDN3grYL73fiiOe841DdiwWJcK9PQFrTIY4Itq\r\nBwWaD9zew7tqFyqlQqeAd3T4uGOVXhxQwgNEMawz/oOyxY+3tPDzfjojZww1\r\nT94FAsMvlLOvgzPB8ZlHL0SN21EAOQqWoHBTTamMqEkdSsKYfW4IlEsD9ePG\r\nvLkHaKs0tqct5PLsTbTDmaAIxXKH7sFla71E8eusgV2s49m2VaAih1jkr21D\r\nd0Beh2m8qKhOfW38ufa+oBNS7pxvJFDgKqWVBTJLRAYn1ZJthqRjwx/hAuv3\r\nxseolumZeUt/knLLb0I7tHVhoYsrNc+trvA=\r\n=AWZm\r\n-----END PGP SIGNATURE-----\r\n","size":27167},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.168_1656021750401_0.525698286490359"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-23T22:02:41.142Z"},"1.4.169":{"name":"electron-to-chromium","version":"1.4.169","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1049.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5b9327757a42b7aa1281e005abf502cb89d6bc8d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.169","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Yb7UFva1sLlAaRyCkgoFF3qWvwZacFDtsGKi44rZsk8vnhL0DMhsUdhI4Dz9CCJQfftncDMGSI3AYiDtg8mD/w==","shasum":"d4b8cf9816566c7e9518128f1a97f39de9c7af9d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.169.tgz","fileCount":13,"unpackedSize":176741,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF99enzxat2F8FD6tvu78HTHUjy8U0HQof8SSXXcNMdTAiEA7Vv2qhDbCroZVZKzRcsqFFfh2ao0jG2roNs0zECUAAk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitYu3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrhcg//S87/puIBU1G2ZuUBPrh7oi1h+IqVQD6EunND1/Dpc477DZ/9\r\nuYqrldPyAMAt6yDqRV7hrKiF/2Vb0YIjuNJT5tIszO7mPV5JIYC5sS+XaVWn\r\ngPvQTMbUcUPW+y7VEMo9DCpiTHCDWqempbsKlDbmgQ1d2SfiAr2aNQVvVi4K\r\n62vuVMNSMBOkzjkbkgWOVrevWfPP6F6joNMv/UsAXLUu2cp9Kj98PwYNI5Ar\r\n68VxfbwvYMS/qCFxXO+rWMbSW3bsisydBzNMH6+X8ny1pGzfvFgB9XFlQYDH\r\nvoNH+avB+8WeXxq43HJ6PSo1Kw1b0GLNcFH9o5lFh70dblifE2eZk39Xggev\r\n1lWRu/IdHGApwTFXGobUVhRc6EYuOOuxWrgDZluLSsZ+nh8ahX5A6R/87rZl\r\n03M4GvgDQS74QtWnQEg/wmbl6cS6GgibH2DMHMUxBoLNYIxY3NY6FNMAVEiv\r\npvv0690NFu92y+uyCf5wR4ESImWaP79/btEXx0lKt88+vqhG6BmnEw4sx5DG\r\nUM5NxLZzdPL3h9XQPNdtNAB4075tkn1F6wW/TTio+BBmowSvKDGw4ylBxu3X\r\nDB1q0ProCoWAEQm5pebFitE1v9ipk5K/IcJAuorABHk8AiZjjK7KmXGOCAO5\r\nGE3Tblw2VhOXmvxLjEBZYHF3lRFa+f/KdK8=\r\n=2Pys\r\n-----END PGP SIGNATURE-----\r\n","size":27049},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.169_1656064951504_0.21925746999959705"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-24T11:03:35.136Z"},"1.4.170":{"name":"electron-to-chromium","version":"1.4.170","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1050.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"09baece260472a47f81e3fef24c2ca3bddcf56fb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.170","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-rZ8PZLhK4ORPjFqLp9aqC4/S1j4qWFsPPz13xmWdrbBkU/LlxMcok+f+6f8YnQ57MiZwKtOaW15biZZsY5Igvw==","shasum":"0415fc489402e09bfbe1f0c99bbf4d73f31d48d4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.170.tgz","fileCount":13,"unpackedSize":177714,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwrmRwNx4B1aoxz3MAZki/lVYjAJEzI4xFtrPJqavi9wIgH9lUPuNdSgXmECxE7qEuIir36NkbtHikb2dUQBGtWBU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitjR4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCEg//WHxf6pcEd5G+EmbaqBhsCclYnTur73lo5yPvnxb/WIS9UScz\r\nMxIqLnWANO2uzvOI9pNmla4qzpdySyFOXjHkL++8Zbhxf75j0tZaXah8KjU9\r\nd5QAE/4L5A6ZAyrZWBmF3BisXGTLvkYXVVfNmVE4UCG7QEzOBoHnHBsdVFMF\r\nAbytzrcXirUcyPz40xwzVfld/dStTNp3I4P8RwzBe/FH+tkGCpvRWbd9BAnZ\r\nhxJA9BxyUzyIh0MsD9CYf5LiH3NnZiY+GVIKh5u9C6/yyzUeHk6JaJMu9F/A\r\nHf9x/Wo/IBaPP6iZZ8qvUmMffUKNRNX/j5iDte29QFKtSumOMcyiyBAK/cug\r\n+EJMYNDk++2A9SKB4pbsAiFBIdOgMbiKm8y8Mqu1WQLzqYHdabxOns3umizG\r\njHAePbp+RecnB2Ga3z65oGF8t31OMFxCTvnPgrUjsMDB+T37ms39+xNSJ81O\r\nAJRoZ6YinTY9Q/6JWGKH2dvbJ+oxJMlbqm2YnQpkh+0jLQUFyoSBezifUTw8\r\nUmAKOnK9aQiMBXbA8A6nFR6bD34quFq2//M+j2p7WbL32TppYHNHi4PTDtb7\r\nx4b9JimjYuVinksrgQOjyd5Sjg1P97EPv3Z9O7Z6fHeeSU60xzz9T84SxsB7\r\nstOUEXQ+zF4CF2B9wOniHam2hL88zhMDUlc=\r\n=zS3m\r\n-----END PGP SIGNATURE-----\r\n","size":27181},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.170_1656108152134_0.9817301002450725"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-24T22:02:44.636Z"},"1.4.171":{"name":"electron-to-chromium","version":"1.4.171","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1051.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d33e6faf280aae3f8a64a03f2a3b389183443572","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.171","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-DmVNWJlGfCYtdgyxp24Aznd7Ou6a+XBSawxODh4lc39OHdh1a49Sitw8oxwMqzzm8n9m2P93OelvIF09SOTNwA==","shasum":"2beb4e03744ef24a90580074edb87c06fbc86ed7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.171.tgz","fileCount":13,"unpackedSize":175541,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBjHjHv8zGYxZA0tl+e4fJhFPoz3MCXDENmTCJpswBUVAiAIe/E2eJjFPBFtxDkOcNv0H3rapTVvv9NYbmXX33c45w=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuij2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2EQ/+Kn0vXaLwRTTT0LHkHz9oN8EPSnlDbE44K6ddwh7ytGyk/f3H\r\nDeFu1Pd4S1D0SXuq/ewLiR7T1oeynSVJynnWl3Ar0rMS/U1XKUT6Y1XSRHs3\r\nArwyydT5vGYR7enmaokhKPajlD6/tu8V55zPzcGqLtp3XrNnMN9Rkef33lno\r\nxMPMJYUuV3zDwIghfrdF+ztNG7Sadz9M5qSNZdJ53xIMmDDCZ3+2swzxzA9j\r\nAc6NGp5Vtb+mHkFbhdovV9b5HLE63iGBLCiTlJnoXguOI5VGNPGMcRCsFBQa\r\nJjBNcRon+FYqKYqRPm++ie8IftyoJnw4bmh3WjhCE5Vzh61gy4TL6JFx/swy\r\nAQE9hU0SV69dfd8ZPCgx/PkT+MYrCbjdNEQFg1Ta/qXIRhpHDJL0LDr1VLeo\r\nHg9uBt4Zd4KHxfb7+amuCwBJnRo89MDRY1TzidAaN3L96PFMmc7QLFiBvdCD\r\nDkVtya4OlOSymUn3tis7cUV+KP1a+8fDNFaJoznkq0/HK+VAmIwNBeef1mxJ\r\noUvYmKBg7EW7eJ7Ijb9xQasPX3fLe3VIFKtYXdmtasuxopqUJ42HbblwcUQY\r\nmaNlqESI2IMqrvHtobia1YQabyCPvwk/tbdiqfEMGy+nu5mUkefumcuJ1Nst\r\nBLIR9qSzankBPRMnTdtYoOFHe+exsrKh1fk=\r\n=m94w\r\n-----END PGP SIGNATURE-----\r\n","size":26673},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.171_1656367349867_0.35975315662151686"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-27T22:02:39.900Z"},"1.4.172":{"name":"electron-to-chromium","version":"1.4.172","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1052.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4263065f3e7cb3f43781e5dfc74981cd31126621","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.172","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==","shasum":"87335795a3dc19e7b6dd5af291038477d81dc6b1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz","fileCount":13,"unpackedSize":177954,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB3o9sZOQ1uo1wgk7Z+W8bKPms8l6QrNJ6GzCvmN++ECAiAtqcUiuO/R773FhzaNx22HMxNG93HYu06e/SRLxYs7mw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiumE3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrewA//bmryAFFCoSMylzXoNwbtHcyrq7E00KsLoIlV/JwuIj4ffe/7\r\n4lq3I/d4QuOJIOgjgmHbmtGqr02wgfBuAebNl8IyhqNh2I5ilE/IFP2pHsXJ\r\n1dTnckAHs3VuRV+uv4UAgmBVCHrbOp39q52yCb2CvmycToIG17kQ1MzMGxR9\r\n0V7QqiiD8Yi2eGGcFVmrNlxJ9aFKAb5C5rr49kPc+Wed+uPV4GMUR8Llkj30\r\nreCd/RMMvtU5qSdPkTKVCj14QFYg2AfhgRzbXvXRoYpMzQ3zhyQJc75vG42W\r\nKbYDWd2H+hjujVZ24huueD43fxpJ8uhDSSpOySbu060Sg4bGD7dhE83a1v4+\r\nRvv6UtyvWCe6DFNlcHyT3yH0YHtgQ2DO67iUs6u/Bv5E3hDvocKXrWXOBAJf\r\na5WLnyGC7eQ05pdkU8PZMG57BLK6JEzQNXcttgpbfeDLawPiIsbd8BCyHgc2\r\n/HR43xS6M6uOBiA41uB6v7bGH6De7rMC92csEIzMK/Z6cR4Jv3g9DWn65pvq\r\nOq/W9CgL248PeWahTIfJuRS659VnFsuHrd6TP9M2PobAISm9vX1W4P25fmiv\r\nStGOyjWHRfjgkF9zOk2ByRRAzofXKjkxB+MQ8dsAeGwuzh5xTQ1at4mme6L3\r\nkSWXQVdCtc6rJFiOvTFIXoOVnfMumQw7M6E=\r\n=aYnC\r\n-----END PGP SIGNATURE-----\r\n","size":27200},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.172_1656381750951_0.2505358368421713"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-28T02:10:40.570Z"},"1.4.173":{"name":"electron-to-chromium","version":"1.4.173","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1053.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5689148c2481411ce6c5705a6f1558f3b1218c38","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.173","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Qo3LnVW6JRNhD32viSdPebxKI7K+3WeBDjU1+Q2yZS83zAh8C2LyPpzTimlciv6U74KpY9n/0ESAhUByRke0jw==","shasum":"48f128dda49cd7f6317e65ac0085bd3a6b9b6e3b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.173.tgz","fileCount":13,"unpackedSize":178133,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH5wGB//s6XAA1PhuFFlXmZTiEVt9V7QUydRyRFvVkbBAiEA4CQw6DfSEzstUd3GVKpBs/Pqx/liyY/igt97qd+q0+M="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivCM3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNOA/9H5J+Ouf8p3usQZ5qhTkGhiVcNIBAWnhuX0PI4RgaDWINe0vx\r\ncNbHIsd5eiLfhRTJN/qE9j8AhcCKKZ9yOM8yvxEY4mVeD3L/UrG6fDXUVlJp\r\nVeuNgJL/YcfYoApDM5YRiZGe3wCOKD8alTqI9LZf8rfcSnRvUMNrWGVTo5ms\r\n2v0kD7FJrym4UftNDnfkHFy+EtyKiw0fWKzwv+lJKdj5C0i3sbHUmXwxY59f\r\n3jhJWPnMnbA1YxfADKQcBHlwSYJHtx03GAKBBpP8cM8602rKL9CisfyXR08L\r\nKM3rKqDIZc2Jcp70FXB5uHA4y88RHodtg48l60Rhb14xWyTGJytehX7EWmgv\r\n7/aQQy4xW20CP2EfdKrVDgzc+ju3cCJDl/2KRWflnNQvr8cX6nQuSl+ugHGW\r\nLnpSjj/f65Q+AhzxjT5YfROBUYQx8/A5j9lSKFaFAOsHK7y9JDD8K06TANN8\r\nVL4TQccqIo9dLmDSmST967m7QkwC5pyiaLAvLJZ9EEkGZOpecB03UK1+uM95\r\nROQSoDumNkDArLBpM0vxz0LjVRbzVCkLTex4fwKYNWRbUVwrGTs312sO0JA6\r\nx+1N5CW/4eR+4hBcpUQZ/D+IiRZ97LB1f8wFxWbjgui8afAuntdb7VEm/3uk\r\naSItxAbTa4u5UBmaPQidNNlk60zB4kTQToQ=\r\n=sOdn\r\n-----END PGP SIGNATURE-----\r\n","size":27231},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.173_1656496951205_0.41456477991120977"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-29T11:30:31.128Z"},"1.4.174":{"name":"electron-to-chromium","version":"1.4.174","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1054.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f1fb220bf9e5dd010c8a10712d96294e8dd303bd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.174","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-JER+w+9MV2MBVFOXxP036bLlNOnzbYAWrWU8sNUwoOO69T3w4564WhM5H5atd8VVS8U4vpi0i0kdoYzm1NPQgQ==","shasum":"ffdf57f26dd4558c5aabdb4b190c47af1c4e443b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.174.tgz","fileCount":13,"unpackedSize":178273,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDi0oIQJaa8nqjYRx9gMeqhzx+/nQ/PTRCl7yhZNv8z/AiBbfhebKjS2je3xEKMKz2p+bQm7KsbY+H8UjGf3DGbgOA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivMv2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpk1Q/+Md9OJt6tUa2R6RGyq6OTl/600jar1xgVXLkrn+tKtoAW1J1s\r\nIQUCJ80PiSupRaztqToDwu0Gsa/G6sFiaY/yQcExGoysVBMawmX7mbNgd72K\r\nJfzvdK22H1oRDrrie1nHjiPF0MQtuLunV7RnhMc17yXwSFYZoTX4AviyADKr\r\n8AUEwLa6TTbnSz5JlR8NHHjbvKbH12V2zwrePR+SjY1k+IhE+0BRS0tZ9PR4\r\npRoi078ZD3uKaT3Vm/2qNDqGwC4W1AoAUyC2LkuyNkWx4jwV1W2iaZyIm/4I\r\ngDWCvO2r+LwXQ47yawXotBoNwq/L6rVGdLfNng9avVdmU+mwp51chnaBPOv5\r\n3do5IYfitC/aUgBaVipjtS+QM4Cj6Vrf5wM1ACFGaqftwsqWU83PR41usm/o\r\ngmA5ASsHcWhFI7mR4FBBP6skapjihB8E7SG9YNpPs3RL2SkHexljirmYss+B\r\nUYDIBDWmbV20USgdmRbvmDhOKyLJ9w6PDdn/izNNNcoKkz+fLSPGBpMomCJd\r\nPTxrv8UzbKDY3LRndng1tj+fwDbWAzoWVSjDlovtGAc6VLvr8um4Cr604MuF\r\n8a6HNyZQVYfFro5+lhJ4StE/5e+aAq9yTw6NKDozBxKzIlHzdLE0d8hu2n0I\r\nkYSmft8vTv91WBJ7TSgFdoTK6u/WsC9liEI=\r\n=iCTh\r\n-----END PGP SIGNATURE-----\r\n","size":27239},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.174_1656540150306_0.019194373963429934"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-29T22:02:41.980Z"},"1.4.175":{"name":"electron-to-chromium","version":"1.4.175","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1055.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f96f5dcfce5854d207f8093c625e811ebad8a5c9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.175","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-DeZghg171Q6Z2nYsJavRu2RIUaOBcvn0nlN8mKdB4sX7D9mhhDfxRhFDFzg37JS0jdkEXTjX7WbNRAHPaI4q+A==","shasum":"56a886de9b1ec687e29bde628ebb9ce635f06037","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.175.tgz","fileCount":13,"unpackedSize":178314,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIByXF0/eyIMhmEREhR5fNxXNaNp0k4r2FkTS8NiK9+CXAiEAiBcffnvU1jUJZ6x0dTu7NgNOgIDToEWLyun8GGTjHlg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivh12ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxNQ/8CzqgEZoxthvhw+9YYURK7M6j6Q5a3uYHkCGINncMgrVCZDEp\r\ndc0O/IQjmTS7c6P7L9RrbKwzKKUyi5mbDzwShtrr2bP4M+WAx9yrFl8rgUe+\r\nB/GVh3GLqJbKX80N1yCD76GZNWH6bZe7pL1gv5jBtSRKmW2/imHld4lrhCLJ\r\nwgJlQnD0twIgNjUDsE8L55ULzwqhUGZKCsLMcHXDB4k/m5fIHtiwAy739JmX\r\nRq+GrJPaVpGMxym0hN+pG27XYupE7lbcOIUP1VjMYmghVZ/SNRLZP/PAfgyn\r\nDarbMXsCqqJQzAnTDdplNe8+Dyp7khSQ754SsGNKywtOzowr0x/pEMZL1Ydj\r\nfnOdQjCEdrCAV+46pCM4dVpTQBwavfUDwRYd8PFGJBpoztAVbCjwoKrKbUWH\r\n12EY/cfxlvb3tbAE4YdQh+87McFXaI5AoI3OW7iz3YR/8Va6yfMJDDyuh6+6\r\nwP6uVwU1XpSJTUUr4jf1YfUXuJuZTWWwuYOJ0bN09jY0/Hrol7s8HBef4R7q\r\nxiaZ22JOnHBo6l4kCd5dy6nKjvCWIUVcolpgyfJoEBRbkkER99oRi8b7wbSJ\r\nmXYo+HcUBN4XgC3LnnWGjaztrbb1KVRlp56B4GxGFFDaq7MZRGVQR341GTd2\r\n/exsCItNmIGB7q1CXQ5GRY7/mIy2lGHSwdE=\r\n=jtoW\r\n-----END PGP SIGNATURE-----\r\n","size":27229},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.175_1656626549796_0.3810121621800511"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-01T15:07:38.646Z"},"1.4.176":{"name":"electron-to-chromium","version":"1.4.176","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1056.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"b6d68a891e9ab24c6dbff48fdb23bca6c1428ef9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.176","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-92JdgyRlcNDwuy75MjuFSb3clt6DGJ2IXSpg0MCjKd3JV9eSmuUAIyWiGAp/EtT0z2D4rqbYqThQLV90maH3Zw==","shasum":"61ab2a1de3b5072ee31881a937c08ac6780d1cfa","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.176.tgz","fileCount":13,"unpackedSize":178706,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAktABezs9qREebcFxynA3mbBSi6wlYoX3egAagNBV2GAiA9L/sqEAdU/aMAExP7z9maReUHgO3wDjOgVWsUG/ruiQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivlW3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogABAAmK/7L1NmD20WU5pD+SpkCiSNYnGOrPUGjJysFlsUvpicq7EI\r\n9wv+0+zdAbvtIimM00MOxA12Kr9vqKOgT6M4M4tZ2+uIWCdA1lbLodzO9/XJ\r\nLy2K0XvOVdeIxqiiQUyOFK0/Ko+fQFB2nXIiudM6jrwB/3WJGrUVRNWDwo05\r\nkpvrL8mtyXLvFoD9szDacUvpA8qHNN4vSXni8ZhAVwLoEH/hGXhwDYXKBjuU\r\nCg2/I2VvjH/Mo7iy3bWRHgacxxPVc7M/PJcp33mDze/ytpne0Frl5YudNRC3\r\nT4loblwyf1IlNhRS7/FAFEBlW9v/SWVAgUp1P/PaJVo7a/f8lyYHXTXlpP9D\r\n//b8L5w7s9Ilo3LTvS/iV13VVK6ncgVQQfZ7ApcdKyhTzOkGDjM7+tpXqT2e\r\n9pnuLdbSHDL5EWB+FXGu9OfrwARyHZr9pbn38p2COyokoZs+tdVh0JaJNhy+\r\n1fRl5aenYne0OXElJBkO3wgneaQnh55qOJQjDvs2iG6rLYzVcJtDpGTZN2NK\r\n4d+YShBN/SWXI4MUkgJdSx0ZOl3GNg52BWyka1nYhObxPcJhESuIxIMm1xle\r\nD0Yz/5cwlH9KA0iZHeqv/uGA/ZKiCfHB7R/c0ka9UjMZ0EFKOgiCHLY4Asm4\r\nG+WURjEnXd9THTbo99+9yluvjwkhRV0YSBk=\r\n=4BdL\r\n-----END PGP SIGNATURE-----\r\n","size":27282},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.176_1656640951162_0.13768024200572526"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-01T15:07:38.750Z"},"1.4.177":{"name":"electron-to-chromium","version":"1.4.177","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1057.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"816b0488b21948447aa67b0a58bc92a710c60904","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.177","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-FYPir3NSBEGexSZUEeht81oVhHfLFl6mhUKSkjHN/iB/TwEIt/WHQrqVGfTLN5gQxwJCQkIJBe05eOXjI7omgg==","shasum":"b6a4436eb788ca732556cd69f384b8a3c82118c5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.177.tgz","fileCount":13,"unpackedSize":178846,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxTjNfEx8b6XF8+tE1TzEyI/uEBoYlAP5l7VgI4hSqUgIhALOAYFvYFmU3M6DvS7xDcW8YWeGHeT2e9jsOaJQT/NWe"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiv272ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCoA/+OU28C+uJ6xI1o/rV5S3zPl1TThQh5wahu+w51lEzlHMp8kIc\r\nEHTOjRZR46dkm1SFGJXnejc8J4rBijJmwO/zKuO8cR6dDb063ndOXaz44kLj\r\nuDQ6IBobj8v2xauf4wNetnc9PeD8P6CsAQiMfBjfmGcctGcYTqJgIQS6Mlmb\r\n2xDaeDBxcbTW9yiURnLVlhLv+RcxNipED9fwAjrH4yzkn2Pj8adtKDYVlJ8a\r\n6WlF12BTOBKmXfXVi5gxLcrSR+WIzbO0hecJtTE7lzTzF7M3mqLAoRRYObhG\r\nmcOFMz8cXT2gV5kjLgW+NXkzNuhdsIT5d/jJIQFsZc27yvy8u3H3vQL1qOVB\r\nNoQbwbyXvss7qnPntENOfOri4hp7AZ+Ta5wAJLjcKtQ+uBpGkIdj0qnaenmF\r\njLeFl2hrkUPWY3c3uHSXID0xDibp4vLzlwpLqy8svFks9yO4iCGeDVbvo3Fw\r\nALrad6gyTi4N0Q3TeqihIkDT8qXDHBll/ld9EgsCP3mFSSnMOl4iUdjfJ0jq\r\no7KIj3IpRqCgPKOi/H2AFMAVkVC2jmIfowOemiSjMt17HV+nEVhSNwvwyxkg\r\n91HFb9Ay488xNKjuLH/Zaw8c71t1RaUt/6oG8DXyzlEFVpx3zGhaBEhul8J6\r\naeBo0udlFVq8iLLIovPMqPe67o/CutppiEw=\r\n=DpQa\r\n-----END PGP SIGNATURE-----\r\n","size":27303},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.177_1656712950551_0.526929794799404"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-01T22:24:37.140Z"},"1.4.178":{"name":"electron-to-chromium","version":"1.4.178","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1058.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a7907140cbb305635ae86ee4d7407c6518591538","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.178","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-aWuhJXkwIdoQzGR8p2QvR3N0OzdUKZSP8+P/hzuMzNQIPZoEa8HiCGM75bQBHjyz+eKT5PB9dVCzkK/tyQ4B5Q==","shasum":"3dae6fda486007bb54bbfed420ebd40881a3de45","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.178.tgz","fileCount":13,"unpackedSize":179086,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDR1OIo2soN8mVDMFE8FkDtPG0nsSPZCe2KKd4ow0M+uAiEA++bR+2TkBriNhSwxNFI5y6fcUbU3PmplySq0Oq73KUA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiw2N0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOsw//Vkrb2J61J0+c+6d85x3CeTTB9P3JCrUYDTEzr7EmnBoSvyqZ\r\nwKWC7eeaOApv0IWH0iOM+E38qa2PEHy9jIIY5u+NJCGnnbKa5eBTA0COxIK4\r\n0EeJJdiOUa7RJv4eus/wSt2qvMsA3qY1EvzmWnKDLyTiL6fNM2lZqCPIWK+o\r\ncDLkHXT+1jT16MjsPY0JDpLIVTcuFG1OTLQPdzQrVYRvA7Vx+t8Brhp4xiin\r\nbYh/Eu6Yh0zEPkQZYpvfuvDIjyxP8H3pOm/+HzvLgEgGxPgPh3YTLG0nV+hl\r\nbbxKZZOwmPqTkrUWJMAT8nGAvYyK7eHxxmjiGbGka6fKEse7qHQ9j3Mpe4sw\r\n0DzCX3ZJ9Uo0erXS5lJ3XRBbafzbePZlvtpfvS9pg7mrCFDRP2peCl4YKY1c\r\noXAz4TNCpOiGIJ8ql3963+imLTAUtBgTdvyCIgpcuEjR7Pq2sryNS0jo01uw\r\nxrQfqdL4vSaajrd0ENT2+aWe/vhNhWgutqo4vmP/uCaF1/azujFRys955TMK\r\nr+mLTsAkYE9dQFI3pzBcZS3ArwboEba/eCA0mVacxF2jHHEDFpOHoFbW6xU6\r\nRK5KnDQntCAZ6KDHMxnzXdRazkS8QC1vt9nUv/lTAF0NuOvvXfOyVIIh7v0+\r\nXfX/Dz4FZx7y23yWFPTKRUi1XiqvV6y5u4Q=\r\n=tx8L\r\n-----END PGP SIGNATURE-----\r\n","size":27321},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.178_1656972148711_0.15212408616323247"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-04T22:02:40.307Z"},"1.4.179":{"name":"electron-to-chromium","version":"1.4.179","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1059.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"478cae8ed005b407d6f0c3ef17346aeccc78f809","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.179","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-1XeTb/U/8Xgh2YgPOqhakLYsvCcU4U7jUjTMbEnhIJoIWd/Qt3yC8y0cbG+fHzn4zUNF99Ey1xiPf20bwgLO3Q==","shasum":"450561ade3ca3497dfed65af412c672972b2dad5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.179.tgz","fileCount":13,"unpackedSize":178588,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFfXgFYQY15pCMFvD7g5dwFdKq8z4jD1zYOpILc9P2lgAiEAtUAoMgRlQWxmPotzSy8zT8enx//fR6dbWB0qUIwUuuk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixAw0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpx+BAAob3NvtszEVvr+kIb1wEnfOQfdwBk4Li1iVmxzkJJAsS3CZag\r\n8d7eNApFQyOfWbSVnI6iZwoq/BqqbL/Noq8QMRpg6ftryZ0eGiZfR9857AXn\r\npsH5lcCJ+GKOz72wiAqEuhkSkh4AZrwhh4FtNrkBh6hlf646v+QJ/hTBSNfH\r\nTbf27HolwAD6LO69x9CV542/5FQNgr8olORlmZLfInUbag7U+tJjPUsdOzzy\r\ntyvnnwrk7gTDBwcXgRQJb9/nOAlFKICGgTKP5HocisHhV333E/96Xem8GqpK\r\nbaB9qrOkI3ax0bU2PO3dP3NEyzej4pLaN84yf3PK74Y2kNTt3mI9kxoi2EQD\r\nB3H6F1eRl4XUFH9pyAfuq/OHRQBitzgqCCZR2fMuGE0tfUCfi3a+8KvF27it\r\nHVn8QQftgje8QDzhi8u3aLO4VbUYd71ZyU8BH1EsyDrX1sB5rgOOfVDrr0Wm\r\niXnhvg+t4FeUCoDtXaFzXqIOo8C9SNElyCHhjMtTAJaYf3EZfKmqiOk9z0g5\r\nJ/OO1RPdE4oh58XXd59Ik2l/b+FtX9l4QqMMIQAjzDpK3ZtzY5qHlV+KU0o5\r\nd7aX6+ikA/ikhlLnMG+qAAbLKQbeCZicsdKYcig7lt1wB09shcvePLO2Ey5m\r\nlxwe4AhS8mbmBu/KJ706cZpsnyv+jRW7xuA=\r\n=ZQkn\r\n-----END PGP SIGNATURE-----\r\n","size":27260},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.179_1657015348795_0.12469266191836703"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-05T10:31:10.064Z"},"1.4.180":{"name":"electron-to-chromium","version":"1.4.180","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1060.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"787f617f3c5ef8b41b9ce97d671d8e0ea33ce4f5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.180","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==","shasum":"380b06037836055d12c7de181ee90b8ed911c3e7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.180.tgz","fileCount":13,"unpackedSize":179226,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8aC4l+qKba4LDnDogRBh01jos9B3hJY4oZZ7AeVLvfwIgCpWzPdCgxm/22s4HOTMDB1wwG/ovPJsfuLe2idhNf1o="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixLT/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiiRAAjselQ/ysHjbDL3D7hHEb+BQ7qy/k/DIYxBGAy3xf6QFEgZo9\r\nxzN81Ct/81bpgf1OF/Ocs7IfuARkyhvwwWruXSAd+44pAO5m5K4ouTLCgvCh\r\nYmY8osNLC/9bSe4LkOLeyOt7G/xXpbl3Bj3vY1EjQNJV9o7uBS7sBIp4zcgD\r\nuq0/C0b4vWQ3p68gXS2qLffsp5m2u67VLtFPw8BNsQMAeJmdRq4Bo0UnCbQQ\r\n2hKs4xqcnYXrf+xtcnS5d9NXvjqTZLo3XzJJB6FyqvFg7vWeWajs6EqLQtYG\r\nbdaXy2OcEVbHS57SWJqFcZ8RknFV+tg0zIqI7J33uNPqCJUAmctwr6g4jUfc\r\noL1NXf0s7iCg7N+rb/EYIvNVhAKAgj9rkeBLOyb3+Nv2CuBi5i6RPbxSd8S1\r\nOyk6m47WIa4mDMb1xAzc4tUSXFJy2cGBiVWUaLtP8UTqHfznFEwJ/z4pRO4Q\r\nn/YcaJD2iKo+hFpu6fS2YO7z9ihWmW2VN9zNZdUBcoKDQqF4cLUjoB8aDgoS\r\nC2H4OYa1YVzU1vJj82iUBJGK2CKoDXDj8rVxZkWFEnhhqQe9oKk3ApEpiqUv\r\ndKkWroIvd40Dbqzrj0MrMonV19YnRnUTndHZs7HznrF1O6YOGv6snfIvr7d/\r\nEQRBWVDGYhOLFIemkWeeFifAme24u+w5fU4=\r\n=biEv\r\n-----END PGP SIGNATURE-----\r\n","size":27340},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.180_1657058558924_0.3099281571679906"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-05T22:02:54.276Z"},"1.4.181":{"name":"electron-to-chromium","version":"1.4.181","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1061.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"37b59fefe3b88d05788982b2c9e165d833d270fd","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.181","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-T6JzLj+9J6CdPgI7jXLcq5Ao2qyFhEBfWFUExxRRVFdVYAU86SfcLX3Zw6p1HzvngR+M8C4q6eDkQ5flEr1RnA==","shasum":"4568379c1493ee95342b13bb2279cf4d207f2c3a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.181.tgz","fileCount":13,"unpackedSize":179366,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDy7WjYQ8dPpzL5znZn8mQuQoBs8EDIj6Uy5ygQBdOVqAiB3rKfB9WKVV4fbz9XD3z/PcN9yKNw6tLasMdRJj1xERg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixgZ0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmok1A/+InvTFfcCcLBBV/TxZODlvqgI0h7/9+ojx9M9Zmj2Exk0jAY/\r\nni+oUVFK5gc+ucIzlrdWa7rLH8l8n7B+LRudgb50VhopqzPkM0qRtwTsshss\r\neQkCMeGbAR3BDFo+UW2dGmwCgrB35oNNbMZ0NT2biL1qP9T6GxfJZFranxFZ\r\niKbYudCm1NZieC+WP3vbniJCL3hnAbukDWi9S75zgnNsduq4rSCKBlKwa2wz\r\ndGvo8TP5AP5I1OZt7Z9E/UFdcKbe5RbIRTtzldDjxx7+2nqlUoJ21PxD5W5Y\r\nkNgvyfCVxu/WEJxDRhxi9oslGnjKGexajlesPdCcOkl76kaM/XCQf+7rLzDg\r\nMS0wAEFoR0vOah4xiRKl8EMvPTiodzg39l5FPNiT7dAXvvBGanogBoIDjHXq\r\n3GP08+XP0rlsqAMAHpvcLdoAHfnKA28xTEak+048/7xDm9YphACUltHYdY2S\r\nbTtmK7QOolpiUo5Ni7iRVHbPU5YFTARV4nb37C/VxlaB+jhs5LMdcsnaI9UV\r\nN6WO6ZRKig/YGNYu1eVLdzEVEmo1qtLzFR7+NcpKNn2om7uyHXOMxx/rIu48\r\nycGW0NvwpFr7K8QDDohxUaBSV9jy22MoB1BiRkZ5JJ5caUV5yW1kAsgRJRAt\r\nvE7sEIVyZaxUZBhNnm6+o0fIPEZ2bcwahWk=\r\n=dOZP\r\n-----END PGP SIGNATURE-----\r\n","size":27355},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.181_1657144948441_0.9433345457701485"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-06T22:02:39.326Z"},"1.4.182":{"name":"electron-to-chromium","version":"1.4.182","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1062.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d41d81da3f86024f8ab8ce06f8131e38831a6e6b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.182","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-OpEjTADzGoXABjqobGhpy0D2YsTncAax7IkER68ycc4adaq0dqEG9//9aenKPy7BGA90bqQdLac0dPp6uMkcSg==","shasum":"5d59214ebfe90b36f23e81cd226a42732cd8c677","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.182.tgz","fileCount":13,"unpackedSize":179485,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHL4cDnPkFrF41BpZNcv0fsoR6QO68xcU2xmdUNpT8S0AiEAuNBRlSfRFU0s2IxWbA1EsJn/OS5NBX/38n53MrveMmM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixj61ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqQw/8Cms9X8USO/Jw/Gr7jH+MjueKUePd1edmRkFsQPRyVPY8YosG\r\n8oa+Nu1bdPGO2klRQ8XRNRshChpV5Ln47Qt5OiKmkJ6MJ05GwbCJZ7sZn3hG\r\nT+Cy2AhGd4/MYc0p3AwSFxPt13/VbIF54NLMzJ18Fp/lzFk7KW391D1Af+Gw\r\nqPARt5h1e3fI2sIDk35e+v4+CRY5JX9U2hF5FA4X2vEJOQ3Shcora+lqSaRm\r\nQ92k4yrBfzqq1eSBFRZNNZ05EKdLX3N5XQnmtJiQbivzYr5h7fiMyorxuzTB\r\n5Mlayv3gyrwfzYzEqTxbMDgL84Uxg7H/CksNIw3yZCQ4HdUOYWbsx+5Y6s/8\r\np0oPUVXEGGtkRpvHqC+Ft5a81s7skJpEumZn3TUrlEgL6sbGM6GVKiJ2aOvE\r\n6LrJjrzVapFMPR6IV54CYAdB9EVKhpEQiMHmzfJIyYZGABDonUJywPm0NK4B\r\nOMd40z8SgafYfOA15y0i8dX18sLHjS/eA7seMuWIMSI2E8+CwrZcDyiPaYV3\r\n7jSi47GyuoYf3Je7Jy753I1CGFZ2NdPg1wcPhnisx2hG2k6A2q2hXjxUTrry\r\n8CBmVwCINKFSq+waTVGVh8yTF+eW6+fox2I7vKVXWjiKcRUZzAjBC8ylROHe\r\nKUesJ/T83A/nkli9Pvlizc03ur9TE1+pv8s=\r\n=UVAp\r\n-----END PGP SIGNATURE-----\r\n","size":27374},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.182_1657159349527_0.5117290282165214"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-07T02:13:52.338Z"},"1.4.183":{"name":"electron-to-chromium","version":"1.4.183","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1063.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9cd2148535bd6b06186064d52d6a9dbdd51d9193","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.183","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-PnJvlREshGPh3M5tgReLgqbOQ61yd4Knwo39Cxy9SMfqwX9q5iRy+JioQC1LyKx1IBAH2zoctAWblhgM2kbEKQ==","shasum":"2ea25fa3089cc68dae18c8dcb19ed0509631ef82","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.183.tgz","fileCount":13,"unpackedSize":179725,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLtPp3kBRXK8n0Xq3qzw7kD0TibJ2WbJJA6Tt7j9tiuQIgEEe8zdrOmwYUSIZJjByx1I+T+QUjRvv3XXmA+oDK2N8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix1f1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoioQ/+P3LLqRQutd5shjohg1cZ/7Et3JuguqN3iWOM8xydX9jaUf8L\r\nsSIjobBdrzwXwTKAB0aYrFX0hq1z6gJ/k0fjAOmejQP/fIHOF3gJ7KXOf7eE\r\n5pg8FfPyMQen8BsaseSigXzB8ACKD4kag97FWh9BkxvXx6zxcElZ89JYd/dr\r\no/0Cpsoe5Xx9DBekWUp1zFMWlSxPY6NmhuQ3Vh+r/KrxR83zAze7MPxTYcWV\r\naHjATf/+V2LqA+ZhipgX1jh4ogKLyaN5rm+OV20DuXAeIj6uF9tooWMcShU/\r\nSDjx++HahgA/79a7EjZSdEPJEbvOQFGncIrHspl11/JMO7e5pu2wAMxGVpLt\r\njx2UbdDp7RMRP8vAb4P2oiH7HAx81SlB/6ec2LTCQcygKsvn1K4M7JH8t9Tj\r\nizEJHAdr9waQv0XNQFftuZf1AT8oyXcUIgard0ZB1zbV6If7ShrMTgHnLd0E\r\nVYMc+rouTtl+bmn1tFyEaMMdK1cPjWqyjleqGHU7TidKhO+B4IiKVR6H7HbJ\r\nYWlVKA27Q3yjzDsZrisSCelKNMfb+hSFw/hGxQUT8bR+LWcnRS8uQp+ESGzb\r\nxe4qsYck0CBIEQ94sSdDCNjiY23b1Z29lAIvIMjPJEm2+fLyalr4IaCTAFja\r\nb0aXDORAcHTYLP3Tk0FwORRN54yffyFYZu0=\r\n=tgyq\r\n-----END PGP SIGNATURE-----\r\n","size":27386},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.183_1657231349480_0.13806433056896972"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-07T22:02:41.383Z"},"1.4.184":{"name":"electron-to-chromium","version":"1.4.184","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1064.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f7e38494cdfb80ca416a8c566e45e119b3ba704c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.184","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-IADi390FRdvxWfVX3hjzfTDNVHiTqVo9ar53/7em/SfhUG9YcjVhyQecY/XwmBHRKden/wFud7RWOUH7+7LFng==","shasum":"381d4d111fc82d3376ed690dfb621e675f9078a9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.184.tgz","fileCount":13,"unpackedSize":179803,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxMFFUUSZbawOOh3Rldj4QF+DdxDeWSygnBBpPeNn4qwIgWwmTnC5gdeFUXJItS4U2IG86BC5wIIDTbWSaNlkIa8c="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix5A0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZlg//SnDlh8TafGbZGHRwvk4kEIOkaXLyJPtIiiwhv5OW5Yy8Y89e\r\n05fdBV4eMuHM8vpnxd6a6Aob+y1h6/GfZKBgeyvFRKJZrGoEt6RIvx5VuXOv\r\n9M3b0nNur1PfB83bZdRedWedFU2ow0TjHiWCbFwxuRHA/N9mvEajI4cmKmzO\r\nuu7/8E/hrLWVkMjFQ0XD8HeM828CRhONV7kRqm5EtEPLaDqFGjF9HYfDa0Ip\r\nQgXXvbwMr3wPRda+DUwBKq4LX/DMniaeXBKR8bLrx4zQ0/jr4f5pbYxcwfcb\r\nwwV1I3kTzQ3Jgm4XrgXsHfkgMk4rivRCcBG8rVfAt3Dhj/Q4mlW7Z3OEFLnr\r\nbvPXWwvbmsb8BUYL6Q8uWLTk42YMZKkHM0avv0BYmz19J2XSn6dX4qAfTf+1\r\nGPEpcbn06j7gO4pGobzN/oE4atAPY24AOHIO9o9+B/NNMDI01XigZ/VqW8PS\r\nybGK5zNEe9ZSCbo04zmzQcyTgHx0EOLc9TgTg7AiMJFmR3F3Sgm+UKMLLENc\r\nJIiao46I78ExJQeosUQ16WK75aPKHB0M5C3KEvV11QMwCnO9cHZQ6+Hyk6f5\r\na7AIDMqADecoV6UkQr+4VuW8L/ythfa3NZJREntyzI756Fr3t/TTYbG1Dv/E\r\nnZ1wLda0i1zsPd2kgD8VXim4m83LdAKP/ig=\r\n=wNOy\r\n-----END PGP SIGNATURE-----\r\n","size":27395},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.184_1657245748611_0.6220517863010351"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-08T02:02:40.476Z"},"1.4.185":{"name":"electron-to-chromium","version":"1.4.185","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1065.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ded6607a4d7009892b674c5cef952ec6529d2028","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.185","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==","shasum":"3432d7944f1c5fe20664bb45d9cced2151405ce2","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz","fileCount":13,"unpackedSize":180043,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDTPXpZ1faFKtWdTR14S83lGZcZss+DySAC0pDafN45WAiEAv+weUOY0z8l8mNwKUyMxdXKRaVOHuo9mHCAr92xIZIM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyKl1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNiA/+IiEICgSabvxi5x4wNKg8sUnyvYwNOH9e/wwBPYe8ngfnhqan\r\nskZwAg13jHbOITs4Mw2yTXIWjI4gWGsCoZ2T+u6OGyE9pTe+o4YdKzxonSy8\r\nZrAu9A9fPP57n02mUuulYeEiaaVGJgLPua3VW5zr8cDnciRRrBL9/m5XOwuO\r\nrqkYfVZjj0AhcLr1Dt6i7/WjB3t6RmbgYuhOkg3Wa+rozUfsSUtf37zOWGi1\r\nE4Y9k4wfk2/0Cxz0djA9BgtfCj6tDgHrnj1SXnNI7q82RlOjoUyi/41vWySy\r\n0wGRPP/TJOlA9vnMKmm4L58SqTnrNilbkymoJ2ClFlZIvdVCgHqQSsAXAZUk\r\nUXoMyv2UpkU2f5+X2t9AAKn+wQZPMny6Au8rUokruhJ20GU6J58i8uugXz71\r\nnauxFvHYVR8Aj7j/1V4W2D0xNaApjW6lcsZjsALBnIM5wMlzpq1XEllg+yr2\r\ndA66KOxhzd+FnaMT0oD12dloqyzrMndfMvmaZvcTqY7tw+BchfdxCj1fsnIc\r\nQpaawU+bO5KyYTwLaj589rVVftMhJ8FaAjh6UXIqzOUbgaAkxhKSd1BpOpYP\r\nk+kZny/C9t6/ZcJeBKTxBXwn+ZNS7YiLey3SMdYcOO8ToGQvc9lREU9jO7xY\r\nRnOx/IICDtiAkVZ4JJljFmHxcmykoBvlvUo=\r\n=ed23\r\n-----END PGP SIGNATURE-----\r\n","size":27411},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.185_1657317748847_0.1114748649711057"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-08T22:02:44.658Z"},"1.4.186":{"name":"electron-to-chromium","version":"1.4.186","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1066.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6bced142fdd66ca3c512a77a433f535cbee95715","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.186","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==","shasum":"a811bba15f0868d3f4164b0f4ede8adc8773831b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz","fileCount":13,"unpackedSize":180283,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCqWLFRin+jvad9+OAjPXsSq+xsgxIdGUG0aAG7lsIE5AIhAIUegH4c1chB7mxt6P2s63dNsjKM63pSK2bjmt+AeriZ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizJ30ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqChg/+LyzautyLa5kaGlhim4Ik0vNknVJNGA2qtmkCsRSAJ8oT01jO\r\nyUxNp+joAi+6aCAap+970N+XfaTWpdseakQqYEvVkctzDRM3lqjlNddPJzVf\r\ntraldO8FxjlHQYXnE9FA+hhn7KXBsJFnyp1H7kn16rioDAlJUO/f/VceHjFb\r\nKazGM/gIHvWN05JBepfYQvhRUa26+sAZCSGsa9eNSd0P4Z6uJrAPcYWtcfnj\r\njz8xAWidoGjpBNyve9nAv/BcFdTMzRT6MglXs5UD2hVM6xITgC8Y1OKIuT27\r\nfMURcoJRX26BBqelEOkO1TU5vMbZmYYK3Cib+UnH/Sr18iJiITa5wLjNY2jq\r\n0zEOb0fE3rT+qK/c7rqIHLqXXg8rV5gkcNbIoNaZ+Vs/KkASCzjHzLuR9Ctl\r\nE5eXxeE9Huid75ha46spM0hiYF9IHUMLEYq/ljCSEieM0KaNtpRBDw7QeqNa\r\nKKYa9SgublRd/n8ub7uAxqFJyvrn/ptY9CI+LT/T83mglIIhQ8bia1hUbm8r\r\nXwFmr2ZRikWfKfzEbhXsEWpjjIe7F3gkqrY91irJBglRLm99a85nfn8jk8z5\r\nGgtEmnd/6/lrT+hPyrG7/8Dc4u3OHaqEiNb9gv1hagSp+9625bObBzINdoVT\r\n87oKfsR2hC+gMA9UvYSYl0WDx96S1j971/8=\r\n=1OTd\r\n-----END PGP SIGNATURE-----\r\n","size":27428},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.186_1657576948548_0.8099009611291306"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-11T22:02:46.968Z"},"1.4.187":{"name":"electron-to-chromium","version":"1.4.187","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1067.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e16699d050cd6bba39fc1b1754da11d661f51c32","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.187","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-t3iFLHVIMhB8jGZ+8ui951nz6Bna5qKfhxezG3wzXdBJ79qFKPsE2chjjVFNqC1ewhfrPQrw9pmVeo4FFpZeQA==","shasum":"b884493df00816dc2ce928958c4f6a51a93fe1a8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.187.tgz","fileCount":13,"unpackedSize":180423,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7KodbdCgOEFtSoKrvuIMXfrWFuKDMPmZY9R+6wRxlbQIhAMAoup5azgAnnHlx2iX5aDdrQgsYW4Z7zxaDXX41KLL4"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJize90ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPOw/+PCye4GHVo2FXd6YNwtnUn9uw7BFWpF+VTKfIRNWepEIKsCIQ\r\nkjXpYW9fDtv9rJZHI+vFY7J9zTSd4+eYzx5T3TQCdmhgV4yqryv6CU/lgIy/\r\n3CZ6T++o69TadahHDXcstFOQ1KzopQxB+3U8w3lcL0IUkyfa3czNeOADOvo2\r\n5i7YF2ElS8F2Wsllm9o2PTbE6ENp0AM3dFt9kq1yf/hUWSXiNOeta+bsfIM2\r\n3xS78C/vrwc3IzCGk9A8WTD4TU0Ialc6fKZ9Js701tund0goFD06/vJzEDkn\r\nCawjjpvtqkH0IczfE8xkhuwQHTTyCE/HGAR/5fAl+J8jMI5viAufuxBJPsbA\r\nPKSzH0/QQpbW8ICMfnCVKvoWHYYk0WlVuUafl90aJpVsulhjkR2ZZF+zkAqL\r\nPO0i2SorNJJx7kH8pl68/jU+GuwpRD1Ez2Sf1ZNFSURhAisL6bPkhm3JSsM4\r\nUHhc+LUF49FsJpXMmpHk3QLkwgqvGsXjVtJZcDL/vMY8OUDUBE+R2F1Bo6wg\r\nRmmfleXuwmyutaezgZ8SsoUVil334/0jN7pzHawTb9uF6WNcoK+d0gsWj4dR\r\nq+DCHLYP/ifhwo9Jf//BxblwXDb+Oi4d9i5rrDNR/S7plAOhCy5xGJhvQFmG\r\nL5fjKNAH0unV+owCs/ulrixKxx+HI7EQFzE=\r\n=st33\r\n-----END PGP SIGNATURE-----\r\n","size":27444},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.187_1657663348008_0.5595221802204933"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-12T22:02:43.455Z"},"1.4.188":{"name":"electron-to-chromium","version":"1.4.188","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1068.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"46daa45a281fd5b1abb487528b7f2d2c919248fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.188","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Zpa1+E+BVmD/orkyz1Z2dAT1XNUuVAHB3GrogfyY66dXN0ZWSsygI8+u6QTDai1ZayLcATDJpcv2Z2AZjEcr1A==","shasum":"1954bc444e6f6662cb39f24810f9e5022fcd5bb3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.188.tgz","fileCount":13,"unpackedSize":180259,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUAiNJIKDgn61jmH3CITf2jsTzEvRuQxpqUl1iwyC0mAIgMfjR1WLSYfv0jsz645NwgQKJFRV7EFmFQunOj3im+hA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiztB0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRdA//a3xnl6awll19lDOuTtXjHYkk0ioq55Ge8r/2OpIfWBpejkW4\r\n09txXL6AKA+oQ2axUI8TxAOes8i9jmcGkQr/zFXDvTrtu/EWTeifA1vyTtpj\r\n1iA+TRJDApo1CSN0LvFHP+fyKcW/UxDg4BJhpT/TKuTBa7kJmQzemnvq15ZD\r\nA11XfqXzvouvtIhLUg08NMQ1X1nwOIOy0AMZajBztgVzhAuF/tU7r554V6m/\r\nOaUQzK5tZXHBwO5m9FgpPGWzTiz2wheC7z1vCKpthdFJ/xYiRAas2tXQKXp8\r\ne7bxN1Kia8IK+bHaHt/N73z9KE8lQIDgsywx9FZ3IUblmMFvVzS6E2lfdiJh\r\no3O+sJewZ6+O5b/+/oXE4gHXkGXgMuIN+HuyCkMS4gTqO2Iq+m/U6xjxoyUO\r\nogou9xJwQN6nuEAf/6ess/ViU3BMUhTHgS99xnuzaEK0qWIbqcdhdQ257v7q\r\n8Eo+1IvhpUOpD8z0fI8Wpi4GsSIG9zoGZVngcI62A2RYA3g6YHcUNbYel7+e\r\n2jwvA5pZlbSElfGgJoeaDJQzPLLGTqiNzOxRcs/oUp1skoREh2LXuYbFqucn\r\nUK7gsdI2a+x0biKu69612fEgt+85OIZdocEhGhDrYgT25yu9SBTOoc7Fi6j3\r\naqf/ogojHE05logppwvkc0SshF1aqN+UH78=\r\n=OyC1\r\n-----END PGP SIGNATURE-----\r\n","size":27416},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.188_1657720948104_0.6724722810884078"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-13T14:56:09.906Z"},"1.4.189":{"name":"electron-to-chromium","version":"1.4.189","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1069.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1d7abd1a4305cad89d3f2b3bb46192c990381f94","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.189","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-dQ6Zn4ll2NofGtxPXaDfY2laIa6NyCQdqXYHdwH90GJQW0LpJJib0ZU/ERtbb0XkBEmUD2eJtagbOie3pdMiPg==","shasum":"4e5b221dc44e09e9dddc9abbc6457857dee7ba25","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.189.tgz","fileCount":13,"unpackedSize":180563,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCl0PqzChOvuNybjRP9XlVw/+ofPLfMDoK9AqAa0ysFLAIgYsHYGQBF4xfOQAptUpagMnt8yCHMGZS4y4g3m4Hkw6k="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiz0D2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmri4A/9FUPhiSr/1O0k4tgY1OK54deiChziVpMJFMZxLzo09VTnpmbQ\r\nh98UjiaOW00QLsp9ptT2/g7S+TEM1yiI7JcjIlMhIiOVof59ueQHKEuwjshG\r\niyadM2NJL2Vdlk491s7fnjy1vjfTnvznuPH6G7b4lGEPhlkPQcoxDmMQn/sV\r\nZdAbTD+DmPbZtt0rDq1cbsNmrLcudhi0oYiK2jyL5FhFkTRZKjbk38jltY/V\r\nnJgHAlyhhtFBaiEQGxJJZFM3cUzlhN36kxAPIpWPfOQyux3KIKEJmB3ir4ph\r\nZ+qSWaE0VF3IP/xqlbwKb1CtFJ/xWZR8BpfM4tEAQz9SAhRrLtlpmb+8EaH2\r\ncc3yF3lZVxnrWEFPjyr0fAOlCJ8Iwq1um3qYfeXi7GqhBJ+8SCac0b06fWdq\r\ncYkzfDLzIqm23NeG9JVmB7nraNS9/9ZyOEnARw5p2+VarrD3Qc5Qsr2ZtOKa\r\n5qSUy6w2kQMOGFoHpZBIXSxLqtWlj9aJkGWx1txToO37sPSF8tmI765EaljT\r\nDPZL0iFFekEfxlCvB5jLqCtT/j6dn4K9usRbNZUJ/t5dR1TErnM5weFfIMx/\r\nj+1E0NY205x4pDjL6hbYwZX2zgySL4ACdKfgH4/iBNdnyCHo/6DLRtgiojlx\r\nEOW7XdkO56U56bBqJjObCkwR2Sxt8kOFjhg=\r\n=yMP7\r\n-----END PGP SIGNATURE-----\r\n","size":27452},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.189_1657749750493_0.4740353319767743"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-13T22:02:44.485Z"},"1.4.190":{"name":"electron-to-chromium","version":"1.4.190","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1070.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"f67c92cb41cfea6d51ea45e8ae962ac7e9215681","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.190","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-dDW9D5xT+ODGh9rlK2sQeJR0xgV1nrNn3/K4IV8k74QbmKN61dm5GKMSwerdpTpazrrkK6wwcgjGBoQ/Nx6L5A==","shasum":"c356196bd469cec230fe78e666b4d8628f12eb8a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.190.tgz","fileCount":13,"unpackedSize":180480,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICz26icHOh7sF5eE74gfsyFeuaK5oIJsJXIVnd+86qHrAiEAuPTkmp3jWCAJ5Z4y2O5UsPluyjl9lqOiVE5PoZGlzlk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0JJ1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+Sg/+LzXPFWEJMkkbhx22KaAzfz/RR84MKefdt4XfiTj7T9Ss7sqA\r\nN35ETQGVKiAY43hLe8AB0xSvL6/2topC4QYRonZZQFHdhr0fdCvOmDaWRZ3E\r\naY3vxP6LZ+kqy0I0DV287E+zjuG+uXh7oK61RTrQA7Up3zumUGgrkyCIuGGU\r\nFX5jVzWPirIpi6rSGudrsdEsGhvbAcIw8lDbEIf4DC8nmgaKFRz91xLRrugs\r\nrAgXGyyiDemnSapm3yWY8lCa+IaXDijrB1BOafN4qKva8d1o3xOEI5iYE/Ax\r\nsRte+CrAwbIl4POynKxY2nw+q1ma0zQmjHBFxBHu9pM3LNXazgPiW2+Lz0SM\r\ny1xyyb78emD8OKsyWu85lHtT83RbvfZ7zM/zjxnw5XcV4f1SLD8n4rhcMeLX\r\ntqqgbDwd3CVYg0Xyt9GPFxjqpQv4o64V9TdvCrcLdycmmyfcW1VlZC1uKZdu\r\nvzzljZ8Z6XYfm/eUe3ffN21BuH392MKQdULIKAJtac9E0IFcKGGlAFfYyB5H\r\nougiJEdqvmofhxaCfrkNeogDQKg8r0CcGYC9QaFm40XXn3vqJUhAVALb+LHj\r\niYuW4/Av41CPsbMrwFiMkZck7U7qKr1aQGwTovTrNEYQ1yYxOrkQwNE2G3mF\r\nmvKAmPxVK9DIW0YXaU7oCxA/agOy3DXcXkg=\r\n=FnUB\r\n-----END PGP SIGNATURE-----\r\n","size":27439},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.190_1657836149109_0.9892388221038249"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-14T22:02:40.026Z"},"1.4.191":{"name":"electron-to-chromium","version":"1.4.191","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1071.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fdbac144fc4abc995dd2e009f5d3978da672976f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.191","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-MeEaiuoSFh4G+rrN+Ilm1KJr8pTTZloeLurcZ+PRcthvdK1gWThje+E6baL7/7LoNctrzCncavAG/j/vpES9jg==","shasum":"01dd4bf32502a48ce24bf3890b5553a1c5f93539","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.191.tgz","fileCount":13,"unpackedSize":180706,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOyfDdUM94lF5VO241A3TgWS9Mun4KH2eGvbspILtQJwIhAPY+i7PjD2S3Eas0Rb8ENwfPEwCY9nizLsL+ibZ8Wftf"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0Mq1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp33Q/7B0/PuagEfm11rJuu1MqwsNi5ta9KpjH6VEmmYZGhcBX2C/J9\r\na0F9bV7/G+dvAmjvYzPJ46Pyp56BBSTbC51NCwi3sSogkhx8j5llbG+m01A5\r\nC9gmtJfvN+nMFMRp651TK8USbUOzxTwPayRA0+3mcDg2TWUE0PfGkhDUuNeg\r\nCATj7wl097OW8cfsG6+IeTtaSaDBMHtgTrVwygAvBBrKPZU1mP4PZODNEjqK\r\nIOJS+MZgool4cnnKkLfrArnhXPOpB6a0fL1kZjvnE5I0PCjMnN9zlEnyq9oa\r\nChMFPOQO8DfolxnttJV6yl2S+q2qDktBP6RkMECxU7N6brqZAcWhUrCDTzHS\r\naBQRnx3wjBSWWZ03OZVwdydXg3ZZZYmgXqSFaiU6pFTHB5qG96fHR7FoKMNY\r\nYZA9OFsE6/DhdslZiOeHVeWXccZdMBDvXivxz0ZXu0l3IP5CwMJxAExI5BjK\r\nOLqLDCy+KCsVsZI3fv7pUwxyLJxJa9QWZ4/jltJlDGTlv4fv5bcbTAie+Yrp\r\nktAVbFfy92pO9/8r2BgOPVTCgOFXPXH4EFAbHERNQ2e6yP5J13rDtUaRnxQE\r\nlwILpboYKr0DCVsrmy7O9J5GVzGcj97SxdKwq2SkI8jZaskv3d7sfGMURkUD\r\nuuld2gu25VBIaAyJaoC5AtZQ6jtURwcqZYQ=\r\n=4O8w\r\n-----END PGP SIGNATURE-----\r\n","size":27480},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.191_1657850549534_0.08398692526783846"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-15T02:02:42.829Z"},"1.4.192":{"name":"electron-to-chromium","version":"1.4.192","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1072.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9e85a42544a14b3623a7e1a4c4d2d10fbe9c33a0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.192","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-8nCXyIQY9An88NXAp+PuPy5h3/w5ZY7Iu2lag65Q0XREprcat5F8gKhoHsBUnQcFuCRnmevpR8yEBYRU3d2HDw==","shasum":"fac050058b3e0713b401a1088cc579e14c2ab165","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.192.tgz","fileCount":13,"unpackedSize":180885,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkn01JnWPCekkILQxpOJqWqqnu/KXQ87Lbh7jMuMES7QIgFuysfFBQXUwJkBrPop0RVaG7YaayUh0yzlATGSlmpB4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0oy0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCDg/9Eu49zYUqLYhEX81MtQSTEU/O2xTQqBCjKVGAe5iFMjzjs6DB\r\nodTgvwa119ya6Da6P32jUPwhs3h3AGXd4necxoH+cGWJCjF+VKF0jcvBEidP\r\nIkVRLMGWfq2yNlk87/0Egl/mt98rwNL/DTg6njlmX1u1sjDKzy/zfK5OniV3\r\nSWQ+PYMPS4jXpvnsQ2zCxVN8VgbCi5FIzaXHUcHmEsEMqnYRj6kUgXPuhJh+\r\nNZK359X2m8wvmVtDQv+2bTOrERAJi1eWYXmgv89Zp4GW7o74y1WTfDXJVINh\r\n0223OfiD/GVjxYQYOo0yIsnfZKGBItA0JLe3QVGqaT5ysCW7F/fn8AuTARbG\r\nIc4TPScISjV/fwUTVhi0TFYICIQSXK3vY3IGnIrCxZJ7GsuOYF4HaPNzvgJ0\r\nZsr2/EGrDpeshp9rKkbeqsPQ0GeS8qjmYKB9KOkqOOW3i7ZFX07VtarsfAky\r\n+JoqyfD+Fvi779AcNSXG3JTVDLtvAs6khNZFCz4ko06LAEYrX45LQ3n7+3BX\r\niIpzdtfSqsm2XDSKlsczpWKs6Iv+u2Cv5Lv0Cu8mCYZPF8Vy9tN0NMs9qhXa\r\nb+XngloynXQNcOgE3GdBmcQJI/xfx3M9pa2shGBS9eQTjXDV4ntYa3z4GgFe\r\nC4a57kx2TcNDaTbRRWd/7LjHat53o+aPn+U=\r\n=weAo\r\n-----END PGP SIGNATURE-----\r\n","size":27505},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.192_1657965748475_0.48281642083231646"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-16T10:02:39.006Z"},"1.4.193":{"name":"electron-to-chromium","version":"1.4.193","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1073.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4debc805c9212fb0844f36ce88fc442899164727","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.193","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-tBqbgRv0yFIYBLBQKW6kHzI81rjvO1CRy+K8+XHTZtkVPkAZayI/CxTqBiy6Q1+tYAxby8bq/6yOiuNkTvfxmw==","shasum":"8e760b9d9a7b92fe472664fd61811b307f3de39b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.193.tgz","fileCount":13,"unpackedSize":181025,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKJVUJDpzUobm0mxzYaL9C9/mOU2Yvf8+zeJbdfiFWdAIhAOQL3HEtSoIrNTtozzMKtxqQTF98heELDiPdOKz9w6xd"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1dh1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo6JRAAk5y90/jR92f7T9CAqgPziRAJxfCLkcPeS3n+xGNK1X1R3NTU\r\nBRs5T5LYUw4QUS2oW10Q00KrRupBVlqQbsDIBM7QO4a/KEbmqsAYiKBKQBn9\r\nPbmQ+SyGE0kC5CvroFE+fiuyBFSzF5EaCRAt9i90QzsUS6bwaKVgy/cFhQ32\r\nPCWF4WiQqdaEgD7uDkBMB4TBsmXmOJjr1bMNsAYUD0cv6+ZKwoSLw7N2N4Wn\r\n9h3+zDYOmjrplS0VXSdNJaKlUJ9S873w3FN9Q5p1QAsiJ9rJZ+GvY/t6RF6k\r\nO7NIBMWR5+jg7os6JPDO3li99+TN6fKQwkeKuRt1TZzqC9PHMMmsGLdN0Vhc\r\nCrnnkQZsRC5jQvkAG1r26eOpbgD+nt6nF3nSR8x3CkSmzDNtilc9UFmbA1c3\r\nLC70RwXnteAdFXmH8CJ/NfZ2iO8XbeH8lVdzUxr/fjZ5Ky+/CH2hDdmdlP9t\r\noc6y18MKLeUqsEDZEbYRgrcsnRM4x9OJLeObj6bccHNJEA6yyfh7ldl4UlZb\r\nce2QS8mgkoIpriD9zf9lxOa1SvFEo0FfjYCqg2tuyYBC/KVvOwIJJp+4d6so\r\nzO/ySmDYaQEZqTGHPdirge6CGaiqejfkCHURBzapF4wXVDbkw3xoAFIvxeY9\r\nKoZfTvuaGbHF5zruqV8BVZdA7yIL2dcvoSM=\r\n=1gUD\r\n-----END PGP SIGNATURE-----\r\n","size":27519},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.193_1658181748781_0.940692990034846"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-18T22:02:37.556Z"},"1.4.194":{"name":"electron-to-chromium","version":"1.4.194","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1074.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"af88de4759f4e434ae986a5cef0b9ebf532e9665","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.194","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ola5UH0xAP1oYY0FFUsPvwtucEzCQHucXnT7PQ1zjHJMccZhCDktEugI++JUR3YuIs7Ff7afz+OVEhVAIMhLAQ==","shasum":"2f83fcec5067907044a3d502ac7c3efb1fe6430b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.194.tgz","fileCount":13,"unpackedSize":181172,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDc+/3yCdAgtOR19Txljm/VNdEie7OhXUWuLvVi7c9kwIgE4Xcp8gWz1lAQSTQX2lJOmSc1g+2VPMCxeTLG1LO7gE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1hC1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMKBAAklfsZDE/snGXXbB1407YMQs0kNAEp6J0ScCZWZ0rWU4rkc18\r\nwmgGXxsCkdCQgnUX0UPKy/SlUxAnKVO/pCnWpH5bmCrVVctC2vi+QMKE62wm\r\n4pNO49NgK8CuA0t8MFss3ZH+/ugyLZ+X0QjTBLviQMDMPiQxOjIMwel3fyBk\r\neYtZw6zoUJbgfTYj9BPhPbdx+zQw9TcTSvE6awPJS8Urwf5VogJLAJgJbE1h\r\n0vszpwkEPnxUjrIdfJKySCY3LUlkqq6joaDjkgnVElm+Kck2iOGv1FzOATbZ\r\n5QjsKAFncBelgTdNCiyYkGrXAugBngYR1SQy/DX5W7kX4P2700cGZjeq4vC7\r\nl2tn2sXcs1ZuZd9gz6oxYvZiagj5bmHG49s4UemFb3gyQ9TyvMr8X0yemYes\r\n1olETwo8mVV2pvQS4Iwal1cobQLywIeg+FLnXT3WX52b2F40S1CUpSYHITQw\r\nZkDi54lJFFuehx1lGhu1j+R0PpfhuxzLShYIUI2LgMk2G3fwtHQn29SGPwDZ\r\nMvkFaEla9UItr3hNU+8xFZLTsx0Z0Oaabh+R1K0zi/h+cbbOSCdgaPMytfcM\r\nzMnESG4xv9OJNEZcDRh9AigRpaKpQ0fe3VG1UdJy89Afy0SBX2EA7qgRjkOH\r\nQf3CXD9jMVhg4+0C/XMJTF5UZcEC1saSylA=\r\n=3o82\r\n-----END PGP SIGNATURE-----\r\n","size":27534},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.194_1658196149423_0.417443596223259"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-19T02:02:44.006Z"},"1.4.195":{"name":"electron-to-chromium","version":"1.4.195","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1075.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1fc2733e588c7fbf21108b7aa9b87184203eeced","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.195","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-vefjEh0sk871xNmR5whJf9TEngX+KTKS3hOHpjoMpauKkwlGwtMz1H8IaIjAT/GNnX0TbGwAdmVoXCAzXf+PPg==","shasum":"139b2d95a42a3f17df217589723a1deac71d1473","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.195.tgz","fileCount":13,"unpackedSize":181312,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEOjR8I138+pB//vu1tVnJAPElkV3RxdY05w8zCceoAkAiATo0bLfoAk0qZFCv0vY8+b+LkqckUmun4CiA1Xa3cLtw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1yn1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRcxAAoodm8GfuHSv+JaIZ2VFBKMtWCruV2CqItzpHI+5eGQvEiJ4q\r\ns04aLnsMZHrK1btrB5aK9qpMqzNeWc7YJeqW9vc4Ww6z/UZgphOCaEq16FER\r\n3i0KiD0+PINSOLxkvLvxmLWpYgiRpQobYxLsZkqI+V0VNlD9+l4f5iwJgjzD\r\nbaCx7C5IdUgKUBq/zc633rrWg4ZlB3bKEpxNouBOxfXWRlifOqD/mAw5JGu9\r\nvkgq/xebp+Z6yl/YBycdXbocclNl4snJz/H2XydBrqWfvS6GW4sZHkxRNVDo\r\n2h6pi2FLfu5UG9SPeL2o9K3oId3JZdU06Kjbc7T09iue10z8ncMaEtfVD9DT\r\nc+jEtbIg4g/BGXMMcb7wdyhDIqBu1CE36biZVH4MCAzEf1FLo7eFEmlpAN3R\r\n5hxPyB+Omqe9nXd2Rz4IW8br2J1kG5qgzX+MUn8zQc1Z77Shat5rMfvKbqSr\r\nPyFGJjXPV5I2kH/rlgH8xbn+FPlUoz1BYUjGc6BTRjm+k4AyTr5wy8b5icbY\r\nT7lrVlbgGQRnB6ejkkJAuxG3plFh/suJVZAe3yBAtioOC1RG21RfECUfPbm+\r\n8U81YJ1tKNMe1xomzN7m13poGisr3fluHSQIH2pvvZg/407pkHeE99F1IEy8\r\nWnK852gCU5+VmBD70ALLgfIxebXMwgbh/7M=\r\n=eixY\r\n-----END PGP SIGNATURE-----\r\n","size":27546},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.195_1658268149040_0.7231662582466032"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-19T22:04:51.207Z"},"1.4.196":{"name":"electron-to-chromium","version":"1.4.196","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1076.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0cab1939eb135b2e3722f8d526f4a65a9027388e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.196","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-uxMa/Dt7PQsLBVXwH+t6JvpHJnrsYBaxWKi/J6HE+/nBtoHENhwBoNkgkm226/Kfxeg0z1eMQLBRPPKcDH8xWA==","shasum":"e18cdc5c1c2c2ebf78da237d0c374cc3b244d4cb","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.196.tgz","fileCount":13,"unpackedSize":181391,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjTdNIwoVgO94f285hUDOEqrcqTgqptwHqSTjxuVtJKAIgazwjxVQ+JXYM6nhy6lymMgSTN1SwxouXd1PnLi95L58="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2LO1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoA9Q//bgs9lk6wGjgfuj+S/8crFfMhHh0LntzKsmUwxdpJdn24hvX+\r\nnT8VN+7i6ZcUwMR9ciIR8hPh1H4VSrBo1BJQ7JcMsvfjF0N+228InLUL3sbw\r\nTh4u79Vb2qZferVGr+H+LfXBqFi7JPbA1c4P5YYo2DGzy5ixy/G26b+kqPAT\r\nsvGDSDcGj/hYkydm4CDR9vFq9YuokLly5oT+oSoVPn/S48aqkCSuXwg/hlOA\r\nu8ae7Z3IvZGd2WIwYABzszajm8JXJaKhfN6l65+Z3xzIuHznX13IAP6UpmZp\r\nWGIq2+/687TST9HgwLj23BRnR75cwBuBgEKDV7T0G9enBQ2NL0BAujia8Aub\r\nEwRzs5a9URtCxfojvdtfSEjXsmcceUWorj08IguLZLAGTcgf7cjY1nUc/Uhl\r\nhyrsMTRex+gFTTldqemIpoUErH+7+qEBDmbLsb1CFKNBicIjIKsuZyrVXH22\r\nmgYUiEa4tWcg433WQwZdxRj2/q4d8/1cRuab5hjPAhwjcxw3EoL0sP4Hb9GI\r\nqRg4blXG4a469aKxyvpk99ne8EAUBVlkOJZGnz+aCbooRXx2UBioGFBFmhWv\r\nG91H4p3Z9Uw67wTnNxEkS5K+p6B0oaO/BPNtJvlfQzJ76oQbqxxlL8mvgyOG\r\nmiGZ1dQUEKy2equJFhzkEhvApAKOQmVjAuk=\r\n=eZh0\r\n-----END PGP SIGNATURE-----\r\n","size":27559},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.196_1658368948858_0.600640819967833"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-21T02:02:42.547Z"},"1.4.197":{"name":"electron-to-chromium","version":"1.4.197","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1077.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ee0c13ba563e4e1657426364dbd0fcd3054490e7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.197","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-7EZCIDDraA2NUaHewLaAh6T63cZzgBmgDx/iiaeZ/pjSs36bOFEJ3hLIrn1TKCFhV0PEZZKu6qFPrxa/LGAzLg==","shasum":"172054244cca16320ebc19459bd03d8a9018ff73","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.197.tgz","fileCount":13,"unpackedSize":181737,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEbJsfAKADBQnwWqjZGq+SK1vFkpUV8MC42Uyzy+DM0PAiEA32AM4PNRYtiaaWKw0d+FfGqD5G7MJGd0kAkb3POd2/U="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2cz2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoqERAAjbr384ukCIYzapL2/clbBNeQzIuSaO/qR0EPp+Y0nAtrV/cT\r\nnky9LhyOdQzw1TgNUa2wx4f9tG+WFobIZ6sSsibxtSroin9NQYuT9tNrW2Nf\r\nzh/ZfC1dbGvonhtxL5ozXF+CmylWlAS9LYNTdLG8rnKXxmTCLVqvUgW7dGJG\r\nJ+xqrDkQZnJ0KG3cWF5qiZWdwsU6XCiasBkoZ2qncbkcq1wAdCsuObNxU6iy\r\nK7k15R1Kub0TwRAFy8clF13TDkLoW2vMUXwrCpPgBSVNLTa81Pyd1XO6wynv\r\nKD6H3qfPd27GO7xLyOcN+XVEzATRZ+c3w2GcBxcCIwGwh8YKUS2q71sJyIM2\r\n8fK8xAOJVMUwRW3VMJclcgWkv1526lyScNCd8HyxTF4NFzmdtaPE3SrDpf3+\r\nPth+iFFkSAKJrzN1qVe6SMy75iMZC4Gsl+WT5cElCZokT0EflsPzEsFvsTep\r\nugAply6Q09T2WFc0uYhn0dPeH9m3lb3QOJKWnAYl2ZEgrlVvoZAcz3WjmwMw\r\nQRRPrG98G7BBq6oy9/VC2L6mcM8ETU7QJUXl/eK1sUdoL0MQR34zU2/IdBAg\r\nLcujjLLCA6zVJUPTiSsZweeV8hjvZVXOITUf9emnNnrqPku1rGDjQ/NE9q9Z\r\nggUIwb1zmiIITFmG+LuCbtTRJGlq54IIypU=\r\n=1H/Z\r\n-----END PGP SIGNATURE-----\r\n","size":27613},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.197_1658440950137_0.42539418385280015"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-21T22:02:40.467Z"},"1.4.198":{"name":"electron-to-chromium","version":"1.4.198","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1078.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"6f70879b1cad27d83ef79624a7ff266213f0c0c0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.198","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-jwqQPdKGeAslcq8L+1SZZgL6uDiIDmTe9Gq4brsdWAH27y7MJ2g9Ue6MyST3ogmSM49EAQP7bype1V5hsuNrmQ==","shasum":"36a8e7871046f7f94c01dc0133912fd5cf226c6a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.198.tgz","fileCount":13,"unpackedSize":181856,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFOEKIG5EWVPJm4+Rcs3yQ6SnFmnBKw23qpPEAwDWyEOAiEAvqeTJxS+Cdwlq0/q8t6iOvztGp2j5EXtxykTgbx2P9U="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2gU3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqOGQ//S2UyCnSNLyXwq9fAeCsORGREUznZmiuloLTUpFUCCAhaJizb\r\n4Z62pn14Pcbx7D93Ng7ZTcbsz+kicg/o5oxNVjMKi7ElKVjzMfUCQPkbCGlC\r\nxtoZfxPyGt8/ijuokMyfdvdkTpnmzjyeHYznYQMfMiW5lQuHp3iFafDxL3n1\r\n8RjEo9bnJc3x9XIJwszCqOyPRs4QwC22p5vVxr33j3MiKDahqG3XUVJkYugv\r\nYOWDA2TLc64ddvt0YL82MXrS/QClwDr7nIQjBnG0NYOwmOOtAtIisi32YKQ5\r\nbaK0xfgJmM6vAM/z+s75jVAtjdGMYugNraxWEIwxn8JQqcPNox/kS1+2KV0g\r\nnnIfy0ddvvxqbXOxE++cGwSGPhEQGo4oDsxlEXvk3lgrU7RgZNArMenicq3f\r\nvfupnBAvjzKwl7BhgRyNp7/EUvRqwSXRtn4tfaxEyG0YvTgvFhVBfQYXuYr7\r\nAjlbpRSu7D7YvlfmcO+d19pp4do/2kJlAvZqrFl2n42nbSCU0Gy5SoJtSDn2\r\njhIFbkRln5Y8oWYJwYSXSvHFd5Iry1kC6AZ8tNcoEcqpoj5Axth9CVTdpq1L\r\n0SoVCaiQhhahCzGuNhjF+INGcEJph1UcC3OHtEK54FZYAlVQOC0q6zEykmCB\r\nhFf5vKl+TPaDWXsDf1H8Jl4U1LUvZZYJyOU=\r\n=AWg3\r\n-----END PGP SIGNATURE-----\r\n","size":27637},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.198_1658455351397_0.3859079145539268"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-22T02:02:42.333Z"},"1.4.199":{"name":"electron-to-chromium","version":"1.4.199","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1079.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9040306f3b29a425417098795c095d249cdbc0bb","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.199","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-WIGME0Cs7oob3mxsJwHbeWkH0tYkIE/sjkJ8ML2BYmuRcjhRl/q5kVDXG7W9LOOKwzPU5M0LBlXRq9rlSgnNlg==","shasum":"e0384fde79fdda89880e8be58196a9153e04db3b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.199.tgz","fileCount":13,"unpackedSize":181996,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICnEhVy8BFGJSgSt2UFaLZ8+paWaUjvusF/+kwSKwyGeAiA2n7U5Y5NqW5jNaaGYRH/b36z6DwTqlZVCzXQRFV5dEA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2x53ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCZA/9HDReaHnT7bQbHEsnIuSxmjoTui8lqrSJsDH9jEwmLX7xCIIo\r\nQsIqRB14pdHWov6zZg4VpxvCp7syB1uL+CRCZVuPrHfbLxa1A9AcsHgHVQ3F\r\n1ZM/2Qbh2e6XzaBPwKGebSdtTqACOsy91eqvKNHlctxyrdb99VqYOMiEftz0\r\nLpBP7uHwIS6XjYuiT7p4b7D4IKI3N1opK04E6aR/9bjlMiau6pokY8C7cT7E\r\nRtVXp6ouohbl2TbTWGXFS1bprnWozGww0bSus23/29ssxds+UWXrjeZ5NWE9\r\nDgPShkqEo6WXcaUWjJES3tUPZN4XqGdrRDbwc+qAW1mQsAwpBdNM1DNG8jdK\r\nxGdmR21yXHULlD9szqAPAkRTY75fviHWA6uXV9MZUQDIvAENj2wlgmJTRj23\r\nsVWkl52JyRazZSQajKcftwB3ZifZoOeOhaSMwbRik148sFTCYtAAgNhSPD5u\r\nnypC1YeYKqvHTNvBJ0za83v+m9W4SRHN59Q/bwoT3hX0pbt6BqdE3/+Gjp8U\r\nEdFypTe0UXIB2t3xnVKM4L5l273l0r+nQ/+AQdd//pf8RkwZ3i5Fn2WO+wpJ\r\nqLrl9Rv7Qetfyc8djFriWYLK1jV2c0bT0A81DmR1NOFVBJsHiyIt+RJB/BEo\r\n7RSttdaisfLYU55sSj16WE8U5F5KuWBvn5c=\r\n=6Zs9\r\n-----END PGP SIGNATURE-----\r\n","size":27654},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.199_1658527350731_0.22863524598965035"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-22T22:02:40.927Z"},"1.4.200":{"name":"electron-to-chromium","version":"1.4.200","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1080.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3a4b062df550d33240e773efc646f9cebab53b5d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.200","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-nPyI7oHc8T64oSqRXrAt99gNMpk0SAgPHw/o+hkNKyb5+bcdnFtZcSO9FUJES5cVkVZvo8u4qiZ1gQILl8UXsA==","shasum":"6e4c5266106688965b4ea7caa11f0dd315586854","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.200.tgz","fileCount":13,"unpackedSize":182242,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEo8ietGc4STjtnIHFO671N1Rmppw/ElZUO4A6AIz1k6AiEA1UEbf1ePS/IoTY79HvSzvsfU9WBSA+PgQKzOGrrs1XM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3xL2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp6pBAAjRwPpSjQz1Ze5jH+2g/L/Zf9uMYgrPQg8O7cFws0/kmpy460\r\n2eTuUMwEpYAkO8Yd9frzVJzEEdyUj0sB/luoe++E9HIod4dG4eM5fPbXqsXk\r\n8A1oKI5+wmqxUJgKnu/kjGGD3JL/0da5OM5L8n0/PlF2b3/Fa95aR0duPX0v\r\nKlzr3u52sgiJ2wVasQLCP/cs1aWYJ6SaWgyqo9yH7oBaDUQCH1SKoB7w7fPi\r\nhnSRe3EBW65+mcyVHcurLQbG1oGFZ+XIflfgFEuZRzx+f7keM8omw5DL/m6W\r\n3i6XXq64dYCiEiT95unveQCIXoHX7pGuIUmCdYtHPuwI2+qx4izxksi17hKV\r\n1k32SxAfoPgE11uWPkJJBfmkUU5BexwV5epib95RgpefvZPDCzkrwu+RrG5r\r\nWXtNcg/XfvcaKQzx1AC6ODBpPYcZFEp+SfomWXiA98v6HY2TktXWxYL+jLC2\r\nH5ri7HvU8QWtlFDRFJ0Tn5H3duVVeNYLPA5jAPWBuOtiwhv3OJ/zQCWUZxB2\r\nBGrp4pyPchzX2BsD0zAbQxetdOOcqIBzBaCRBnhF/AU20yS2bYZWUf1LGGkA\r\nQEw37FBPevn2CNDY3VpgyQmHS37hzDbim40rgIBDsztoCYG+JU4Mr8Y+s8yo\r\npA1epr2wBASly/J1JtlfalpQ7SMEdQ8GJy4=\r\n=Ik1n\r\n-----END PGP SIGNATURE-----\r\n","size":27683},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.200_1658786550490_0.0854739163299254"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-25T22:02:42.647Z"},"1.4.201":{"name":"electron-to-chromium","version":"1.4.201","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1082.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"437ca24470dc081fcd09726c7a341fd61aebd0d0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.201","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-87D0gEHbhLZgZxZl2e9/rC/I2BicPC/y9wR/cuaJSqvkgN41s5EImi89S7YExHc7F0OBXiKsABZt9mmb9bqFcQ==","shasum":"b018802ace20ce2567842d52b9e1c9d090fda674","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.201.tgz","fileCount":13,"unpackedSize":178306,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCypLX33NVexmMFZnIWhsrYhMCA+/hfcfhJrIyhBKep4AIhAMDz55jZJbT91xVaGQ3peHr/nfA7qhBm8I4I6bwlk1Er"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3/P5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqepw//Yl7L60K1s7+p1MDFmI6WwVfuMNQ1cZcDXJOklgO/lTFSI6kk\r\nJs1P7fywUrUUAQwCs/8Xrd4mZigNf9AXDQHdOowzu1jRuFhaTwW659Rj+3lt\r\nW+flC62zPYlrHzlnOUAUGQlTrul2mUy/wx/A2RicypDP+XxVovbEM+hyki3L\r\ntUkH7mcGop3Dyj2UMlAteRwZN5QHMrmndQq0WIyHVShufYvnphEZALNtvKLy\r\n0m2cxEjzJExY33sIm1RI6JXk7os8zYWdz5MhKz9AuNBQkwZ1+0SM/pz+W86Q\r\nJ/hFrk9V2JvmaoJaG3emiCMDqGvxVPj3aabv+aV77Xeq9Bz/cxhmukxPCQFA\r\nl7AQLpIwDhxVskEjwBjCuDNoyPO19L3mwI1/6PuJkYaFdJGq25d2DokXyUHr\r\nHH8MIlKFBt7+l6L0QHvCImWtyS0nsWFLyUHWe7+Bc8GsX/8sUCyncHx8+Iyv\r\nVZBhjlFzxJgcRRVOQCXlfcgbg7cQd3fVNd9jgJB66QhnHi8kdMwZkeWhRnaC\r\nHcicHyj0GMGtm9DtUj77iswHMnd+nsD3NF/tFMyCa0EhNB6MWp7zKT49+L2w\r\ndCj+22BcLIoAvZngVxWtrMnVxzc3mszqY73dTkRaX7i5+WpKd+2mSbuodLJV\r\nDY+ABcw5jXi2ovYQ2lBM6As2AuTTFCmG4g0=\r\n=cbq4\r\n-----END PGP SIGNATURE-----\r\n","size":27081},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.201_1658844153244_0.07584624981530497"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-26T14:15:17.929Z"},"1.4.202":{"name":"electron-to-chromium","version":"1.4.202","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1083.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9162fb0a03d1f98aae7dcf7d21ed457072924acc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.202","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-JYsK2ex9lmQD27kj19fhXYxzFJ/phLAkLKHv49A5UY6kMRV2xED3qMMLg/voW/+0AR6wMiI+VxlmK9NDtdxlPA==","shasum":"0c2ed733f42b02ec49a955c5badfcc65888c390b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.202.tgz","fileCount":13,"unpackedSize":182382,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIASMaSpWCtJdo/XiAwTyZ+fssQVCjL1y5Nogptj5U1BAAiAl37jo+a7AVQ6ssaIHrNeAkQpzB/PMeT4ZH/pCd3epkw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4GR2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqm+Q/+N5spG5dN0omrnCP6PAFQ47XHOiSDoU0QvjcTcHGpTIWx0YLz\r\nIxC8AZL0uKz2k84O48gBVIvlH+p8K2LElBJ0FMpY3lAxPVGtdE6UopBtPt/y\r\n46fLKuakJ7T5SnhPOYwpxEDDfqY2olrBPEvGE/gE2C8hcOVZxUOq7o2OtCCP\r\nldnVDSlSvQu1tn6VR+8bLA0VPtZNVypE1GkW3Fs2EPee2fCJuRJI+iuK4t1u\r\n677/Aio5Sx3zDxrozupQY7KcKEb4ENqQDB4wMHXf9gBT/GBxjLhgCp/pieTG\r\nGyYorAUyV3NOhQbhVvtNC4OADt12jis5jm3DB4tZZgYWrFt8534+IqgylIZP\r\nY4ygeFZkZDgYFA299yXopBwfdaL6ZLicZgN5Iv+v0zMcVlSCC1XL8uO3uVS/\r\n7mNEF8SlrLaT6AIzZyu/OspmaYYiseowNlMZKJyVDBn+WYK3bS+JABY1oLTR\r\nMYG8v+gYjcze1Jpz/ix+QVubuPGvwY65R0+cCB4Gw29/KdOsw31oHKqoG/EC\r\niEtJtt5D/U3n+wKUt++gWhdOew4ONZNgt6+VP9tXdiBUHBXsqurTn7oYFuvi\r\njqwD7oPj9E04K5GxHLaoQnLMJzG9Mm4TMhE2HbKVOPqNzHTQMBbpqYrMeLPX\r\nQJVypkDuCMLTv2oxVz7IYmzmdHnK932fo+I=\r\n=pGMW\r\n-----END PGP SIGNATURE-----\r\n","size":27691},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.202_1658872950147_0.25564206413022994"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-26T22:27:46.365Z"},"1.4.203":{"name":"electron-to-chromium","version":"1.4.203","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1084.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a6a4a7e216ca5b6d8ee1e06bcbff5bc2719ead87","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.203","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-EG+Llo8SZGZCgErY+PzE9N+Ld/O80243hTufTeg4GbZ1U+Xn92n6ewxKhZjt/bxdF7aS5OXEU7QlRs5uRoTVKw==","shasum":"335ee9ef97ac538624fe1e694c0e4a8b15428020","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.203.tgz","fileCount":13,"unpackedSize":182522,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAdTSvYp1/HLq7seD86MzM7ivbcWSee/MMYv0GjnJYAvAiEA6tQQWL/3PKovN4aYNhIaoVl9pW/5CKpDLAzV8toCtKI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4bX3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqx4hAAk9YgSpM5zfYslTif3/H57qjMSBXuaCF4qXwmqRB7oR9wPbfW\r\nTBemqlThPFR0cWySCeM1G5HK8IZO7U0RkC2mLAWBXtKNCboGVzaIQp3SHEwU\r\nWrlWpER3u63orXzQNpLPO0YSY2sznNtKIPd8vS0S21XQtX+xJLK37HfJDgYz\r\n2sHKTgHZdWotCHdYNYYxi3HhLCroXYufU4oNmxYjMnU0386hSxIfpkIXbdm2\r\nFvzaX4fg06psdCuQspNwXzw1scrItTj+yps2OA8swJHTp7jO+pF6o/Qe1LIx\r\nM+8qtWChmHpTXz6p/a/d915rmYCP2J6k9SlCR8XPBDBw9EvE07raNMttDe5G\r\nJ35bka3MuG/jU+sL3FbGvZrb6fyYxXjWRfYcvwJLAXZ1K/BvvBJDz2gUAiSg\r\n1LNiHIFlF+iK9YWw0UQxtoR3xEfWGxvAdHiHukPb9nadTu3gHbyejjcvOK/V\r\ngVmI+9pYLYgb4hPPmixECW6mJnBMzUkZen5RKwpSDLnih190i1LYCFzcp9KI\r\nJto0oL976/6VBjOwVwHhpYbZ/5rsw8QAiEaKPWqnrC3cEhZ1H8ZSE8y2VQFU\r\nD6OZ15EyF+jbs0vrpzWQhITvwT2em5WAgOCTTEtfjuBHZ8dEjRtYdmLR2UJ8\r\n1JpCGOdbrGisiAWs5BUdS97e2pZMqmoOKKs=\r\n=zMxx\r\n-----END PGP SIGNATURE-----\r\n","size":27707},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.203_1658959350698_0.3099044222220786"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-27T22:02:43.225Z"},"1.4.204":{"name":"electron-to-chromium","version":"1.4.204","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1085.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"3d9429768cdb0c3c3d0255b5dd18e62be5e3f9ad","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.204","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-5Ojjtw9/c9HCXtMVE6SXVSHSNjmbFOXpKprl6mY/5moLSxLeWatuYA7KTD+RzJMxLRH6yNNQrqGz9p6IoNBMgw==","shasum":"aae069adea642c066ea95faf5121262b0842e262","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.204.tgz","fileCount":13,"unpackedSize":182602,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBSlaG6m/PAQg7BkWU/4WQQrH7LbGc3RbCNxWlpUSEMEAiAUuI9qE2RvSS2SO3sy+n4SKPFYLxd4wce7ci7ZsmAk+A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4e41ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5kw/+JMV1IOtcZ49X6mwOigIDsmgKkXkcD+am36Gw/MnbXPuZUcD8\r\ngkSmcArFPbHgzIL2X9DUIvvYTm3hpB5nbfP116htAVyeW7iIVNte/+XCQv7r\r\nfjOqmqHO9dPE7rIP5LWG67htsNf1V4wX6ugg2vYFsOsIc3RokCroLeVP+Bwa\r\nEuP5yfG8NbHX6cDqfIooskstPT8zcqnOaO5EmtiiRJoXRKhlE4r2ESbdgOXA\r\nXWiDQTpxasFdGWqwMNy+ANAB0x294gx5AOWHYPhTZdQ5ZJMifZ0klWayUNuI\r\nErd1muxY8O5hkyUSpG380LUVZMD/RVV7aub6hsSyDdKDJ7dFk3EKBDcA8sfu\r\nNS6Q8MC45GZng2o0BI0iPpm06b9AC4a/ydeEKiJGqSm5LedQJ3WtOP+VUTGX\r\nTZ6nIGDh9OyC3aI8mxn92zpaQLxtprzn8S8WWJZmuRsKqFgfvamDvZ/84OGc\r\nvTEdOw+E09P30p38X0blMaaO6X5FyQs8vgg5hSyJlRdVxmBb+El+o+f1/jYv\r\n5W3PgCjqX+QVSMdpfSIIVBrmgzpA6buVyFraLT5WTgnKzgKiy0JL5WcRzRJT\r\nQXB4adHouEO35Fg1BMPNPwAI1usPqTVNaToGc3sGNX5JppT/Uic1sc94nurt\r\nVIEwTmxm2Kh3eP2qIZRTlqvZk+K/CDxtMoY=\r\n=xmBe\r\n-----END PGP SIGNATURE-----\r\n","size":27716},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.204_1658973749200_0.7616260056443289"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-28T02:02:50.123Z"},"1.4.205":{"name":"electron-to-chromium","version":"1.4.205","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1086.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"63c5ededff9df4177a0d4e67fe6f9fa2331ce854","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.205","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-sSHlbfqn6CgQqD9muogEwWrw1wi2tHEQ+sunW7ex/kJ9ICucE85JW0E9ekbRDDgLP7NlpoNVUl+el0556RhFIg==","shasum":"1e5180945c1415f66b2143c5a5eb983fffb2e30f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.205.tgz","fileCount":13,"unpackedSize":182889,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk6cnxFoQrt/cn4iY3lmML+rR/OgY78oRi/rQaYHoTFwIgGA/cdsTtRuqNEhQls+2xMIVdqeAYNuD/7jqB4WAlTqU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4wd3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6lw/+K2+ww5DKrJS9OOWvEGyLjQtKDhRjgULVnlC+Zn+x8V2LUBWO\r\ns4TkSfu8ULHvIOwcI5tKLnw9jvFelHSoNTvAfvoQ8ig9CZd/RzmhrURFSF+s\r\nxVAHiJAbuV6+RT6RRzzbwCx3oG96RfrD1xJ5FdGIk++l0OwjOliTzccObNIx\r\n+RIL7GakX/meQFSvNe4147bCGNire3ovNVhtwNrr/JsoVQIWq3UE/I8Hjqgv\r\niztfLb0/4HS4IfizVGl/SR0dgUMKkk6ktFgV7OEKSPymJg59X7/qxFp4y0ko\r\nbhadKqexX58I/nzL4O+6BaylJfIlZMj/wM7KLieawnTANpBwqDZagDVhoIVu\r\neAzFFC/+Wy+v+0U91igGYxEBpsmLuqx5Y4dkbZ9AoRcxutGNdo+crWuQUkFm\r\nnKbkzA8d81f/UjpADi1TZWmRkH5iDRoSxTxkODyp4sCWY+qfgZfwvilRT0Ro\r\nd5hMMBD+83RI+kDdtViCtGh5YDNJIGOYVsh5teFrd7iZNWz9vYoEn8S8N4l0\r\npbyIEY0C+h671RBJVQWYPlZcOLkL9jbdf6Hq05Z+yjfM8ZErrcrw+vL76m+Z\r\nlUsPryVqJC/sxZOxu3FIltEoRBhLKvKxojhflk306/2FCipUwmNLA6uOXdRD\r\nGh8Xq/U4bWnJAvHPdQrt5oPoDqSBgyr13yY=\r\n=+OCZ\r\n-----END PGP SIGNATURE-----\r\n","size":27779},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.205_1659045751022_0.35497542419458217"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-28T22:14:44.487Z"},"1.4.206":{"name":"electron-to-chromium","version":"1.4.206","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1087.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"41d4d431874fde36db2e2df21e3c462a35125cd1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.206","_nodeVersion":"14.19.3","_npmVersion":"6.14.17","dist":{"integrity":"sha512-h+Fadt1gIaQ06JaIiyqPsBjJ08fV5Q7md+V8bUvQW/9OvXfL2LRICTz2EcnnCP7QzrFTS6/27MRV6Bl9Yn97zA==","shasum":"580ff85b54d7ec0c05f20b1e37ea0becdd7b0ee4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.206.tgz","fileCount":13,"unpackedSize":182965,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoXI6a9nTdatrkEpxt3blEQNs7qG2lf+q/LEPOt9bMjQIhAOnwwdJAfCazygMFl7i/IavMmtYYuXzwYDmQ39Fsvru1"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4z+5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyDg//elu3XWVgSvVxgrsZxoJtMm6MUhpziLH02aEvK7Qa3R7pxqyE\r\n6EcINlZPjpR+GjYgPUaEXOHvQgurcj3QpzgEx8u3l+utOrlkx/BCnfwmQI+A\r\nocaP2LurIjvtHpbBIMlU29gruPcqBTyTedGbel4snb4pay/8UQ1l/aKYDRku\r\niWGbKlVtOMweHGMoWXZt3uQxcJGrF9GKvTK362iQPhul08KE1vW1J6I8G3Ji\r\nbDgGEi/Alpv3MyW8PheVdvVR1dY2RoTQU2xvyDrP3qJIJUgdw2IH1LmEmdHv\r\nA0k0zIfV6F4PbkEwlLrr2u4g4Jr1G/hbk3+f/Kk0YH+3i9UIO7omttowQAVU\r\nNjtByL2IjpCjuoYdclZJkabSzStYlOpVA+MCp6ZoebrHsdQTGm+uUa+BSx2I\r\nAfKP6I1sW/fgyZaOtW5PwW6pLoTKnKctdJEML7y3x8sDhUaUfb7HISC16RId\r\nIhPRggfTAOdT0GzRoeXZGXhmoqj8xCqFP2J0HCm5rWWvhyjXYQsvdJ2eQTlP\r\nqmPvLiOI3mzZbaJthoXt7GyUhW8NRoDdT2DLh/gSnxKNqOH1lD/RVoYjrjdl\r\nBx2K6jV7K4++BCzqiHDkS9BcKGj4sS3h2KJFNbY9JeEOtSkHYBfV8arAcfGy\r\nHZTxk7uaK9tnGnmcU0yc/CsA6EM0r2fMNPg=\r\n=owIg\r\n-----END PGP SIGNATURE-----\r\n","size":27794},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.206_1659060152861_0.9989709120470744"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-29T02:02:53.450Z"},"1.4.207":{"name":"electron-to-chromium","version":"1.4.207","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1088.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"bde019152957f31ec280c0dd499a7394f10858d9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.207","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-piH7MJDJp4rJCduWbVvmUd59AUne1AFBJ8JaRQvk0KzNTSUnZrVXHCZc+eg+CGE4OujkcLJznhGKD6tuAshj5Q==","shasum":"9c3310ebace2952903d05dcaba8abe3a4ed44c01","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.207.tgz","fileCount":13,"unpackedSize":183105,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGbihchZPYToLMVa7KcYQ/q9r+X+AoaQXZo7vzjKJCQoAiAtlEuZCHJHibpeohAiFQFTS5vLcnIL2A4NQhAmxLMF8w=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6E13ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoS5g/8CyVMxC+pDFohlE1xyRX3fFASGeA55BZITmjTlaIHnUdONQdt\r\n2lMPfz7lw4y/ErOdantsUSgttpAlyz5fUcr8+ONYsrjSpZc7GPU+0u+f1mSJ\r\nkDGvSL3wk0H9GGmBXXVqnuHQLN61BJeWYMqDZKzD0qEbKSioLw/UyBl67YN5\r\nOHYNJHxGZM3ULP3CXKGXVneWwwIFdCLQAcEdzY2ay4Oc4N1OHCFhEiw1cg8j\r\nvpuQNa3uK1fWshIC+m0hCfx82myZuk8IVg+/xhFMAEyrEmco2E2+l8SUqPXj\r\n6lG4RBS+Djb2jUlWg58Uy4zHPGbOBIYbvS0/MlqZoI84/Dr6MwCPOg+kJikE\r\ncodUc5q9AxZX8cSpWcsKmgvlgC5DUZ+nErTEdrGnlxxz5jYbtFmfAYjzTWxL\r\nP5bo/tslR2uXa2BpdsRg/M1JD21rvWi+8zjX/ndZDoyGvFw7+3pG0WTNX3aH\r\nn92q011i9peWH/RVSd3kP0Nl2JYcrKu8ci4mvXR257YrBPMRrJVcJ1Ik9taT\r\n4PxiwLg7EOKzQVEK+VjQC5aZyJGd8mfifCrhl+QQYQUvnmSAlMYqKyNT3lTY\r\nYQqO3CdnYa6c+KZx0qpzcJSP+qi9IBrB8VNqGI2nRAaTswDYU8kpPmD8Goo1\r\n2Xg77jPlln1xAWOAGksGK0Vf/iVHUYmvkBY=\r\n=VO/u\r\n-----END PGP SIGNATURE-----\r\n","size":27807},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.207_1659391350972_0.37026549069009795"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-01T22:02:56.435Z"},"1.4.208":{"name":"electron-to-chromium","version":"1.4.208","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1089.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ab1dfa0596936050aa3962f4cd198096ea2649bc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.208","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ==","shasum":"ecb5b47c8cc212a43172ffc5ce50178a638a5d74","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.208.tgz","fileCount":13,"unpackedSize":183298,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpU3V8L3TgHnQEE2dkYV2bcySIvYYBAf8PNQY9oKZ3gAiARa6O5RJqok/og8mtk5JB6YuCuWujcBGE7JmavY3sFQg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6IW4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpmphAAmtbVDHTB2Y6rQe+mpcWHZfBYF/00P6k7TmSwrOfYeLPLgjrq\r\nmf8YhcdejxPEFPPtZLXSY/eNmGUjW+lLSYAgwSPsNti4JM8ljigOaqubddWE\r\nQ2OTiQhX0Xi0ItXjBBFUUOkt7WMyBGS7Qx/E/mRdx5irGI00DPUeSV6jxNRb\r\n5IFwEhuuxtklcwl1B51dvi/h/iZ4N9Sf1wgs+HjHHwofkBg0hDGw3fctDNnh\r\ngRMCeCbBiL5geeUbGBTz8WfFzpj5IWWmHyxnU9T4TR7vKXWrazSbic75M3X5\r\npF1GY5agw7oGqqtKBh8nnJoplsUv3qmZqbAngwoaOgFNDxkN1E6vTy3fSef7\r\nfWLe0mhyYiRu7ygcB4u+QjFq5R/+9Q2WT3P+WBe2goML7FLzk2Xb0+AUqheW\r\nqKAE6Lx3hej+n92lCLW+B5zna8HdiaRxGv7Tx4Yb5XSMwgwSNmB96LThVifT\r\nCs6uZZTE4SJYH+M5ezEFxW/z+sQgofNuc4OTPf/PcDzE4Ms4NbJyUFF+oKQ9\r\n5wAX1/2x+af/CuwKCdAMMcLJ0UN3xTZFKhJy+pukb62ybhQmfD8jP/XAg7hc\r\nHfK62JUOe18nnkTinNo+lfGJ4XCvi7loyqlm+hvu6eXe8cin0kQFU1VC9LVi\r\n+KUh7TxupY6wvVeuTdv1EnGHlpLwhlbiMsk=\r\n=uyOF\r\n-----END PGP SIGNATURE-----\r\n","size":27847},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.208_1659405751787_0.42926809857349824"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-02T02:02:44.569Z"},"1.4.209":{"name":"electron-to-chromium","version":"1.4.209","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1090.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"9f0c819b46eca661cb4bc0bcc3b2a5620a8fca93","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.209","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-SfWI9G/e3rxGIUalHbUCH9yEsTpO+72y+cD1Sw0tYtuTrdOPaFAgZKXM1crWVJwTNmj6KIPbbx0NIoV8a2cFJw==","shasum":"18ec3a0773fb3e39fc0a5c9373b2e7c72df584af","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.209.tgz","fileCount":13,"unpackedSize":181825,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFdoBRWJ7BqSby988ftLqeRgxfup92Hkt+lOz+BE8YpRAiEAgZ1Y1JOl4W+kLVZqppTwR2nh+uNNwCchE1CFcBWOnXc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6Z74ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpb9A/+J+eqdPtJaKkjCHzLRBQYs2zuR9u0uKIIuIJ0XFc1eBYkgc8t\r\nPOJxGioxF4tCSnndSKv7g1/2iyl9Xeye/oODJiyxaUNDSn2NaJNybDrQ5cd7\r\n7vnV1HZdONyoeXiMXVE/GrTaxnCtDVXe2NhGdFU+LhNoCMKPU80OGVdW0z1d\r\nRGrfrDns2x1jQP+z77fJWzn3Y27k9qVqUuq+azBQne4q9S9+fqIOAGTmgeoF\r\nCBGw1g1iHbcWBdO7vMdmHYw+CexSMa3m8XEnfsQTGT+2R6fEia4/QxekbvOj\r\n6NvLk+otKi7BgyMcBXf8IpapNF+V+upLJldc0VorDqyK3+pn7s5rusuXEGzg\r\neL7a9UeC6o2Wu7P2s+wCN1A7dg9hlxBoRt63VG/vFPfFbRZe1Z67EB49RpJL\r\n/tk6Uykgyqm3pqDWJy8lPM/w/ZpcSXZeA7opKRp1qP/LjiXOnyrilwZza0TJ\r\nolwbc9jlJ9sBCTTPwyxyU/AJZSL4nHowWkrpQlsjQ2sEozqCc3nBTanPsoRv\r\n0mKAWqEvDkBhByQZ0uyQrPVCb4GC6tpYcjQRgblO+gdryhQYABxxWNoSW9fj\r\nIeyZw1yjXOfS5QfpIh22h7xFziMS8HGUg2Oa/6mQbZAg5H8HxH+8ybsFDrJ6\r\nZCcEzKm4IEvV4z6H7DVyoSeL3pFeuKQc9M4=\r\n=hL+9\r\n-----END PGP SIGNATURE-----\r\n","size":27585},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.209_1659477752170_0.773593202811214"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-02T22:02:44.499Z"},"1.4.210":{"name":"electron-to-chromium","version":"1.4.210","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1091.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"35176f1d003b044d7e6b34ecd711cb9fac8b7bcc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.210","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-kSiX4tuyZijV7Cz0MWVmGT8K2siqaOA4Z66K5dCttPPRh0HicOcOAEj1KlC8O8J1aOS/1M8rGofOzksLKaHWcQ==","shasum":"12611fe874b833a3bf3671438b5893aba7858980","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.210.tgz","fileCount":13,"unpackedSize":183438,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC70tTMMaKQ+WgKih39BtvoDtlPZYXszZaUzcT9bYM2swIgJz0vRfSayhA0zekv3m6yGvEm5M+IfQaJ/qAf+USWqAQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6dc2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRMA/9FAzQo2K2Wr9W/V5ZGUMVNOfNIslIu3RRAsd6JZFqQEeoCfNS\r\n/VkINVAnFxzM6fpHHgOaXXJT0kbnm3SoEXMk/SHzfeN8E4ogXiFiuZo6btOW\r\nfNfgjG8Y74chtzJ7zkrehoiCB5cGULszOkA67reKpf0zkxNxN8HlMmu/rEpk\r\n64klEmF2PXwRJ8YRj/wKfNBa13GHStJ7HNfoxjQM71TlsDJjGb0kTBlctika\r\ndA57vquaDktQVVWr67E52Gj1Ox+3VfV03m/bzIaSrSqhjxsQLXkV2rmns2JF\r\n8UvdiUSovMMDegmSsqIzK16rfeDnoEyPT5EhA2JEiBaYiJzuD1r8mUU7kgPE\r\ni3vaZDEC31HS5bNfaibKlsx5ViLMZwqFQS5ct/TqzEWeNbsHfTXVk2BD53m5\r\nxF6U7AQ0O2VNl56Z3D1ncHHsX2zUn54hhAZY2mMe7KoS4oVkX5jC7emePOva\r\nln0c6hu+6BQyx0k05nHlCFX0Fws7jqPKjnodN3ETinwfVLoXHMcBZwBN9yQD\r\n65rfja+gyy4N1/H0VxLdFQvRHW2xp0xpNCQmlvyTuTdJAJYVJHUXdGQlJ4/z\r\nrmbU8Y+5qaGVqJ7ois90PYCGcKXqvQ6T6Pq57G7KzRpUurbUJYRh2492e9UE\r\nRJAkT34qsqvin1E2cPyNZxyg3JlWFzqiqxg=\r\n=7p1t\r\n-----END PGP SIGNATURE-----\r\n","size":27862},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.210_1659492150309_0.20451413039651611"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-03T02:02:43.526Z"},"1.4.211":{"name":"electron-to-chromium","version":"1.4.211","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1092.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"cf8a09240ee5ab8ec24d7f7a1410bc93f038f450","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.211","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9A==","shasum":"afaa8b58313807501312d598d99b953568d60f91","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.211.tgz","fileCount":13,"unpackedSize":183871,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHCk03qseTQW3WaKr57pB98cCfl4PdEH5SRUz6a1G796AiEAmxkVDxA+5lG3r14XoKSELxC3c16EKq1UscrZ8RDC+aw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6yjBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpj+A/+MX9Ck536OYlmyOdCmLMoEEu4hv/P8+7LJbnYZ4/zMAW1BtfW\r\nQo8gCYWGYaSh1h0ZljDbjTLlkjmjZvWfBEYGAvQaGYR/byQePbcQiPhSHDhw\r\nK9pF4Of9Mx+ttf+o+bJKpa+RLLbxMJBtHT6aWGbr8lBPCH2h24mO5EM/nXX3\r\nXtXNIhJCqGVOqI754Fh4ro8emQoPt3SPH8b9UHD0Hp861qWFTohzeGC1KwU+\r\nQ50/cL+37HoCM+p+wKAvgI1cFwOgPr3IpTPSWDddyqkNGGUetQ8RJvQQDxSl\r\nqu1F65y2VQ5o25bHRT6fA3PJ42SamW1o1tPS4qXGAwVmZsfJS3GAoLCD8/YI\r\ndHw8jTQs70yZUSP56xh/zR7JZURvq4XlaOJbeybovrAgXocDE2pnITIzPITE\r\nLe2maRCcgMhtohwwO/ftXSrQl5WgJFlxBZEyVro519jBTy12ZPn2MnEkrJ16\r\nKTSBnn2oiVhrzTPHpwn2G9RDraV3eApwxZ2mYh4X8Q6iLUyMKttjYkZKDAnJ\r\n+Bmv98+ATiHTnxMsFY7GQv2GjaunijzB3bO1cmtO4ggcnIMEYas5jp3YbRXu\r\naaZHgBOG2+KhiVQCFvlN77pS/1Tbqx0vgkBsQoZXVZJwF3IT8NkaNzGX5ItX\r\nbgxBkK50N5tgJNiMQxBztsfF3tOGAbdq1fk=\r\n=+UxP\r\n-----END PGP SIGNATURE-----\r\n","size":27960},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.211_1659578561172_0.42840333795973673"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-04T02:03:10.323Z"},"1.4.212":{"name":"electron-to-chromium","version":"1.4.212","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1093.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"83e098cd0b2978da02c071e9f079389772cb1eb5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.212","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-LjQUg1SpLj2GfyaPDVBUHdhmlDU1vDB4f0mJWSGkISoXQrn5/lH3ECPCuo2Bkvf6Y30wO+b69te+rZK/llZmjg==","shasum":"20cd48e88288fd2428138c108804edb1961bf559","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.212.tgz","fileCount":13,"unpackedSize":184011,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjf7XoKXCGhftOI+Od/7ULysf4QSRgkQC1i+wkZOvGJwIhAIAfyY6uUHlxaZ+6AS/6m51s2eTWkDieuTjcYNB1UQJ7"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8Yf4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8VA/9G89QF47P2hY4aBhXgUkB0ZL9rK4sYt/flvwO/ZkMRxKJwCpO\r\nFMjo2dbkI8Jyfx9s76pMotsVEzurL9dlxvqMKSU5YKfmBAWesZBMIABvOhFQ\r\nJnEJpN2Ge7r4KI5Z2emBvR3jQp93GERLpF6RgHJAxtuPON7Tw8l1XFd1jPZ1\r\ncar2SRBOPpFPYJ8YyT74LtKkysfKW3uJRA0msIe3qN20nFuHWwEAS8BFko9d\r\n2AJbHWQZcrubYJ7j3n1RomNHwJCR4ltxZEsqab/3IMTpFoXLIH8+NCrd8U4i\r\nOj5lFrirPTwRQxrQoZ5xJmJ8L8o4Yz+UW9DIrBWz3FGDHfcPyIbt1HqvZxIS\r\n5pevf2iOJfn04uC6aVOieZJA7EURM56XbPGVbUcU4bsdMUMfcwgL3mJVaokZ\r\nDwx48m7OqYlG3PMPAY4kAaMAdNi5F7Qd1Iyk4BIa6ax5rPw44Bv8iWHRhOha\r\nmWxuShv+/ZWdUTbJsKxp4iyNrLZO9unu9NtvPfnc2H8Cdo+7AKUqsQtG1jPC\r\n1ulQNEdUjP2gVKIjj83jqurlVQLN4Yw/MBR48U+pUaOfUgssRPlVbVYPLcYO\r\ntmuxppeEK71Zcexx+fQhrZGm+/7pRKGexGFFnx26gK64s227e1vA+5v1ZT2/\r\nv6IZFWBCjOt8nYO8A4Qct9dH4oZPCQbCRgo=\r\n=LL/A\r\n-----END PGP SIGNATURE-----\r\n","size":27995},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.212_1659996151725_0.1553464984127435"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-08T22:09:53.494Z"},"1.4.213":{"name":"electron-to-chromium","version":"1.4.213","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1095.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1eb8fc7a12c3b5dbae1a88fec4f2672c9b7e1d10","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.213","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==","shasum":"a0d0f535e4fbddc25196c91ff2964b5660932297","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.213.tgz","fileCount":13,"unpackedSize":184151,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCOrtGJZrRXeOoycm4vyplzWmkNsNdo3sDDIMsnF3fPsQIgfk/F4YDBXsmNSBXj6R6vjmOZ5WCSvKde+htGidNsyQ0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8tl5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoS3hAAis+0ejC1oIS5+pnEGmnETnur/2Yf3fPeyZNaAgQNKksUhnC4\r\n9xiV1BkPWqJ9hnKnTENag69Y2AzROKL+DB1ocIkixkc41J6kRbJnNdIeg5HW\r\n9mPbg7Ux8H4CSc4b9HByhEMpUAQfhFQK6d0ePU+YfkSnhRkG5zQ+/06wQAwy\r\nu/su6T904YQEfMrWcg2DHrJAhfHKVrYH0nB2nNV9ujAsO90qbcd/HFkVzu29\r\ne97rrqrd4kJY5pejcIzZoWk7Rob3UvbPY5D3hplCv2KCFJ1Pv23f0Y5JDE6R\r\nqSjPfDTivhyekfvSY5hZ5gPYhyAgpAH0sei/ziIbl9+l0fDrnpww6jdaO9HJ\r\n3darA/WXhNfGnm6BFXtgn1Z7n+6bXJ2lr1ymyDED1aL48nRpcz4EFK/V4bu+\r\neGRzD1buAMM5BPH0vXBCnhcdPDcf01fk+GKr68bCgBQz4JElRYH/Yl5Tu3qw\r\nlUwDstMiSCqbzExKM9mRsMypUq6+MTucBTxs/RL+V87cutldmNOotTvRWc1T\r\netoAE0Cx5oD+mFWtaO1nznFco33T59mPxHrZDPSGUJDlxk1AFFi62QBU5YCO\r\nhNMD1fDek2tvJ7SB/4HSSctr/wwx8VJHIO70eU2uZxFL3jlNJN9mSP2zN5b8\r\nWhh0X97GK6jwjboHYus8rTNhwPTBDT3E6Qg=\r\n=xy8N\r\n-----END PGP SIGNATURE-----\r\n","size":28016},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.213_1660082553493_0.7338591740916116"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-09T22:02:45.410Z"},"1.4.214":{"name":"electron-to-chromium","version":"1.4.214","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1096.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d81530a80154f946220280311f20292bf6c1e652","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.214","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-HTLm4/c5vNoM/57HJWIc1ZAnsyLNcqwtztS4+wGKS/gYrfyvfHrvkenbEewj9KjoSwg8xl66cF78TEPby6p2KA==","shasum":"a06499c8d950e74a45fe8ba37f89892667430478","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.214.tgz","fileCount":13,"unpackedSize":184291,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICypP3aoPNBasSYAAokJkt1c41RcTpMlIePVA1hA4uGcAiBsnx3PItAMqWdPDOBndh37kOzCErGfBrGdUVMeK1i5ZQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9Cr5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWTw//bm4p95IzKed5uKUqZEyJR926clqj6/EeCF2a3d+FOhaKaAgB\r\nMqrAZOOyDAqLxf8NO57bj1X4jgfGJQ7SvAKIhkV+OdueUxruVteuM68EO9JJ\r\nrYN2KeXpC8PWLxZLsjbiUTluKVPGJOHU4ZyT0k7EpjDwfj4rUK15YPlFRLz3\r\nqw4uojMBtUtgy8R7+YVCF0DVuLEW/K9jldktcdK49jNWVNfGjqQThTOR/asJ\r\nUaHAD72QrXGuPk1puH35fNDlt9byRtARKi6GwaXeVtAZkOJVriXo8qCUA/WK\r\n9xX/aBBuDEXdaxELxfRzVG3CtDD/blXnBBbc9q2p+levoR1StYUAtx1UDD4q\r\n4M0L92bF9usA8wElBZ7wqskpphRPI8i+Ur0lD9nWuH6rpUhGL/e7RpUo8Byg\r\nzg/fHsGlFor5fDc5p7OhnCyGBCNOWBtDHrjoE3Xrl5muoUGh/bTwvSUc/sqK\r\nw/RX+Vk0w6fChhD+DBTzlvwu7lXJZPGWF/1UM/DC4K8BsR/eKNHDMTwvNZ5I\r\nEYJC+jLl6fgAm8rTbJzB9NO9y1bMALBJDuzGX47dnZL1m7CxyQCSj/BVTKDA\r\nlKnlpiGC2l18CEUFvtQaSxlgD3LTwQPCH39+OOjl05jxtCgffQ4TiJFCxWRH\r\nkAKoitagKaFzhKdaCG4OkYMFvLzHCpYjR0w=\r\n=gown\r\n-----END PGP SIGNATURE-----\r\n","size":28029},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.214_1660168953564_0.33206479122058363"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-10T22:02:46.239Z"},"1.4.215":{"name":"electron-to-chromium","version":"1.4.215","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1097.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"fb4e2a5a39bbdae3b3a48cad6dfc46234e9ff48e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.215","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-vqZxT8C5mlDZ//hQFhneHmOLnj1LhbzxV0+I1yqHV8SB1Oo4Y5Ne9+qQhwHl7O1s9s9cRuo2l5CoLEHdhMTwZg==","shasum":"553372e74bde3164290d61f6792f93e443b16733","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.215.tgz","fileCount":13,"unpackedSize":184521,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBzretkOYSWDnfdE9VtiLChonG5tnImOqyvfbHUbFsCzAiB2Qk08zbPnb/xQ4J6VStXUhMehaahhH8fB0ftXPqZieg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9GM5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKTA//dmUb7speWZRYZJ6vjEzkfkR+HlbZqkBWKS9HzKJc0Ljj4SW2\r\ndB8Muhq6tdLkHLrhPgOUNc3EwCfp8L9FShf7CKs/XKpiG9vp9/8pj7E/e91L\r\nkSXlOj1t5p/C/snstYbQ69EmkPWBoqP7aKuWHPhebOr2xGrwRM3jSAyWZo0+\r\nc9muSV7xJYmc5uiS1E9DWkZxLBbXP1vlM+ikIRFPtIXtOSzftYD82CrJ+3rW\r\nz6i7WU0tOvJoypzUmYrLmMB9PhUwSryoZk00zwrAw99LrrE1aPljhazfUjAs\r\n7efEotbx8rrmsGvFcodkG32ZbOV+aGsli2/BWdIK+QI494J+I8q2HwGgx4Yl\r\nelWDniB2HLZhRwGwnGqioOa0rOW2/xdPqhmxmK7K/rGC8Roa/v8t6qlb5zUc\r\nSCBUVBf4i6fCVCpsFcM4vIcbJ1LMzwKOM4KrqSHRtdShtioJPUSt30OdD5ob\r\nIlvpzMeJoZbUv6JpfUCR3xWDtVazEd3hqL2UD0S5pCrQJvh3vrltXq8w3qwL\r\nPQypBggDsSHZ/OOLhYPEGS5o5k2m+ceLYuwozhVOuu8xxhSQCF5xBCwLGfsA\r\nlGP1SqK1+cok24mSG2B9YwmpcZ9B4thISj2HWSHvZfcJSn/EWwOfPzraAzrB\r\nmLadULtcFUPSlITKrwOMLSXEhKe4WL/6LME=\r\n=0RGQ\r\n-----END PGP SIGNATURE-----\r\n","size":28057},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.215_1660183353139_0.2724813273178377"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-11T02:02:45.739Z"},"1.4.216":{"name":"electron-to-chromium","version":"1.4.216","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1098.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"61a6eda2f4e2dc8fac8d1bc343b7a14c94dc94a0","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.216","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-jDkyyqIy2n+dtl3isE0Y8znnN936BGobE8SDnwErubJ3zOophPDFPMr7rCoIH+EUae6T7+t1cbBggGtvVf3ZtQ==","shasum":"e1b56d3dc81333fbfd74a967b45a03d822e67af8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.216.tgz","fileCount":13,"unpackedSize":184661,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpbZOOazegfI+L7URK0pTOQt/1TZTP7ZCR5MBRGhR4TgIhALt3TDBLfKUHp31MYriFinlULV6+tWM+DRJm25iTK9Qc"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9Xx2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmruyQ//Yy9ioYhJLhXa3PdEpgVthSv2Opat9u0+5yUDaNANK8fmcK3J\r\nRIXNAR73cGFBDFzlXp47mVcFeUp+EmuV90soSVySoHTDfouyuqXyQbqkUxKs\r\n6kZ7+vppZ4RB8IP8PIviaYzsg2SXQBlwQqOE1zamG0cv7SeRcV1p7MSwsh8m\r\nrbGnIj7FUiA7IKsZvcHhkx3n7jIB4GvPcj/vVYkE9IvyNfi5k00FE2wd8MOS\r\nXtbJ5UNH0i7T1ie/XKKWIGs+L/3gqAVQi65N72LmDZPerP3xFyp0YQh7tb3K\r\nHfei5pgH968SS0UQ3bkVCBrFA0XUkU7pkGmQ2hZjfV7CpvvONkRmbYN/s0x1\r\nCyfqLbhwy/yv5sFjvio9RjpJ0oTu4o4bMLazFle9TOpC+nz5Oxy92WZjPyg9\r\nqva8OlSt5pDiStKbPoH0P5246BQ8gvH6Nn3U2EVI/08c/Q3wvx9B8uXz16wG\r\nJ4w+fur5VrD8zXA+pAkzLRbofxQ+YP625K1/u6DlyL6KY0EMxhp/HKaEjvRV\r\nCLfp5+e42Mue6p/KiVs5WVPc0qE47SVLqXgyli0O1Mkt6YPBs4H7HhyeKCdj\r\nMMtc8ooyeeYruTnI7zGl91xl31OKVIUndVUvd9JL7q4yIU0TAAwu7Eh+2KM/\r\nvzOpu4MY7ZVti/g3jA71n5IJPCHa8c84alA=\r\n=Rdpb\r\n-----END PGP SIGNATURE-----\r\n","size":28078},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.216_1660255350579_0.4563631812588502"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-11T22:02:40.277Z"},"1.4.217":{"name":"electron-to-chromium","version":"1.4.217","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1099.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"125c00e37b250e5a959d530ce44a7ac3e3b31980","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.217","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-iX8GbAMij7cOtJPZo02CClpaPMWjvN5meqXiJXkBgwvraNWTNH0Z7F9tkznI34JRPtWASoPM/xWamq3oNb49GA==","shasum":"f1f51b319435f4c1587a850806a0dfebe9774598","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.217.tgz","fileCount":13,"unpackedSize":184765,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICFwbflijP0dPabHpfT2+9abSCkIwv06fNBARCPJ99Y8AiEAkV36e1V6pqF+9uV4CoBmHmVfzPG+tNUvN7M2KdnQuhw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9bS2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7/w/9EkQFpxqyYZvQLwwQd364YaRsTJQeI9ZM4CgNqZH58cbxWOof\r\nCpmf4mux5T85RoX50q4bK0zO4Th1+LSFB9TShf7L1cdt2PM39VW04EHuMLdu\r\niaH7XdF5E+jlu6Cjq75KORIaFQj7xk8mYA0bdcdqAnmmWqCSZs4oAI3Bvm+6\r\ncnQ+qFYQD/WwDBaKdX4VL8hX83TdTeCRp0e/uVkxFwf8VnVs7KCYym4WecLI\r\nr4JLGSj3EVsVpxI80Q7l9W+TGkLrgYGTpwZ6IWAcxj4hwyAtIgEG6gbPZeco\r\n+MFWn+fww7It971Iv7ktJmeMv/LHsCRs1scQNlaADWtj2d/bwl9YHmtsf8eC\r\ncZaGTNMQ+c4DiXf+VwAzxlC//fe2+cVPL8R7yv8WMeDur28W2IHhvUwKzO3U\r\nvSXMTijsuUrdSViJd5reWJtJvn/+71VV5A956euWqtaD7hvgOgr/MbWHmdIb\r\nNa0F8JFOKKDVy1VijhpTsoP2PYMO1MW5zOemAM20YkgiU38g5OY6htTlPYWw\r\nnBvYPPxd9L8wqI6SLwvrmA+jEC+bolIz1sgPCdDbCYYVqRAjgYoa1eR6yZRt\r\nn0kwHvgd2lCfxx9fbg35V5tae2LLDQBQWn2blnP52ehZWh/merm8o+3DCcE1\r\nrvtLbDTik6jrN51zobbw1KNeOpm6YCI4Fmg=\r\n=OOtj\r\n-----END PGP SIGNATURE-----\r\n","size":28086},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.217_1660269750693_0.5574300425994523"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-12T02:02:42.613Z"},"1.4.218":{"name":"electron-to-chromium","version":"1.4.218","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1100.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"77532ae6230e093c9775460afe4a2a817314b0be","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.218","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-INDylKH//YIf2w67D+IjkfVnGVrZ/D94DAU/FPPm6T4jEPbEDQvo9r2wTj0ncFdtJH8+V8BggZTaN8Rzk5wkgw==","shasum":"d6b817b5454499a92c85888b42dc2ad075e4493a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.218.tgz","fileCount":13,"unpackedSize":184905,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4g+RuN5Fd74cIp6gnq5WfmqmS5vRdBSN9uUq+BItVRwIgMt5VH5rVpIqCmWfbFr2uBOCxJeoSE0OIPUMfIT/oXIo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9s32ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmosvw//VWxq8rqJQIfbNoWPnVtDFl0FNP9IJ6MAT0h9DnuyflFSag9h\r\nS6Zl+q9RcBw6f6Or6qNl4L0a1QxGrVP8fdQzLepqF+xtdP9iVoCxmJCJUZjm\r\nWqbugvb0qnd40SqvtEeBqQrByUrpD0VZf6NNCqVqoJcrLTbZBdC7XaGHsW2C\r\ng9bWm3kOC+e0p6iOyONSdi64uMBOdQqbw2r48LF9tPR5WSgpg5RW8dvN5YOa\r\nCf85kuteE0+TN1NLaLEatI8Su5KK1ylBhiIDKs7DZOctkipJiLwYmYLQxmY/\r\n7w9bMyS91p9Vi6sVuEQvuuEgzmNEw2GmFRxTkvdl8PiU4je6I3CN5AZLdIdV\r\nibzTQvPITB5KcAGX9KJUmzb/jKB/Qlmbnpg2UgPBC91auT9KXGvzfMkoPjCI\r\nC+aN39pAtq1/D0+Ux8J09cc9cjTEz/rzO1F2INC1Tb9G3S27O7lvRIYBt5hA\r\nCd77BESnvqjPmaImw8H+WfpmB0yns442aPpNyA+nUaw83UC1fYhe3WitrDtx\r\nxTbL5+y5eFk7OIVyjaOjFF7ftGgUB4umeug2J1d60fyv6DqQTBvbAIu4sjOM\r\nf/OKFvQ9wR4NYlGR3UkQzmiwZxRrjtFU/5xuyzWPlbeaniRTImVtbD3LT0c2\r\nKfy4xqS97YBFBeU/Ji462wkEUPrtIoX8Itk=\r\n=SQo8\r\n-----END PGP SIGNATURE-----\r\n","size":28094},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.218_1660341750519_0.6753991632333243"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-12T22:02:58.884Z"},"1.4.219":{"name":"electron-to-chromium","version":"1.4.219","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1102.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1cc38e6a55c3f23710fb745fa8f5579c15b16dda","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.219","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-zoQJsXOUw0ZA0YxbjkmzBumAJRtr6je5JySuL/bAoFs0DuLiLJ+5FzRF7/ZayihxR2QcewlRZVm5QZdUhwjOgA==","shasum":"a7a672304b6aa4f376918d3f63a47f2c3906009a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.219.tgz","fileCount":13,"unpackedSize":184587,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQEdbFc0G+A6W9LYetoICC2Gw+5LXTBdewwagDmL0VGgIhAKZ+yKJ66BRyEyu3CeFPNhcT67P1e+SHqz+4PuqfYAmY"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+Fe4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNYg//QZQCvGk5WsNcGQaRdJ2flvV0H1KO63C7rehwu0K1jk+Ekkac\r\njbfx3h6N2nl9aVccZ/IlSSRmszl5+zUyFpfhPGk87XBYJZAvNaTHn9Fja7t8\r\nRVkhX823RFJnDl3EF0/33yV8NAfJk4jF2gDmlXThALZod9SiYiRjuoTukbvQ\r\nCFAST4fA7xz4hI4R96S5d2nsaV7tqYY0Vf/knk9cK/x+PRstwinaSyQ4vqW9\r\nA0VcnrhYm0BgKgli1YBp9fI++l2Q2t1ubJrZlx5CRt8qzLOYExdcE5FBU9lz\r\n1T6jRbhhYnmhbcbfD0Fw47yGVmIuxaKm+bMi420W6Gx2HeVfX3ITvReFm1Aj\r\nEjiW6a3ss4zjebq8ru1JEpNlmrTMlVAmjIre+ESC2Ib9axTmiyHLes8pc/jq\r\n35OEBS6r3xTZkCBHEENKTlG59vn3AI1tWQl0btsfoX9uAWCK5a9+41zi8SiM\r\nNlsA95CaKYq9YtB8KLU9wP37zm/Q/brdNs2FkP3Bi6YGEqp4rQM28ABn6ZaL\r\na/kfMEeQbTsIzPRwQvuUR38/8WtNj9jRf3HVNC2fU3Q5ng0bGOrE9f1tSAtU\r\nvV2OFe1yfO5jwiONH/4mwn3AZT/krpvXH0RwdKpeLna6gfad/POY9zHxzP20\r\nGsDTRwQ0oXZNjeOI61IN8bMXm0QweFcUsKs=\r\n=w+HV\r\n-----END PGP SIGNATURE-----\r\n","size":28032},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.219_1660442552692_0.6246089898635523"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-14T02:02:42.300Z"},"1.4.220":{"name":"electron-to-chromium","version":"1.4.220","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1103.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0d331e0043bf114d61af9565e10b677802ad6339","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.220","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-RA6Mn51gj2lyeAt/MiuVV+85tN8vt1jbWP+kx7S84htJ0MbIHGHdnVm+j+HzZQp69O6gWmhLBJ+Wpk2c445+ZA==","shasum":"947014e7179af429bbcfa1ba46eb721fe5097c4c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.220.tgz","fileCount":13,"unpackedSize":185045,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICfOutr4jFIEGD5AUhzLNN/hXy2rs9upWu8FCm6BDm8GAiAhp/SfKro/VOv70k5Ja5/BHtnvCyv3jXi6SRXesfqsVQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+sJ4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRTg//QIQ09MRy5DuLY6d5g6REkw7G4L0rfY3P2YyPjKugNB+HkXA2\r\nB8EEVN5LKJvjNmLW1skKIZs8rMhw52SZgfUrpR4GpNALk2mUkl0AJ5cXuiH+\r\nwCSzZLlsTyl65xxq/VIZz5iyPG4Mx9YmwXcnSEBBWdrPwtjbrdySvb2Kvp+c\r\n9SDn6D9Ik01I/emU6+yQCqM5EVxWlWMLsipzJKMJ9/W57k1GEbAEmqH73L0O\r\n/FLHGdehtOEC30AjvjSvY61mNGks5bh35pIkVH/Pwhpmz7BhtkbWD05Uc6po\r\nHVyWYq6VhJgcPUheAiqGWuJOICR82Z66GTFbSCWAWoKx0v4mmylYjPcx9UcT\r\nku9P3fH40QzkMx+0+WdVWuvrcdj88bds6FOOkoyIE+pJXxre5dkKV5ZAC33p\r\nxX2PABi699hAwb4puhdF0WrDC/QXc7/xpMgMCaCR3aPnlw4iRioj1jG1b4C3\r\n7W20471fVR+uGeb3bovvaBr22ljER3ePwgYt5fBEuvW3YZcaO6ID+5Ixabnp\r\nZdm0FWjTC50SnIa6Kvmh4I6J5QXIxtgeZf5UjHGVF+z95SBy1D5p56rTCMEa\r\nF+OugEhR7e79+kuikQW5LCKSwSOvBaACEAVY0p7xQkMVeB3labfA/g8BgkHe\r\nYD2LLU8DseoxAlmJXHUtbEnN42yJHmYERTs=\r\n=Zp+0\r\n-----END PGP SIGNATURE-----\r\n","size":28106},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.220_1660600952118_0.04302787148049614"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-15T22:02:44.150Z"},"1.4.221":{"name":"electron-to-chromium","version":"1.4.221","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1104.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2e92dd929e80bc81a2932554ca1d4aa53837d2f1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.221","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-aWg2mYhpxZ6Q6Xvyk7B2ziBca4YqrCDlXzmcD7wuRs65pVEVkMT1u2ifdjpAQais2O2o0rW964ZWWWYRlAL/kw==","shasum":"1ff8425d257a8bfc8269d552a426993c5b525471","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.221.tgz","fileCount":13,"unpackedSize":185149,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGM7DqPj/+TWhqUfMVNaDR/+Y8AMF6r5sWcomIg+QOdQIhAMifJM66I4X0q8yD7jUPBVeKT5LFH1uMsq7SdudafHs8"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+vq2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrujQ//TfPAWrF10tB3yDI/xoXOoTS3sTIII+SBW5gstCFkPWvEJMXv\r\nGDZufYKCv0GzmPCFWYFA5iuhcgMhzd5OoZl2oLuaZ1tO8olhYzInsur1RlZS\r\nGiJZFx7sir8j5RvSXQsEio+3RkzwPkCS1uVvWbTtZBYUB/LE0INl3wp2TLUt\r\n4KWKlKwRTrd8kuA9UoZ75T35KFPEsTzC9EL5q51+xUZrCiIdEAB3ux4rTFML\r\nmCPHtpf/kX6eSIJ2usT0rSI7P/4SJXROF5CHk2H6W9NbPhuePhuarogIhxi4\r\nQUe+omew1Lja7/3Y0Jk0CB6U8wHbkdAnYSN4zYl62LcU53zd+qd5jluXLX+O\r\nd8RCGSMHMZUbycE5KZ17gHCl8F3IU+Ly2Ne1N/vzSlUCBvI7lTub08u25dED\r\nHmsYVn1dN6eRUhRTB/8J87V0OQUX6M1RtSsenEFBNmvpqOxWdBuixAiqpnV+\r\nuZyv31rllhaF23tB7X7s9NF5NfPt0z80DHVde17mZ/Mzt117sUHKRptxtdy1\r\n8EX+A8noEBdLHwGDrCxUohLXRa0oOyeg09/5x9lEP52qPr6/FVbyzJd6r4b4\r\nQWdCOcQJ3ToC1cgQWt9ltcE9FI68ETUDSOraR9kxkfpMs5jjaQSkKLO/NBzN\r\nT+0pEdvXqdoEUPPusi3UMKPdK9hYfqgdmn0=\r\n=VJI8\r\n-----END PGP SIGNATURE-----\r\n","size":28116},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.221_1660615350712_0.3322473924220837"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-16T02:04:20.854Z"},"1.4.222":{"name":"electron-to-chromium","version":"1.4.222","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1105.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7fd3623e73ec7321d64eb9b9e3dd3705d09bce4d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.222","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-gEM2awN5HZknWdLbngk4uQCVfhucFAfFzuchP3wM3NN6eow1eDU0dFy2kts43FB20ZfhVFF0jmFSTb1h5OhyIg==","shasum":"2ba24bef613fc1985dbffea85df8f62f2dec6448","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.222.tgz","fileCount":13,"unpackedSize":185289,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFwkhePoO6+Xr9+MtdVAEQ59FyR8k46uCMLe6hc6DIlCAiEAxCArHgtaGDTPwBf/oTVdM7+4lhm1KyrSsUSJqlZ8Zrc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/BP3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrbkw//WJE9rbBepraC/m6PQ4JumutmYLW7/EAlQVSBWmkvayO3SfVO\r\nV90zqWo/VeM6rpeVAsJQ1lpsHaO9KLE1Q//0BSJGqbK7sXW02Z61/u8EPwtQ\r\ntXoRwZ/h0fntj3ErJPVvU7cn/SGvvF9NzZRG5F18KP47OqpDX1LYBJrw/AgY\r\nh+chD2Ghx3g70Z1hPM3I3Ea/ydzVUxAehx6gkL2IMcn2nZeXpz7efmEKAY5R\r\n+vrBteFO0CGi/epkHgGJozsOM9Ar62p/OMLnjTrPDXbxKwFMctZdfy4R6xzW\r\nLGPvkAaIqVE2NmdyUVzW76HxgV0Jrj23zLXrRAsPWO1SzkBoYsoVncrb+V/H\r\ncsCcYNhBCu2nEFr+RnxYHND6/V6RQEjlajk3vD+cOK/LOxMKlts8AdjEbEt6\r\nHACjiV8V2w/e3re41ZzLIg0DujqDPE+0Nd9tsigvWoUTgwPHZpciap6gs41w\r\npikauvQhYCnk5zNxV+3c29dFl+mDHW2gAAQxogfY2DH1HfQ9gEh95/DYOxl3\r\n3F7ZtOTnLdKJsxAgpVhFe0i/JgpJBN11woDRid7q1LM0g1uVdslh5iGyvidh\r\nnK0BIga455uIT1z4vbAskiIC22TZUG8h6AQHt5as8/4m9gAUbzeXfXU3ZP91\r\n1rIVNBXOqlXDoMpIK7cKkKOsBXD4lQX4pWo=\r\n=x4rC\r\n-----END PGP SIGNATURE-----\r\n","size":28129},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.222_1660687351129_0.41062020120641374"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-16T22:02:43.397Z"},"1.4.223":{"name":"electron-to-chromium","version":"1.4.223","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1106.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1c3f16a1130e7eda7ed3911e2f391d183841aa2d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.223","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-uWa+i2Vz1odvE+zWXOe23rW9UPLh/5X7ESUVdK8wmNg+T6FfOZbhyZEK1GuC8JqaAZ4VBFUYaTYHFPrAX6y5bA==","shasum":"a99fe80208721da36938e416791baf1543bb5da5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.223.tgz","fileCount":13,"unpackedSize":185429,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICbHGV/m7wwlqXHnc8yYq15QwFthjBm5Muw8bB02LgQaAiEAza8Yc6zgjlFOeKQhEqKqEBJCV8KcI46oJ3YnCjjae/I="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/WV2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOcxAAo0TVznPJYXhdUkzd8iMAmpG/j+epq3yhG0eUlfcJaWXc6LzH\r\n0VFHACwcklv9/Rv296gbgGJhvNZQYAgUdyBhAK6PcKIbq2fVXdiKan1d7EpP\r\nEJ4oa+a8jWe+HJ4tw7IzJyDd4EsCetSPyLpNa2D4SvS6GBvhG9kAXB52KM7U\r\nrLoIzgbGSFWssMD+9M+s+NFYC7v5OYv/kZqWqWOkKl9i0vmHG7dOofCF7F5B\r\n6PVy/7+mENnVoLXpzLlhFm15BMbuQRdEnnG0FXXAEKZar6z24BqO25XK3gin\r\niXIwyJyyyu+EN7atxH2mV9FFAxG0R/SMcxQ6JThMugRqDRAhVC5LzrnUhDVH\r\nG2+h1IGnO33rIYwpnKVqf/1VWnDlsi8Vh68NLjWRRY0lT8tXcxee08+WdPWh\r\nEZCnWdMsNg6IMnrPMD4/ZiXAykovgQVh7mwX674mkEFRycr/ABWe75udj/F2\r\nVRRBK9FxgqboiKQIuIrJqP90WkMcVAJ+8WWqIC+kHX64Z4j/0T7bc7l5x5Pb\r\nA68DLILZ4woe1+eR6mkyE32hdoUXQB3CGF4m0XDBdYjG3kRAOXp0tVvS2++z\r\nRaRZtPTlKKVZ47IweAGM2hhVgZRLHqfovdEHMXmjAEy2Jjxi9XYB6yJxtlUQ\r\nsQV/kP98+XG/P4QDtC4b0IFlCjEq1KRy8Q4=\r\n=OpWZ\r\n-----END PGP SIGNATURE-----\r\n","size":28140},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.223_1660773750441_0.8004550281672067"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-17T22:02:47.631Z"},"1.4.224":{"name":"electron-to-chromium","version":"1.4.224","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1107.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"67e1b26103d8efeb41d01298137fa36a34a10df2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.224","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-dOujC5Yzj0nOVE23iD5HKqrRSDj2SD7RazpZS/b/WX85MtO6/LzKDF4TlYZTBteB+7fvSg5JpWh0sN7fImNF8w==","shasum":"ecf2eed395cfedcbbe634658ccc4b457f7b254c3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.224.tgz","fileCount":13,"unpackedSize":185659,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEgPAyGMs/E/d9kxQHcBP8/rS4noZj+2mwGlNvD6qydAIhAI6jQlP1pc/i4I7+d0kcSVsK9f9G8t/E2RFoI84fkHU8"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/Z24ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCyw/+NZ5/yumLe+au8bU9esVvqg3xVyLFw2gU2TUBEe5SwJCgDrfK\r\n3AQG/AnhCuskToZ1GD7eZmpLqK5GYELFQZxHqRzosXQ34u5q9ETA4vxNR9p9\r\ngx+QTrEVvBmq6MWuOQQbu8wLY7I6KRDTtKa8UFrGNxF+dfIRYl9cENdNkooq\r\n1vwqznNgXm2xWBqlum1T4QnAQOYExg3sBGI1KGFvFtDy3dbfuBfD8GLmKnRJ\r\nu92Quxs//lHgG7jA37uInMj2hwQc5aV78Xh83iE35UW5EuQf+FsotVSJrmGd\r\njLQfgGel9Pq9xK3ro+kAj5s3HXy1TiQVeRFxGLGYbIAUJYewpiCKB4fCYrqt\r\neAeeXxgSEN1xLBA1fusCfWzlEHHC22cUdPGc5cuYZKN1DVN/050tQu5XsNHD\r\n0AfWaQiOvmEQmpu+MR7DdrRC6uwT/SFW1sk2jWCSQf2S4zA6tzPwRAjcFee2\r\npw0/dim8UzM6I2ZS4VNZrF2obX8UEKW/UIohICPLZUSGoZ0+hDSOZUw7eyuH\r\n4bx2efMjgQr6oT3USWoI94c5cGZDCkgXtg2tHq6WLNVTzDnXHvlEPbWp6j+O\r\nzNaQbpMQgUpecVi1lQORRTCU8Pu4rZNL76AFUlYoz1/3WV9+jGnkn/7Scb2J\r\nZyBlHuA2M1+m7JXUPpOcAtbEwWAOJXPW4sQ=\r\n=Vbd/\r\n-----END PGP SIGNATURE-----\r\n","size":28182},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.224_1660788151872_0.914222858066366"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-18T02:08:46.793Z"},"1.4.225":{"name":"electron-to-chromium","version":"1.4.225","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1108.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2ea21c71e3f86bf1af08b6a01d41a7590865739c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.225","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ICHvGaCIQR3P88uK8aRtx8gmejbVJyC6bB4LEC3anzBrIzdzC7aiZHY4iFfXhN4st6I7lMO0x4sgBHf/7kBvRw==","shasum":"3e27bdd157cbaf19768141f2e0f0f45071e52338","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.225.tgz","fileCount":13,"unpackedSize":185763,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEm1e52KIzmL9SDke3cxenhk244/r9XusaJfbW98OaswIgNXBxGGBFJfUoIZlNV3tj60aGAius5yQ0icvp5wR2zrc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/u83ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpvyRAAiE7QZ7ThpJKEZJrxRp6+jQIo96vS13V/IHIT9RmWqo/B8phM\r\nFOKTMPdpTIgxSp4i8C3jq3ITivlMcFNJ+UCY8xgDmW6DsHxBGjHYc1FmD794\r\nhD1Zzb42lieFgvRE3D3KwY03mppBbdG2X9Xn11589LNu4v3dWmERi2Y4SyQG\r\nrboHErdItzp7yEP1mNWYl2nEP5JRWzXAbuWLp3LADCYb02o0I0DVtXdizXFe\r\nRCZ08pSKXCzAfwaUi3sAdL2AoltU3aPfwKU1HbwFGBbOZ8BPZTsAlIXDDqc6\r\ncLpha03wJFrc1i4hF6eWq9JDdYmmX1XYsnCD6oIC6ic4ZxDqGueVHn7UB4U0\r\nL9p5fOtnuG9dOY0daH5Oia6F41mWS6puL4vTGYcUtvETXfzXpcKJzjsVLPCN\r\nVN8KfR+1mcx3g/YoOqlfA1yCaxCC6/OGYVVeKvGGwu/vCaccxBmB30WGiEes\r\nt+YA1OotPhgs6WsV27fyZ7rT2+S687YWvL367OtyixwKRy6183Lh9jcBdCNE\r\nRPav1UcAYzB5OoL7yRIqKW7fU1KUVFiW6Oqbhi3/owUcRHWhje1bDPwe5t82\r\nqO2dDYwPZjvLA8wGh6ZshTruQO9b94eQiTGOrHQghU1z9BCkz50woMEyPrCh\r\nXUywkyf1tr+NqPN4iSgIlWrSuIYaC1Uxfx4=\r\n=hLpw\r\n-----END PGP SIGNATURE-----\r\n","size":28190},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.225_1660874551062_0.7118353229575594"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-19T02:02:52.456Z"},"1.4.226":{"name":"electron-to-chromium","version":"1.4.226","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1109.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"69f1ace809cbaae080e14a1a2b978e2235d6c713","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.226","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-CvevLaSiUp0u12K0e+QhMX1hn724nSUNO9ToBek+FMHk/5RofrQs5MChjrD0re0IwqxDFxFMSZD+uic05i2Z5w==","shasum":"837ea1d19b8305a913cd5f31d135681c4b6d63b1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.226.tgz","fileCount":13,"unpackedSize":185942,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICUbW0QyEhTU5hIdKEQXF5EVlGsACeS+yKM3cT8qRJ5MAiB1gx2l+e013jpx0lUaYsFF8+2IB1hIKtyPbxE/tBb4oA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBDU4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrkWxAAlIHceZ8wRC7nq8UhLrXeoX9AEwO9YD6r5FMI2qqv7w3b/DsA\r\nNnWOnHQ2hE5LpME1f3AUmNaf/t1dreDhHQaMJXR9E665RXlsvPVUNYRDnos/\r\n40/SQ9IQPAm0eHM/GEEt+gmT3EWEhPjk4gUE2/WJaVns8HvnfFKlFLZzLLvx\r\nAsQnZ7w11/jScVGqXp85bLzAz2nQRL4tKplwzZGhg08cyRhHP6BmDT2C/OyA\r\ns3pSUqY76wSVFFYk6HygpySjaAUzr1MYmSVgQU0b4D1wbAxCdXNq1tT9bzSb\r\nBr6MjsxYUe8ruR+cxOov3rdEmug2j4qs9S+vw+z3FtkSrWtVb88ySAStUTGu\r\n4vFtP2FxFIEZMxfaTlr1ZoFfW0rLm7vvKBa9x0dlW+MWKLhPF9aFhMp3DR51\r\n+CHrQjqOKtZEbxPehpbYuLg/GuulO5N2fBBr8QG/EP9oMukXIaz4jcc7L6yQ\r\nCuv7p5jBSwEBEtnXkLBiqkgVDUArbIVfDiUDJSrljwqazKe7MIIQF5hTackh\r\nQ1iT3usWfulMTy8pJy0fzyYQR4goXSpBKVNpGDUjsE5Nn+HXPCKd+jorMxO6\r\nTmyyrgX8+fucKpb5Tm8RGnXgmIn927hOlOoKOqolhcmmY/+/YZI4e2DbAfsZ\r\nNHpAwp5f0k9t/LjO+yaNwZmpwlt1sjieVh4=\r\n=lFYR\r\n-----END PGP SIGNATURE-----\r\n","size":28241},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.226_1661220152076_0.8533082008769532"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-23T02:05:09.369Z"},"1.4.227":{"name":"electron-to-chromium","version":"1.4.227","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1110.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"58e900e81fe60869c51c2603bafd37817b98d2e6","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.227","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-I9VVajA3oswIJOUFg2PSBqrHLF5Y+ahIfjOV9+v6uYyBqFZutmPxA6fxocDUUmgwYevRWFu1VjLyVG3w45qa/g==","shasum":"28e46e2a701fed3188db3ca7bf0a3a475e484046","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.227.tgz","fileCount":13,"unpackedSize":186046,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICCnHa/VjJ77e1D5aFS/gGmGfhn19pDVTL44n83Ce8bcAiAoCFegRjRfnvJv5/NB1s421w0ed3c8noNX3dZaOLserg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBKW3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqbHQ//flsWwIhHoYBy/cuBYaklXYo2jsuGoJvr7NyrXO8qQlPIz5o6\r\nRoA1bsKPmirSrx8WchhStptgTM68xz1TzpV8Vt9BADEuGo0kyjpFo+RctMzg\r\nmT48qVespi46XT3L1ZEPV35eoH9mrOr8s/UQ2rIjOZR+82IOiJJBDNYxR+y8\r\nfdT7YHMZzdUJZKAF5JMb5Nu/NIf087psdFEvzKFMHlwOcawRzXVmWm1SUFIG\r\ne/OrjA0T7Kp8rPUkGzgIDnC+VjZqNfGsCTjaLqay3HD9Rg/RzGyGmxEWQsXK\r\nvCeBL46TxkzYrt6D82AIahc71DuKAOB9lLUU3kAPiohv9BBMrG7a2itxDvDh\r\nP44y82iMC/dCvNzTztFxQEHUWznmIjhbgRB+kb5CPRjJuGMmF77hR/OuvyUw\r\nzBWw/DD1MhwMRLzwMZAH/yttlUQTWMrDpY5TvkVbSKh4svZxDm1wH6mU0Zkj\r\nlnZY5pK2W4HM5TRTypdpYSDT8McYdjD6wTP4T3GtYUJMltQ6GihRu7Fp0otF\r\nHy1ub0IdaqiCG+hYmMb+YNyvPEBqEshcvif6b8TsdtjWRCIOEKiqUFDLAE8E\r\nHzE6lnZTeQWQj2ZTxwPlnCIlkB0F34GhtOAjWn8JRN3QpYn+lzGy4Kam1IGB\r\nhB8Ko/3oNUs9MmphhyzTeNeUaNsNTJAw33U=\r\n=a7OS\r\n-----END PGP SIGNATURE-----\r\n","size":28255},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.227_1661248951574_0.7744952133703495"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-23T10:28:29.036Z"},"1.4.228":{"name":"electron-to-chromium","version":"1.4.228","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1111.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"84d7b1300a462249a1fc009d975c419ea3eeb911","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.228","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-XfDHCvou7CsDMlFwb0WZ1tWmW48e7Sn7VBRyPfZsZZila9esRsJl1trO+OqDNV97GggFSt0ISbWslKXfQkG//g==","shasum":"3baff13cf54198c2045f9bdd8b64db93aafd7f33","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.228.tgz","fileCount":13,"unpackedSize":186186,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+dEyVB4gRIt5loIk+HaHmqq8iXvCppmlka4CVyzUaoQIhAIUu1uMxPZSwPeBmluJC3cs2jbnH9apZpXBJzJVpej95"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBU52ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3yA//fnzEYChY7TgoQwbgss0KtW8gtTPpcuFjT4AiI+cDXAbRbg2R\r\nNTU67MsXUZQ1PQEQQWMTTv6+48WLfpGSyOlggAQv3kp+XZyMUvLywuOuhKcH\r\nYGxAtRqj+hTnFhXIhXkOAAc4M0QJhvpiFCHlaAaFI0R/cDEFKQ4RaBn21QPn\r\nDUT3y0ZlEVf8O7iKD/HxUKHvuNnFvSIawN1RmhURJJ95ZCbrmSiguyTR6xv3\r\nJlUUnRASQ/5t7AyO7U+SwM/jYcPr7kWwaBZAlBUGZ3z4e155hJfJ86V7zuyX\r\nqV8P8hVQNbHJzUL8zflFLZyD8bstaZz+M7yKN+LO6Nuote/LzAfNUU6KE4PO\r\nZb7C1iNZAwe9a5Os7G1HX4wMgMRAZpmtAuA89g5W/iz1h1imKzXU7ywSNqKe\r\n5T4Rkphk0ASfq+LN+Q5VdndeYMzPN3KHM4sn2g9tuhyZsDgOuEaH+C2v4ing\r\n1Fy1H2mUPkpcbw7v0nF1aYiFdU54sQXSbc2EtEfsNsdHufWWYaTeCmY2VmRq\r\n9x9BIDLrb5C4dK/K/nwvLHdDa+7w8n8QYQ8508kDpnU+44g2bRCsmpzHvyEn\r\n7SPgSSpQIawR6PpTM60C3mpgw1XzmrdLdVdHxOcliyTFiBrqJ87MMwRfwliE\r\nVWbS9il8TAh1B9lG6Z6E1aBl4F5lIdkGvR0=\r\n=Nh0O\r\n-----END PGP SIGNATURE-----\r\n","size":28266},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.228_1661292150825_0.1563134540823381"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-23T22:02:47.671Z"},"1.4.229":{"name":"electron-to-chromium","version":"1.4.229","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1112.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2b406227e32438b721e11a019eb210b99f0569c1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.229","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-kdye32s/padLGpiLzhrMraBBs/M5hDspB8PCdCP6L11AJ6dw3Gg3xdvT4b4pqWaW5tc5oAwCfKCS+PAsZM3ipw==","shasum":"506107e357a59e3241f69cdd1a179626164ddd86","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.229.tgz","fileCount":13,"unpackedSize":186326,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgLCw5XKNkR0ZuRFzZdKw0+V5JIMgL+Uwaf8e8J4//YgIhAMfl6sfvGamq+l9DL09v2WsuOQn+YT8SMxsEFrQFqZ0s"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBp/4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFXRAAgN0i08F/Gjs1mz3ehDAlDQ35Dqn4E6WY0RkARluL+UHgQcTY\r\n8iv7bgdNzHjnwfrpSd7lwVZkTkXvJ/Epb1Kr2IqlpamlI+yMtOR9qbDQn3IX\r\nXSGDXyLqQgh1qh4Xgolk+NzKbvdbTrALGcx335l47fmeGGJqF3yiN+rnUIDB\r\n4zQaCOMmX9ex1XRdUYkYl0ePKgYVsWmEL7LGf+cZMiwfIG/JmmHlABE367WG\r\nn8LkB/itwyGvNjcoM0KHGUBquRptjmr/J3VrwkWHJpVfBaq/uU6yjGIrQqgE\r\nqZlwcTIj8eI9fmpblrDH0j5n+Yc7HY0OjKBH+8YZXYvOokKpd6v2I6P4u9TW\r\nOm9NoA9/wPDljNW9grSkJ44W2zKgAXcI9d0ihHGEze6rL/uYndEuelGusCiW\r\nfCrqTQ7CD0ErGiNannZKAkZhbXcNuplsfTvrVPUJObbxf3aS7UgebdpdbIE4\r\nql6NPR6RB90v4VgNFMVrhC/rkHg72/OLo2oG6vLbnpAwHpkP5wYv3PW6pZ1x\r\nxRMCizFqu2DI0LpP4hfBiR9yCYNv3Yqry/zfmjPRnkutHETBtKKN5qcA9dQS\r\nk6COuqXeklvqjFdvo7rqdT7I7EhT/jYSr/2P7MTpQt0d2VM8fLo9ihWRo2ZG\r\nshS2VtneJmrUA2QVz4bSUljOdTlTCl8WBls=\r\n=ezvm\r\n-----END PGP SIGNATURE-----\r\n","size":28281},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.229_1661378552048_0.3254411485894193"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-25T00:20:18.538Z"},"1.4.230":{"name":"electron-to-chromium","version":"1.4.230","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1113.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"39b6adfceb51c6c06d8481b1d962a519a89f406b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.230","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-3pwjAK0qHSDN9+YAF4fJknsSruP7mpjdWzUSruIJD/JCH77pEh0SorEyb3xVaKkfwk2tzjOt2D8scJ0KAdfXLA==","shasum":"666909fdf5765acb1348b69752ee9955dc1664b7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.230.tgz","fileCount":13,"unpackedSize":186554,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPkZQRrbcg1KUI8dSrGL/1if/rY48tKf3JH/A8WZ5MxQIgXZ0eGyD1BhN+181jHdKvtl0zlbA0XPX1cWQsKCIFYaA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBtg2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmol3A//ZRnEirq2CefL7oQwrz9nTSvkEtnJPSt4DcUdknif8WyckJ9A\r\nw7ggaY1RUgOvUzMCuENFbUUZZAjjeKL8VUXs6S3b2n49ZyntuaSYOAkaMqXL\r\nxP724F8vBMA1jz+kH0z/TntddEqZuUJGTC679qRFk0tXSIudlJ7mzAfaD53n\r\nA+5WjLMBJs8OA84zlsyT5EqSxQqn4fjcY/X0rKtX9ObQ66BMSNUeC+c/BBxv\r\nTY3C7vrwkKQUySPtwWcgYlqe6BFkcaZXBx28+dyNpePIMKnfSP4IXCd2iUkg\r\nKEFrz7tN32VbH6SQOzDv2VcP5C3klHRGXCwNLT3B2QS3M95XaRbMLlf2HJdb\r\nWnD0utUU3RPxCNXOjzBoFmUNOHEHutF+BJWZ4LBOvsIf4ak0nVGlLZn42jQv\r\ntcm87Ft7LmEHJq/PWVWshx0vaWsfOKccUeypeNez0RHQM+v4cAAoeeYjlSpP\r\n0QwbjX49+LRKWDPosp6cTivulYGohOVI6ksIg7jdk5w4PrAR9O7K4WPy+oks\r\nmyLJHzqlxpSI9yqhAhA3w74LQ07fUSrnwYq9lNGRlQ8qRpQirsBqVstC9blQ\r\nU2dKAdJrXKKTfaK9OwVfiljkW9w/z7YVQ3Cyeen3aXn9nSxRRHe28GZ6/OIA\r\nsB1nk/BlgUNoHC9E9HuZazkSZ1irIU2iUxM=\r\n=jZdC\r\n-----END PGP SIGNATURE-----\r\n","size":28328},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.230_1661392949901_0.8614226073837279"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-25T02:04:18.096Z"},"1.4.231":{"name":"electron-to-chromium","version":"1.4.231","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1114.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"589289d3a0e07e4e08df025e3fa29bd5016159d7","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.231","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-E8WsUC60chToZUfxvVUXBb1U/mR/Df3GFX+mO3edtQnRTUt6L2XgpqBVWcGD/xrzQdINL1g/CEBPPn0YJ86Y6Q==","shasum":"ae6de219c20aa690bc3d217ff151b208a9bd8ed6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.231.tgz","fileCount":13,"unpackedSize":186152,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7Y3wy9WFzNtX95dhZ8sbqv/3mxTPzC02wGOMuYo6/FQIgfDawMkVYSsgoAMzg9qqblC9hoC+GbFCTJBe8GESBxdM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCJo3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4fBAAls0D7cimMnlMlQbAGj5zd6bfXOKbJODGpyRrmv1+6n606HVz\r\n5NDTf0/Iv831MtkNjcFoybZ1tvmpPp5+Kc0U42tZ41u3RpWPPEfJD+n+bylt\r\nD3n2IvKwrt6WA+K49cXqolT3n2kslcLrGCfCVZI7PLv0lN02VEducaEVwVJD\r\nXRDr73PNdBCraBEpxAK27Se1fIHAFeQEpITZIuQnM5vzQIkTIJmdbve+rn9a\r\nXwBLLiDSEGX2heNXCZOXhwhP6/Q5ssb9Re0qqIbv6buHebDonN01karbeOwV\r\nVSE8qyPJaL03J1A2LaSMe44PjNHYxH59RmR/TNEZb9LvA7zFx23FFV7+AIud\r\nWRQ/625/Al+wEa7FtRAKtk3RqjMp4Gwi3yMh0PWwKECjACUQZxoG0bfKqgwz\r\nCUtviCwzsQx70Eqp8jpjpiz1rsbauePdb2UG6prFNyQUvNwdKTUblqjuTj7+\r\nB6nyqvKK3y29Z7b10gbwUG3cFp/5Ih04Bk40ioKF5pmrMhsIXvm05AljXpDy\r\n6R/Z22/YbxoO8LLAkulbgRHGiMdJ1KOIEOR8UPvkDf4C+GFs7z5c0lU6Pt9A\r\nzK+xM1+NsfTL32fpGQAfBmDA1v623nJmM9fh3DGic/bi7mcNsyPDxbGqv/UB\r\nz2DsfyCquszfinvN6Ox4V8k8YpQa0Us1Hr0=\r\n=a8EM\r\n-----END PGP SIGNATURE-----\r\n","size":28284},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.231_1661508150766_0.27423399480934463"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-26T10:13:56.958Z"},"1.4.232":{"name":"electron-to-chromium","version":"1.4.232","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1115.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2b75ed3eb288db49cec90762a2a806871fc34a0f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.232","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-nd+FW8xHjM+PxNWG44nKnwHaBDdVpJUZuI2sS2JJPt/QpdombnmoCRWEEQNnzaktdIQhsNWdD+dlqxwO8Bn99g==","shasum":"67a0a874b0057662244230d18d3a9847c135a9d9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.232.tgz","fileCount":13,"unpackedSize":186554,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAG1wQM1yvDiwpd5J9tYCgG7u4ouEPYBzOMnDVQr82J0AiEAy9V6iasIT7ajo/nUhEz+Q9ryewni4U0dnMpBaQqNNMQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCNJ2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqEsA/+PwB8JXyYSxK24wALeNfCeMIfmAIbDOMsej/bKHGVCyejp89Q\r\nf7cSmrQC06ukQPXfPuBxqDuV+jZxajXRBRUfDbhfteXrxD2szxne8qYrMYDL\r\nt7MQAMxijd6svIYrCARmttnOLqElUDcfKXi/IdtkAqELN/d9Vc6LLTDnc1b+\r\nzNKLDFMSTWdTf2V+NZGlxn/sFYDjdkFrjUmgeIDCWUqZ7iE5v30yWXbiQFew\r\nF0AvMKd8jOOHIe+CZPqT2Bs7We7+CyBNZUPHa1Zn338OJrmev4eXM9sXrhfL\r\nCHkwsEornTKvxLYqzB0JBdZZknRfSGc3Eyav1j5GvkqkwTSzThN8XMea1rUY\r\nYCpvhrPJr4Wqzikr1fb0BCPtHMGxPDNzsFjvT+pYYmgatjjUMEARHw3CKScH\r\nuh5uIt/Yfox14m1d/cad33nUCp0xOCatWQ3xGA4mCxpGBpyorYjo/++QYwk2\r\nmIeLl+oloPzweKWFeYVE6KqugqBxflKB1fq8hSisJ3HEJ4Jl2Rd45OtHjMsj\r\nn2zYlXRs+zKEOCHNM4iB1Q1N0yPcsQ0c0bcUpXITvN7keWU7mV5WU13/xQpW\r\n0xribYiTFOLN3CQDbyZVIq227grnqPKFFpF8R7c6jmDKE7XGzqdarqM3YBkV\r\nElUu6VycWg7gL3i9Vjq5gyluWHrFCVP5Rrc=\r\n=Y7MX\r\n-----END PGP SIGNATURE-----\r\n","size":28329},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.232_1661522550030_0.15187176095843946"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-26T14:02:40.918Z"},"1.4.233":{"name":"electron-to-chromium","version":"1.4.233","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1116.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1cec5127f2faf396b8ff0cd975149d80613d36fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.233","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ejwIKXTg1wqbmkcRJh9Ur3hFGHFDZDw1POzdsVrB2WZjgRuRMHIQQKNpe64N/qh3ZtH2otEoRoS+s6arAAuAAw==","shasum":"aa142e45468bda111b88abc9cc59d573b75d6a60","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.233.tgz","fileCount":13,"unpackedSize":186694,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHPR56yz8c4vinJiay9jMI3jz+Ds4AYn5ZIz6+UhIY1sAiEA8m6APQwN8oh4EZn5hfPgdztHu8QPSHBsxSXUD6m1BVs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCXs2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrCew//d3obH9hmwalEvQZAbxS4WluO35Bf0FxUjtwrUOwudOI8JaSq\r\n11rNKoh8blmuvy+f3Ntpx2RDL74FNd5xWVrMMpTXwYCTcJRNlVO6w0ncY+oW\r\nhGsd1fjyJHmQboyN9Ku6dJcsMfmGWuMGNhybTIUBNxOgmpumOyXrnVqYMXwG\r\nnJgk2FOWqTLIE0qF0h+/yp1zNY8KfLwvH6pNrGTbwUlGOnE2HqUIkTdgIBi+\r\n8BztC8rnAv4tZJxJ13Vlw6vGSzhv6kCaZcERFyCbBJj8RiGR1ymIqSPYIk9G\r\nZhdg04I1aknEPaDOmb6VGhV7rl1nwx5vIei6sgYSyHk87TqjgFPd0QEL2B9k\r\nid1fg79RgUnw/LH6My+RSoew+/8cGZwpMd9j+kQrcaAa/D4GzLe2DKa9fFfu\r\nbuUEOf7tUdm3n5T6Yoob+Jp3FIa8xFKbhKYaExdz/e42DJhy5gdW3esqapSc\r\nb9KMnX9eaXgOWaUYK1bkFPSAe7g/Wtc2TCFhzzzILTIQ1d4dhHEwL/pg50D2\r\nM+aU9hh7vpvde22u/EU2ryrXZvS80PfxlnVEerAlmbm+kiC+L9G/+b3/puOe\r\nR2n/uGlu13nyZfd2qu0MxG8Q9eWeLMsiC/YhsiGseSi8exVIe7MelVuO6PnP\r\nGUIy7CImJT6RSoq1NC0ivbfHsae7X2hNz9M=\r\n=Lkmg\r\n-----END PGP SIGNATURE-----\r\n","size":28340},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.233_1661565750462_0.8839620497127341"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-27T02:02:41.093Z"},"1.4.234":{"name":"electron-to-chromium","version":"1.4.234","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1117.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"934f1014f2846611947d5718fe98f6257bbc0859","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.234","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-VqlJ4Ihd9F7eQIfwEtf7C0eZZDl6bQtpez8vx8VHN9iCZEzePZjr7n9OGFHSav4WN9zfLa2CFLowj0siBoc0hQ==","shasum":"ff8fb29c2edac74ef3935ca03a2ecbe62ede400b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.234.tgz","fileCount":13,"unpackedSize":186834,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGLMKHGLr8+qakjYC6arrqME/v8q9jH1KsEoRfFcSS3uAiB86HBELYGdj2iSbBtxI3He446bcavLYwgPxnC7to++SA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDTd3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrpvg/9F1n7V7OoqnCQKLiXGmFXlEx7TFfU+aANa5zWTGW5KD3j7Ncj\r\nqvwTIe1oNfMMir00CCNmj5DmBn8Yyp3SvBt1IlbUEbo4vnyaVyC9j4tBAmr9\r\nDGD9MjJDQFMnkUkyhncR788dhKJAw70tQqqX23AiU7II6DGifMB0VZCdn5su\r\njZlw/96anA+XgF3sesy29tsSoaTLO0GTYc3sgoifHhzhm0945MSKvfzzYx6a\r\n/DCj5RicYLB6fNcwy2hkDGOFbIirHZjF6AzQxS1Ttco1pdVnBKyUw1W1f/cf\r\njaeijK6kOri3ucPUNIZPtv7WQ5wkrTmA/8Pb06kCtscwAmXGXOt/xwB7clfj\r\niLue+kEnQFzxvK6cQJbj8FXj7xY48hou+GajoqCeyqKFYNu9gc8K1rzo4kFx\r\nAYtJvcANFiODrprgH/596N10Ykfd+G+U90Jb8wugyDQjpgKF58AXBa6SWXGj\r\nJwehSPoIg9zEnje1ATczuooNg86yZ2if2rSeN2lHd5CfN7l9SXKXedmh/84P\r\nkcSsNLlZreaAC22/gvguEsnXs2elPd+rCMEUq4BNml0E0uI50E9x0qPfaV3X\r\nevHhLR3DEhdWuT+ZCNd3baZhgifbK6fVvhde6PEUUVsgp/YwOS2g8U/MmLCL\r\n5euSya5ib2opesbMIZvaX70DMsLZPhOZyxI=\r\n=24dp\r\n-----END PGP SIGNATURE-----\r\n","size":28349},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.234_1661810551114_0.5685070037504247"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-29T22:02:43.362Z"},"1.4.235":{"name":"electron-to-chromium","version":"1.4.235","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1118.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e50b8f73596d857ccd734bff0241d09ec0a5e928","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.235","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-eNU2SmVZYTzYVA5aAWmhAJbdVil5/8H5nMq6kGD0Yxd4k2uKIuT8YmS46I0QXY7iOoPPcb6jjem9/2xyuH5+XQ==","shasum":"48ac33c4e869a1795013788099470061463d1890","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.235.tgz","fileCount":13,"unpackedSize":186967,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgm3ZqykcNURZof8E8bZ1blXJp1S3fDu17ZckG1ATYygIhANlpZ9u73d7ZFrwrij+I5x+n2Y0muaIps2CDwth/aGlT"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDeA1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoD2xAAlt38lOxVzWYQQtNEVuVF0hvq/+3tHaUL9L8eeOlHbefJFpS4\r\n3s8F+xb+rBSB0JYDtoR+0tdgmV2nXZ6V05D1j38a8FcR2QMxNzfPA6EI01B2\r\nbsNxYRpOBpGh5Rkr1mb/f5BgFCd7i7r47hV7hv29Y9+V1vh5eb2nBNBVWOFk\r\njgGIqCvDYuZ3XVey9TaMXPPt0hsQkKpRYE5pGyyhPnLJG2jEEKS/gMtkHH90\r\nMgva6sBPnZzsojJsXeI8YqK5JDq2MQ569KsVTpQbbd48oG9wVTeU8yIFXN1g\r\nVrJcgokqyBpKmtiGdOXTnr2IX5Lee9SlNrry7/F2eNc7KPVGZEpxWcMmAiev\r\ngvIGY4z5fKldPJF1FhQSbdlj7uIJZul+4bO879b/Vcg8PPj3ZGrR6vGbZOJN\r\nIWAYTXcQ8pc95poGtlin04Uqb87a11qcqZv1ZL4WsFPTTEVpI0b6iCKc8L2e\r\n/3NAxicUw0LAb2bDeU0F+KcN5aOq50/18/W1cgN1R9jFudUOJb5qFhY88pcI\r\nLf9oxhawaLLOVXmFpbHYAqS3x6PWHstpWvIgxfSqjkdSPD1J2qwvfdnrtc2k\r\nBkPjUJjQkqGV/1VQk0bQF48lAQ9ZS6voaW5Ddg0ulSUs1JD0atAqSqL4NXHe\r\n2NDw2P51Bjdk9ChVY+k3iDggRizHJMs1hxM=\r\n=E5kp\r\n-----END PGP SIGNATURE-----\r\n","size":28369},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.235_1661853749328_0.9294754691156535"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-30T10:12:04.813Z"},"1.4.236":{"name":"electron-to-chromium","version":"1.4.236","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1119.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5e7fa4f8651d1c394274bd35162d00167f09e4fe","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.236","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-41wPRcb9OIpB0RMLnIIDbfbJ5IXwuQ2qAr0jCTSpv5s7M61MazcBGS5kovW5E28SGxum/KR3fm2imswjdlTWmw==","shasum":"48888ded4b80d4dee87501b1955699156fba903c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.236.tgz","fileCount":13,"unpackedSize":187107,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLUwK3hTUHLDrBJVQrkJmbnkr6GaYqhbet8wSmNz8eYAIhAOqtuvZHemiu5mU1hvKHbXVa2thBPvmQpSnfZG+bvUau"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDoj4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozUQ//UOJwEU0XW6yVNY261PWBhim2C5hmEJcK3fJ+W1CLxDaKABND\r\n8Kk0QYLtSmA9c9tIDjFQkzviVKCeCOV6/TeZkO4tf+gHSlrynDPibER0yqs5\r\ngcatNz8eYDVstNm183x/EaxBoJUbg8vVyth63E9MBXNVf6r/zOYmYhm0/C75\r\nDousc8vNz8kJKsN5HVTpbU55UhvaDenE2TqCOjawx/jOfCOK5HA9B/iJ2ALH\r\ncJ4gTJoebbjYrxMR/LOxsflu9s25cxldOOdvEPRg0pIZy9N8CuzZnUd2lZIz\r\nl+ZON0xR4koKpZEylABNhENaKLNjrdGxOmEZvwRyv9cuCWxZCbxchqlKUDIu\r\nibgQN6PS6MhnuixTJJtNB5zkmktfChs5MXqu+JblYA8Sn07Zkmg/PwYTG0lS\r\nWWcaTmoR9ruABOfI8flWLxYwTKLeTSxtorVHmEVdWtAIMZDsFXhFCtmGkaVP\r\nXlVSYQyRCh/9iOTqsMUTPVPbtcuY3VigqZ/LiLE7zTDrlZG1tLfpP2uRdT1F\r\nzQZPl5fRh2BXZmipp49rLWOoWWTVnhbFZbTq6EV2tRTyYtJ5g3i+Rv49XdVy\r\nVF06Q4Vu5C38aUL+g4LlC9S0lgOqtAm3nhw2EYoKhBUh6+JnMvOaFR7FFJ6L\r\nV+lmZ9FWk+Rc2ec2DT0o1tfyHR/Uq9Nl1sM=\r\n=BsXH\r\n-----END PGP SIGNATURE-----\r\n","size":28375},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.236_1661896952660_0.20558879748063053"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-30T22:02:48.594Z"},"1.4.237":{"name":"electron-to-chromium","version":"1.4.237","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1120.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"126f98f89a6ffe7788a36aa1f751ba35fa404a0d","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.237","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-vxVyGJcsgArNOVUJcXm+7iY3PJAfmSapEszQD1HbyPLl0qoCmNQ1o/EX3RI7Et5/88In9oLxX3SGF8J3orkUgA==","shasum":"c695c5fedc3bb48f04ba1b39470c5aef2aaafd84","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.237.tgz","fileCount":13,"unpackedSize":187207,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEM0G3Wi44l90n0YEiOw8rKu+eZD6YcRtt/JHiQcBbHQIhALLs3g7UCLI7K4cCUhevpcOrpGo9vd4yGaEfOCmWFI0i"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDsE3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeOQ//es7Rs7uVLYsg3tUB4fZQjtJahlDL3LZulxY1SLGiYXpZwmdu\r\nFWlJdqrrWZ9Vlc2aw2EQuYuzOsU3ibaXb6w8imFeks/EECLkv35GYghyLT0/\r\nRKuq+JPgmAdGmAvbotxk0AYbeyDplWRsD2JGDyY9teNmBr6uG57H8W/3feVv\r\ncO42rL8cxzDGbuo7LHPBKz2TNEfCT7C7+PpKb5BFIfIdBQu2XtBkv3REg3md\r\nmMDRfJBSNwrqWXweIIHLgDmGgSd5uZWk5YS2dUqP5q+1nceNrz3/7KyZrPdL\r\nfEpk6bNDAzzC0b04y3bsuaQZ2U9ba2yynjGeh0ucXujuH8p/1kaGodVMix7n\r\nZ8CYLUx9bD8jgRQ7Usll+Mr4J67PDMXmOPmGj7SM6XVSzId3xYV7qmvUsfTV\r\ngj/oqsm65tyzFg9EwxbzKpT46iKU+7xRmvNzhXD+DSZRSQnt+JSG6yGub8JX\r\nfXRFxKAQm1XFxkpNB0KzRi6s2iBA9VUkIAVK7o1CQRXnh2NnIYZoMKPZoUIM\r\nhxYgzDaS7fVLiH7ljbRdueBHXYNrCG3KeI12cIryuThUwCclUlx90hDOhdQz\r\nEZLAaI+GqS3T7AS5S0VxEYo565tHItJwVijkvLOORcsOPF/xG1j9J3Bbe/AR\r\nBLtbNtabinSGnQcQmtAiov4oKpZYL1TBIcw=\r\n=KoJe\r\n-----END PGP SIGNATURE-----\r\n","size":28397},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.237_1661911351334_0.625405883026853"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-31T02:03:12.567Z"},"1.4.238":{"name":"electron-to-chromium","version":"1.4.238","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1121.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"242bad5fb1600f5a3a55fd7bd4ff5998f22a3e69","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.238","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Vcw+jaLrdCj6Ds4p4FpVYn8UBa+DSRt4FwO5r6+6xifKbeRQ/MsC0vYOjLYkz4JJGDi/wZkjrxuZULn/E69w9Q==","shasum":"eff905365e7a1ff12e53014844cdd4608387c21c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.238.tgz","fileCount":13,"unpackedSize":187347,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE+oKBJx2k6JYJ4LD1l/CS/9UngbBnDNa1ob3nNXDpJwAiEA4MId2GV1FxDSyCSTZuUaTiuYvLTpbQ752tybv1v397I="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjD9p5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTxxAAoTfBvFQ9xnKRuu2NlNOLagneylA0VoG1WmdBJxeLbVocI4b0\r\n6PxfCMsaI8mEvQoFJObL1GRUPXjxyUt9EE975LwRb5vXj+8AxbU5WjhpQCrp\r\nsWwNtAbpughNQlYIm2zXCxZ364J0sv7CAUIgF3kN60hgAEfCvRK65SybrCaM\r\nl+0UgAIuyHZJn77vIKfZPq7ybyGKj2opLjBUb2bILfaQptMpMrRtTI6aMV89\r\nnOUM1WtK92BGjLQarAn/6zPSAVWAUIir8yc0EBWtHpAWs51OkGhR13jdkeii\r\nhIuoz/Fb1+/3v+sxo3yAAKThgoSkHvHMtDSNB/vS21D6mrmGrLLkOvnKD+IL\r\nwdHDjhcW5sDYA088UFjO/r/C8FVcEjCinWMjIDHTHuVkwCcxSngZaUrBuPMS\r\n60DzEl0aVdWKj5Viwe5gFYSFUzg0vr3B790W4ea9LGz73zaCXOfdjblNPZDm\r\n2qJttI+NC/HIkNb9kkLkpxKYN05fK6vqPGUXVYLz9Zkm5O7GlYzibMnqbZR9\r\nZ0VuLsVtCNBP7MgyMe5kzrA4fYYirrWA9PiHG9PAIqQm6Y3ot+fe9fHdXSAR\r\n5E0gQG7JYIP+jBTs3huQ6hdag+jTaU/Ydr8UKiXtY3h4BcdypQBNnlpHzaMi\r\nHPiptVPWRotgApHsbiSxBoRAIzunXZ4T6CE=\r\n=FCX5\r\n-----END PGP SIGNATURE-----\r\n","size":28417},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.238_1661983352909_0.8621859350873902"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-31T22:11:36.799Z"},"1.4.239":{"name":"electron-to-chromium","version":"1.4.239","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1122.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"4a099a02499f6be67d8558f6a2d64b09c84ecc10","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.239","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-XbhfzxPIFzMjJm17T7yUGZEyYh5XuUjrA/FQ7JUy2bEd4qQ7MvFTaKpZ6zXZog1cfVttESo2Lx0ctnf7eQOaAQ==","shasum":"5b04acb39c16b897a508980d1be95ba5f0201771","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.239.tgz","fileCount":13,"unpackedSize":187583,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFCDtlODTeATlD0RYeRLiUFHJqTgVwV1Qg4kfvopxKAZAiB6djGb7Z15BJiHvwkM9YbqG6EAO0h10O9ebFgw7RcFKg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEBK3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoONQ//UxN5JNZaxqnjsZ69YKkimrvpHOUOXvDOsoWrY86A6PC2wJ6c\r\nAgcCeZ646sRkafI59nRaEg9tqtoIHAUDOxNfX8duM5/jum8YKWSXX72xOTdm\r\nAKZd/0c/H4iXxrS6yWGMle0Lj4WrAZoDaw0sw7ry3gFEp7TT5NWPfMBuTkVw\r\nfZ1cEGt9eEa3/7Pc2ltRgam4kVGm91Yu7BFIFT2a9IHtMcNytyGJM0UWvc9+\r\n/g0zmsYVmTMTMVqn78jy9kuTq0i+g+Qpp30yb19sEoQ4ZpPkjvkJnc6LbKnC\r\nKskSxN7Id9f0XZTEfMQ/PWfZrF9mrKBiZ7btqswA/Unc6NVpr+L6baqoB10m\r\ncX/r3Tb5INJLI1fQChFXXr+sjztImCPq5LjZbyXugfCXGY+ZJ+YjZ0Ht0aQK\r\nzO36+mtJAQF7xytmC26U1cwRb6z/UXMTag1rqGoba8FsxRtYl6xq3oOqE5DE\r\nUaJ+oBNT6jGwemzz/e2zVPoxKB4wUi5VV1TlOSXDlaT3cSq1U3Wz83haNVnI\r\nXUhHTZpS4MLT6LJjV1/DmBrQ93fBa+yRqQc4RG2TnnczICTCWd2H63tN0Ld5\r\nIvUw2mBBeOTDXkmFenO1njFLj2n2JOQleQSUXQrIunZRomrewH8RJrtySqIn\r\n/zHop3xGzqWemHux6yI+9Jb1vygnf4VylKQ=\r\n=nrUs\r\n-----END PGP SIGNATURE-----\r\n","size":28452},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.239_1661997750891_0.8150077891108152"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-01T02:02:42.228Z"},"1.4.240":{"name":"electron-to-chromium","version":"1.4.240","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1123.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c729737fcc49e6c33cc367eaed9f3be1688c4434","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.240","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-r20dUOtZ4vUPTqAajDGonIM1uas5tf85Up+wPdtNBNvBSqGCfkpvMVvQ1T8YJzPV9/Y9g3FbUDcXb94Rafycow==","shasum":"b11fb838f2e79f34fbe8b57eec55e7e5d81ee6ea","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.240.tgz","fileCount":13,"unpackedSize":187823,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCf9cVYFAu02iTdglv7bMPcyCwVpv+xXtYE1OwhGFp2OgIgfOwRVN5V0h4Nq5nYajmt6fKNSIxOzMqRoW+c2O0J818="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjESv3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoohA/+KpK7GGpWKb7HtAYeGW4IOReKAow6afOLPGIhrICPCLtwQUnW\r\nGEjaNMxCojMgzHWf+jHNupzbQ0KlZ0UlhlJeotutjSLnoHibpQEe+vSU7fn2\r\ndQqsxA7/iEi56EAOr98T4GBRdHSyT494EIMkVWiLczeVJImm50frBfVx/bWs\r\n0tLNrmWBaGVxb674Zw7Dt1T6oSK6I7lycXaRBW+QP2RGP/UoGxwhbqFk/0xP\r\nsr/xJ+yQpezfD7GM+2miyhulyroizt2nfFu3iK7FUA/Xp1Et8wzt3Fm/Fi9d\r\nnQs27hgCRckDVIOlJJyi/tb65FB8yb395G37NlZLHa5S4zPgiEFa0mb1GzL9\r\nSVag+H56VD+fc/5mbHi/x8sbJMr2dQnY+JiOBwY0STmjQJhXIk27jqKu+Ewi\r\nWPz+M1ljr0goGHNyZwMg0706KzjlZlvwKkwtExbzFSqNSyBbtc6MdbsXYjwz\r\nmeTnc93aQttYnboCwIJWCClsNMqlIe9sl7jfZjrWz1Y34OovX/q1gMopM5g2\r\nn5GOCb9u1FU8uAnflBvoeUMVkE7qxt2x8mTWkhKoZcOPC9SDbAUaTFid8Pd9\r\nSyfIx8Dlt1l2j3zpcEP3rmRokTVHc38OFijwwzM/3dqC/+OdV8LGHKYi+C7D\r\nZforrtqZCPf5kbNcGweLrCSHiFa+H26aX+M=\r\n=C7N2\r\n-----END PGP SIGNATURE-----\r\n","size":28472},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.240_1662069751019_0.09468204219121534"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-01T22:02:42.560Z"},"1.4.241":{"name":"electron-to-chromium","version":"1.4.241","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1124.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a7e49e1091eac75b92c7f4c121c9245a34532c3c","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.241","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-e7Wsh4ilaioBZ5bMm6+F4V5c11dh56/5Jwz7Hl5Tu1J7cnB+Pqx5qIF2iC7HPpfyQMqGSvvLP5bBAIDd2gAtGw==","shasum":"5aa03ab94db590d8269f4518157c24b1efad34d6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.241.tgz","fileCount":13,"unpackedSize":187963,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChhe+XrQj0lEFwL2rCmTfn2GI+cGw+R2YlffbQmZxpPwIgFC8b0qc0EABAom8L/e150JW+/6c4Xjb6baf5RNjCXvQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEn13ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrr5w//exLhABwbHpt4r5H42tncfy5/Y+hF0QWsDJ68NKSWlI3EAtrA\r\nVcIdrEjUOaOulFchAW5Zk+dhdeY7xq6REMGNOI/WbvixGfKXMiDwtZ0l02wV\r\n+4Jk3bQoJpKeE5XP2H+srLmrUWTafeMW8YJpHByw7Cftzer6GVqU4IgSuJzK\r\nRLfgQQpILawCeatj/97J6mOoilFSPFHP+gbseaM4EcGbFHlX2lP48cMpLfo6\r\nP8nTZAnDsCOjKebtbys1LxKORJ1MZ+vaI22hO0jMv5mVz+LmquptOWqJSl44\r\nakezn1o+pjZ2dner9F/HsAl83e6z0dBHcX2S5uD+YV37S6l/CE6dJgL8loUw\r\nKDDnVfYJlTHJQS4RKyww9lAjI5wMsrosH3ogoySjPtxdDE+3zvFF8tlwO5Q4\r\n6D7dScmSFAtRY6mS55m20XvUnm1CWScEV0+Klibdk/NLa+m0u8KbxE/z3ibj\r\nAp3Cl3fFZ/6NuCFLoJEIm5dyWwUrF6V3Iz5OJHTQhx3KYo4TzD3Hf9byKjOO\r\nF7cYdUK+kq6ub2rWD10gKhBeonbtBqLPjj8F62qOhjQY5xDYqJoyLAVFstz/\r\nUfdduRy7D7rmzU37sBO8noh3ew4YeDdK37XBXi+o2hrGrY1Ig1cUoPz0KweI\r\nIkali4B3JREWEQyyTGLhMZb3y3IEDi6Zmu8=\r\n=bNu7\r\n-----END PGP SIGNATURE-----\r\n","size":28483},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.241_1662156151119_0.7368000290775225"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-02T22:02:45.235Z"},"1.4.242":{"name":"electron-to-chromium","version":"1.4.242","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1125.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"50cff79c4a7e0216d3f5543456298d186fc00ba5","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.242","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-nPdgMWtjjWGCtreW/2adkrB2jyHjClo9PtVhR6rW+oxa4E4Wom642Tn+5LslHP3XPL5MCpkn5/UEY60EXylNeQ==","shasum":"51284820b0e6f6ce6c60d3945a3c4f9e4bd88f5f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.242.tgz","fileCount":13,"unpackedSize":188103,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEoo7GgErt2IzvXQGaTvuSOWpmLr/R4vfSNqm5Wn8N8SAiABPqtfcT2kU9VqaRrfcl/VOhr5IRjskMD6vCESAOiu0A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFnH4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqn5w//TkbjB4aAAs62gLdob1MtQAkc3GuHFITtBlNQxcE2GYGzSx3b\r\nfcUNIrxJK6DST8cwrKVgi6U6RF3zoh0uYsHvSSgqFq4Zf73ByrA1pZ5HnVzf\r\nj00maz5/IAJtgBmoadQ/fZkGYxwrxrzBVn9/br6oXmdJDJJKFiKO1AhCcacH\r\n4k5VXbV9+KqH6tmdUx+32NDKLLSIKNIbHRt6i63cGXPZLBbrDPxbw5zxGXEc\r\noiBYXbb0UXRMUj6yIpmyrv9+X6io+spKDNwU8dNEjTcTBMCybjRHbyWNm+ZL\r\nIPUyq76L8kPM+melKQivP9G3doxnugn+2MGt/nYBOMYb0J0LScEnGxg13t1U\r\nQ5wb1ExDOfqFujEW9CEikSG2CJy2jeEsg2O01yo6+HKwDKpuv2CFbP6jFwLp\r\nUQ6ajqUDiCD4f/2Z61yAIjvPWZootN1RGqI+ZzINBLnWwFNbPjCSlcIU5/Wq\r\nXPDJ9FFDQ/qfQdbjXWoxiqsXTWp6+t4YZ7Lr5fUIH69tIyRnfEyQlKYyfbHO\r\ndQ3YcfZTpZMNORlaeWewOWSQCaq89tOUX09PLtOahKVtlOsfAZeBbz/D74j4\r\nhhV534CT2lE4R2cvnOEwP/1MNSg9yHDmNj2QIFOqNFnuhtO0a6XeZm31LDu7\r\nkwanQ/9xZje9LZ3lAixOwj1iFxPC4B3GQlY=\r\n=nQ9s\r\n-----END PGP SIGNATURE-----\r\n","size":28499},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.242_1662415352280_0.5939296722918006"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-05T22:03:13.325Z"},"1.4.243":{"name":"electron-to-chromium","version":"1.4.243","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1126.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"13542a9e4389c154dd00cc9ac10fe7cefc5a5e50","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.243","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-BgLD2gBX43OSXwlT01oYRRD5NIB4n3okTRxkzEAC6G0SZG4TTlyrWMjbOo0fajCwqwpRtMHXQNMjtRN6qpNtfw==","shasum":"9d5f1b10eafd6e434b687a88f1e7b0441dee168a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.243.tgz","fileCount":13,"unpackedSize":188203,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCTwLzU6KitoYzBaxhJRsJPGoXJC05xM0M9QphhsN054wIgX/vOfyh0XwO0Vr0LDO9sGLgeUFkseIjf4PpdfLwhENY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGGw2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/sw//VWlQ3qLJEge7sA2kMWjwlq4+powaLyZUuJiSoH9k+T60QKZ8\r\nXJ/yN1YkfE1JWlk+ihFhrfbKWVcQRogsS5yvc7ceqa6y31hFFaEf0sRPmL3T\r\neePqx8R0xomRZB9W/gjbxNiYJmr/ypTkDvksZ7kuW4c+OWr3izZMTUSCs6KA\r\nwHRnEdhS4k3GdBIUsN8OqFIA8I5D3prs9/DCllGCCJ2qjcNMpNanjrnv9JJc\r\nzGc4lDSfnn17EFdbPaO9OcM3uxVfJh4qtPAtEdtBOE+acJljfbNeEtTN2Sce\r\nLOG3bOFit+UiRFQHnHxmVeftJMe7PaeJPAahtiUjoEYfPTtF48wYwmADhdaN\r\nuqJOSD6zKgcjHmATrzF9qk/YCN26uxp1G+i+RyxSfnOVMpEFETalyKOPtyHp\r\nc9zwBO9O+MTGMkrEXl/dvXLqp2xrMp1CpHsIgnWieO0LhTl5Xox8TFRXwfy2\r\nF9fbKWV1pxbZ/9ZGeAR75hgHFP2T/jik3J2VfQcJNMD06NsCZNUIjz/A8hK/\r\nd2edLj2XFIR0IthLqpID6kuaN3AFvc6J/PyZrQC0nAKauaSSbwnoTbuLms1S\r\nj74PImazizVXwbzrzGzlThSP6GkXD6FXf7QFuGEk9cSxjHxq9XyPKMRAtz5u\r\nW+rWzCQlbeqpQsOmB5h0aimm/CCbQWRBkww=\r\n=iGum\r\n-----END PGP SIGNATURE-----\r\n","size":28512},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.243_1662544950368_0.21534696953915766"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-07T11:04:05.157Z"},"1.4.244":{"name":"electron-to-chromium","version":"1.4.244","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1127.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"51f14bb0e87faff14e166c6920ee0c4408e1e710","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.244","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-E21saXLt2eTDaTxgUtiJtBUqanF9A32wZasAwDZ8gvrqXoxrBrbwtDCx7c/PQTLp81wj4X0OLDeoGQg7eMo3+w==","shasum":"ae9b56ed4ae2107e3a860dad80ed662c936e369e","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.244.tgz","fileCount":13,"unpackedSize":188402,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENYCtctti5T8x8ftBFvNe1EhHpbmChQRZUwVZa6c1m+AiEArMUmbDBoGsqSwPgvdDMzMfYZNr60pw1ia1arj88W9z4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGU02ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmotLRAAjhQvfFkfvpKYojH+BhaLZiGSGbP9xmoK/xQs2/OKBXgHcF1e\r\nyx8FzSJuMkNwDNb2mEJqO51V1MC9GLLEkvmES215+n9YMm8xmq1Xxwke60N1\r\nKmCLoHAAK7+3REaRlerMgzxwM+GxoQVZq2qSE0PJZEWUxB4jrWKsCc3L10v3\r\nX4ufz5yQ9rHJEO3IRiWM5PXwx+wcfXBCrR0tx9h+iseWRXxVbcZHicoq3ZxA\r\nSp6PK0+knC710+VKR+9/OKVChFlfJwJ/qhuAX2IyUaPYDnI/197VaeJd8+JP\r\ndMxs/oYnFvzg2OWxYfcXwZw02ayWZUKVHrIQ5imDovH4z9TPMHCO6GkZKWzA\r\n4XTiwNt7xDlQWt1+HL0+DFTv/mc9PyKMBuxBjiXbxJtrkgvY5Kmcqlh6/LFM\r\n3chSV9Kg6DtU5nlCkxEN0GFmVb3tG/TI2rMIwf6pfT4fz2HAzlSQacUC5V6N\r\na2HN4KSkpx6vbVQztHLJwWO/kpRCfWIFtduJlMqYzkDg4TixSCbLl8DA+cEH\r\nbrB9ApXpfCG/Y96zNWp6X96YnLgjb8wFUYm4PMrspuDs9ocCRt4ooYL0B8jG\r\nOOvq1VJ2o53GmL9ah2lilBCdGMZUalCGlssnz6s0t48cyLM+D/A9Ui6AtPjY\r\nxVNEHYmPmXf1hJTpjIkAqyV4R/+60gbmmdY=\r\n=nyCe\r\n-----END PGP SIGNATURE-----\r\n","size":28542},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.244_1662602550594_0.170988222809632"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-08T02:04:58.251Z"},"1.4.245":{"name":"electron-to-chromium","version":"1.4.245","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1128.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c6091e27be950d1d5fd0e021a8a8f4e37cfec440","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.245","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-kUN8QXmqHAN8phxjF3QpHeX7CbXGXadSngx9r1O/S9jt+uC0O/vjPi/9+8/Mk3sKewLLMrjpBJZMfVpPCdkG3g==","shasum":"a065d4af1ab0ab5803d7531759556ab366b46000","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.245.tgz","fileCount":13,"unpackedSize":188681,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4JsuFfjckq2bgHyJipApTUO/THHb0maVE35XIGpwzxgIgS/NQN5qMX5+Pj3WA5fIHgz7a9U1WqJcDo5djacAZtDw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGmZ4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqV0A//TGKFvsCBd7eHIYf7Bv7owa8VRd+qm1byhldjOPI7iR1pZeug\r\nr5YJNw6Lt83E7Wp08v8UC8N/w2SgmUHFnjden0Q2vQ5ISFvgxXppSa7jZvqI\r\nuBpskLKVxFuQZ5ABEVLPU7BjyX0edPiIqrnR9oeqX3YTSdTxNyEF7oWZnWGM\r\nBh57edRwr4sOJkA39r6AFJpUhePTKTwpiDWn6imr0nRvAM+osdQUfs9uAvOO\r\nVFAQkMGvFbh3gHo8kVHD3iLF1HCYI/87YZj96zNp43/Gw6gZQ87N0099EOSy\r\nUZGS+YRsroS8JR2++ea7uhPFhBKPtbNi3JOFBzqFzZku3Ns+KeH8oJPoCXv3\r\nevy6tjaNVtPfKPhun+ZbbgP46Q6GH0nQuu1aDdcFCEP3Nn/OIS7ejHJYE9ZR\r\nwG/CVzFUzwwbRjVqFMe0noSHdzcedFIatsGG5maYe5V4fP6ZsG+YZ3dJgbfX\r\nz9q5uDoerB0mPmLpY0ISFJpA11ZpqO/gGi0uLVkIb7FbAzqAtnimlaTqVEFY\r\n1QJTuBm88Ze2rfG0/KueP8pazU/53XJV4DHxCbIl2oYXnNigT8BwO62ncMYu\r\nnTXtLCIgyVpJTGoBXq1jkQHb6IcnvWLWqxG3TNJX3H6BJwVWamEDPKET9sr5\r\nc/qbP+3NtdL6LYrs6ud1RhF4e2o3ibRci28=\r\n=h9xa\r\n-----END PGP SIGNATURE-----\r\n","size":28701},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.245_1662674552328_0.6844715057992659"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-09T05:25:40.222Z"},"1.4.246":{"name":"electron-to-chromium","version":"1.4.246","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1129.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e89e7bfe1cafa72333c2786a1c61a6033d6ac12f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.246","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-/wFCHUE+Hocqr/LlVGsuKLIw4P2lBWwFIDcNMDpJGzyIysQV4aycpoOitAs32FT94EHKnNqDR/CVZJFbXEufJA==","shasum":"802132d1bbd3ff32ce82fcd6a6ed6ab59b4366dc","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.246.tgz","fileCount":13,"unpackedSize":188837,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDKC1+Z6SvgGvsFOPL3WJupJVk7m5YkkcG4xw+RuFkHDgIgCSWqn0nZN0Euikww5Y5Q7rvJwsT82WOevrNk+mKFZSM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGp66ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2MQ//SHuXvQGd8tGF8tMSQTkNFwA5ExDfjDaWJsfM+3+gnmziKyVV\r\nj9PVcwxDqsjyWe7O1SCB7fYDI/9MyiYkTRMNn56wqpUbd7w7KXP2fT73enL4\r\n5VfoArsqZSvNvMuxiccMUfwPxCt3OoROZ9HhxteleL5Ib+MdsEmGdA48bDqX\r\nY0lwQ501seJtldzt6Vz+QOFa34JjKzR+q1asnKx2xRtTwVos3oZK5tzI5mAN\r\n8XHmvZiPosmjo/FfK9ePdfZerX4s4g2Vcj3ri9hosZsaz9zoRLsxtxYMZpe1\r\neNl870MOCMw/V9rNGoW8EWC6wV28aRQhUWaaErz4cupkafyAVw85Ha6IX8VS\r\nfhY28JY1GpLusJhOynwXfD5szQhGHGstB9ZSLfJpUKSviNonc1737YKa7gto\r\njd9Q04RIM/hICYRvfjUiV8OMLZ90C4Xi6KXg0m9iRe0uLQJr7RB62mBqBkqQ\r\n1pqb/aYZM97farlG+1M86HxeThl9Zy+q7AEh9iCbfskyR9iQckcwiasRAA64\r\nBeZkeeQ/GyHY/1o5ZJwyMyZElTmmKRw9S6/kDVn5wuRXN5PrcHrQliU6u88I\r\n3hPuGjIMsNvZysqEwK77TfKpk48pnmHLjmE++qE95S+E+EdjPXis+myq9OGE\r\nHTuuN4WTS1eqWfaGaDSyHkdWPLSfdzhInEQ=\r\n=zFFL\r\n-----END PGP SIGNATURE-----\r\n","size":28738},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.246_1662688953958_0.9839439749701331"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-09T05:25:40.319Z"},"1.4.247":{"name":"electron-to-chromium","version":"1.4.247","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1130.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"92ee1a533793c23bb0869f4f1d715b41fe85593e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.247","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw==","shasum":"cc93859bc5fc521f611656e65ce17eae26a0fd3d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.247.tgz","fileCount":13,"unpackedSize":189016,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqUmWj70AvO9A3qz06gDL7d1ALYokhp/SCuLoZTwggUAIgJGDtyGwoPdiqYEWgww+/Squ9shibF/zL/ozwDXMqwfo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjG7f4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWNA/8DzUaAJaclOfstQEzoqPBdG99Y1NkwhmRLbnRp+jPqTeL9p4k\r\neNHOy8a7qN7HSAh0j8Hhu1pvIdWTi5aHov0e0bCNN3J1vfvCO6Re8w8aqUsL\r\nTh92zhSMGtiU6CQ9Edtf1SbCAER++26LF9U2jjqRnR1xWLsoqR05AmEH7JoF\r\nnf8XNJFiJPCiJRxh3uxmYwb+b7BN6afV7vHH5+UaS77l6Decs6p2QAyK38Na\r\nS5u5JfkUZo6UEmwaMT6exjQP7mx/NCwNq3+5/JAiCIGhHIZcSEbGnT9t+fqT\r\np6XMT8OFF+Ho7rfEQP/OUTnNDIG6v8GFYEKKulFz+gIUk1bMbc0z4Z64CcAa\r\nBdrD0ubbWge4oUDT8gxCEl4WT7TOA5DZjuG6z4CZtx3RhfUlwKIFsaXoweHy\r\nrt2CIeBLp/aahxXUu9MJO8gp3y1wahFmqJH2nPOZMt2mM9osNJeTkSRyHrAz\r\n0gDOkUS8iP0590Jmx5rF8MV7KXLOfd+aZZms/rEUnjVph3SMXtndhGj4Tz6E\r\nV/FylCKiJ9lRLVcLfw97LMF+CwuLGYLQGe13wgd+wIOZ8IpkOMmF2VHREbnF\r\nV0J2BXoWCnJVUHfEZoOh2bFc0pKEZhCUaXiw5lVwt2CJJz0ntZfk4zk73mtx\r\npS1ZMznnlBLNFDrDvbWaqLhDoVNxXLnW08g=\r\n=bXOW\r\n-----END PGP SIGNATURE-----\r\n","size":28759},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.247_1662760951814_0.7685475766226422"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-09T22:03:12.749Z"},"1.4.248":{"name":"electron-to-chromium","version":"1.4.248","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1132.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"ff50fda95770e6588f69ab8a13b4de7482c161d4","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.248","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-qShjzEYpa57NnhbW2K+g+Fl+eNoDvQ7I+2MRwWnU6Z6F0HhXekzsECCLv+y2OJUsRodjqoSfwHkIX42VUFtUzg==","shasum":"dd2dab68277e91e8452536ee9265f484066f94ad","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.248.tgz","fileCount":13,"unpackedSize":188877,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCm0n8re2itgwkOTwy8L0FZNHNL1WG5vetij7jh2kGYAwIgIaDoarDNcmmQMRndWEFuITxxpuwdmnbh9TP0j6hT5XU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjH6x4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUNg/8CDRS5t5oaRiPplWeU2uNq3cFkaFRgZJsNB2Hl7vyRlaZVhpo\r\nYpZeGgIw1b2ZDuXwNFc1qm3Jn1elRjVlWW6YxDW8bs7XRyKjzAir6quNbbuD\r\nEQ+BRJXOhXSZt33AI8FLCQ/3ZxQvphacsnESQIVBd4IAuloz6eV7QegHYdbf\r\nEJMtFO4Fq1GNyCHdHKQAd++ARszbe6SKFNQmF17BsKh3LN3SUEMARNmXYd53\r\nlMSm1dJj5bG05FKY9OAU1rKfoigDjve/oSLX48UnMG6h3PJ3QoJFgkCU2iOm\r\nt/A5b0OwEEQAhVNj7P7E+UtzpOGdc8HfUiQv7VjFETKnbwjQJ2ngaCGKqe18\r\ntnCjy8DgQ31HFpCRp1r3hOch+6gP22vQUmHr59IBqnh1jgHwOewk+DQxmwuk\r\n+T7euo0q2wsW94xmunw8YwAOZZuvdBVPQNAnrEylgdL3LgfZJGIoCyjikyEW\r\neGPZLnZR5itUV2wOGPD1zthlSZiHlKQUgdg0AC8FukfJkQWcRfaagKMIGs8m\r\nYH+fFitkDrCi5+bkBrHnc11FIrNqdQoPpLJpo32uxu/LYX0avHJQtMov+ha9\r\nrmyzNgaghi1NarMaeFeSlpRVZ6Rnb69VI9l9ez/k+oBVI1rgJc12YRNQX9Lg\r\nWipLEyWpn7ACIbrk+RpASFnU/V1EwDAT/pM=\r\n=ncGk\r\n-----END PGP SIGNATURE-----\r\n","size":28726},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.248_1663020152167_0.4645974906488426"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-12T22:03:03.687Z"},"1.4.249":{"name":"electron-to-chromium","version":"1.4.249","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1133.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"35ac8d9f1d7a28c0d93617655030b13f047221b9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.249","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-GMCxR3p2HQvIw47A599crTKYZprqihoBL4lDSAUmr7IYekXFK5t/WgEBrGJDCa2HWIZFQEkGuMqPCi05ceYqPQ==","shasum":"49c34336c742ee65453dbddf4c84355e59b96e2c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.249.tgz","fileCount":13,"unpackedSize":189396,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAeB/89+yPqrMsCNYVqyWFquQVKD/8C2+Xo0mOoAYVnxAiEA58zD4i9pUghzUljsKTvGSxnilDNU1ribliNjpTU5CRg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIP33ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq44g/7BBBctN8VqK4YTl5H5bv8TGVBWb1ksHITgvzXsXknr62MXPoJ\r\nJhadSwnu+76iw/gWfnAlWpNqjhq6NM2qWO1ZauC4FMI+mS/7PAS/Wj6szA5p\r\nSt1PK2bWxKMRthKxh+4eiyKKxu/Bg8l67ST+xM/T9xowt5JH6hvAX+s6JssF\r\nfMjmHDCnyE3Qy0FpDwyeaqTR53bT9Pf5gccuSWjBeBcq3C7/ODRrbIGjbT6V\r\nbqD3TkmAZz+vJPPk1xGv1Ns8MCLa10hYVDt0bDf0yAZiO5D08vsxUpqZUw4w\r\n/bc2UgKJGH6GdcR78nAVze5z4uUxUaQuKLo4qaOHwWjCauCpk++V5kx1KRjz\r\nrU6iZbFX4DNfJz7nuQ7BSMC9f/VP2iAJswvOS2FMJ7FZ+uOGQhkMgWs6rJnf\r\nhnpGIq/f0BXgZ/DwmuDWXf3a0iNBXXt1GygG1HESVXJHrybJrKfLNffq9StD\r\nnHrM7Cb0+M+WyjJ+eddFlcjJFPM9K3ugf4CxfocyB6texeEPI3KfiT5xNNBJ\r\n8lChEncKNo1Jxfq5gjWn3c7RC6A5QHj3SIZVnhd9sPQXBdqJEBKZByzyF2d4\r\nV8snooXOP2z+02vjg/yziaaKDbLls0DBaCj4ehXeoCcoc+DQWZfbLqHptHQm\r\nAx2QYfe4yeT5fxv0rhcL4ro/+qIk9CL/2mE=\r\n=yNQ7\r\n-----END PGP SIGNATURE-----\r\n","size":28797},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.249_1663106550729_0.9930878968828274"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-13T22:03:36.219Z"},"1.4.250":{"name":"electron-to-chromium","version":"1.4.250","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1134.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8ed62b8d957322d6e4dce7c6c328131dd6390edc","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.250","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-KDLKcPEKPK+Q3/LdKX6knDzqyh8B82EaHccTYuGJR2qp1ymyGAo5HMH2x2OwDgzOPHlINSLIIeVhlFdq6aJgNA==","shasum":"e4535fc00d17b9a719bc688352c4a185acc2a347","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.250.tgz","fileCount":13,"unpackedSize":189536,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQq6yJiBmvm6AbD/nohHnBnz0dVM3NO3UDz/Kloqr+IwIgC4oAE4bF5LHETXaBC8hUaRETVWW17E0NLblgFXdvp7I="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIk90ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ2w/+OCsTRyKeLXiLcH6jwU1TvZY+si6IbAelPt0HaVaApvzA6Zg6\r\n1tI3yi0rnMeXIGiS6bzMxUYDr1ca8BgLfl/38mNjaoTd3dQsKNbuFPbfgvPr\r\nDZR1iT6mbUHJhiue8xMhFN1gZVzM/I+lDUefMMvCaRbw0JO1IIvq5QN7VN6a\r\n5nktJKaUmtdC49K8dw8If+eYo2mAl96zwfkSANIR3dpE71Pri9p+t6erCC0d\r\nFR6b5N3CsXDNa4TXZ3jsiPiVT/jppm18hd9n67xEss2YZw/BEAUXOaB3IqpE\r\nbOSsYSthdulN9lhIkJSmhvO6I5J4DBX+CnB6M/eM2JbGcT6UCEqpdG0DjCZI\r\ndWgOrqYMPTYrioowu84YcVQ1a7V0mmWxasilApjh/305a2jOXQLp5xGd5MqO\r\nUozq6IXGxRdgKsKCiuPFuXkXjB7L6SYd77DgkX1VMw3HjOlRA+gVQ+7Z3LkK\r\nWAqTTeJFE9EcAytAvbR96Knts1LHzOXXfgS6TNG8Z5tfwgfI5DDGTAoziyjX\r\nfz7ObQ9EvavDGi6z99Zbya4QLrXl3cnGMfVu/oBiJ8zQwVVmxs4lvRyH3h+D\r\not+Fr8iDR/Lg2+w+lOF9IG2rnz6iqZIKOaWa5iEXkHiWiXks+dyFPjLsvEsD\r\n/nYJGCXn+Ln11ky+P7nKxrhNCHtjK5U1InI=\r\n=8Xpl\r\n-----END PGP SIGNATURE-----\r\n","size":28811},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.250_1663192948701_0.6611241084787809"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-14T22:03:18.862Z"},"1.4.251":{"name":"electron-to-chromium","version":"1.4.251","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1135.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0e1edb94b616afe22e5652331e42125c52f13aaa","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.251","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-k4o4cFrWPv4SoJGGAydd07GmlRVzmeDIJ6MaEChTUjk4Dmomn189tCicSzil2oyvbPoGgg2suwPDNWq4gWRhoQ==","shasum":"8b62448f3c591f0d32488df09454dda72dec96d5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.251.tgz","fileCount":13,"unpackedSize":189772,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB0hhF14ba7nR1yF4Gtk7VZKAeKjyTCX07L4TkYX1b4UAiBlWvCz0pi0AP2jsyRlY7O2lytIPELr/TxkSy+QbCZr+g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIoe3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlSw//VtVdZ3NNXmwmw6RzRtBimYLmnpbqUvlvMRoUSY/jBQ/2gmfU\r\nlEFy6FW1oTPBG188K+O1rnCgSOAuUC3VoMvAN+DsYapxVnA8uAh0BsK/NCuQ\r\nRsd/NI6S7f7eMLJ82z3fgswent5Hnxe1J/CN7DdD7Jcz3rU4NsseL8vlp99H\r\n6s7eeht/7eAruaKVK3az4MgoLDUHv1dXFFKTbXKyFe84I8eDzhjeFAAlApie\r\nzGh4iCJJverqznEip2NU4GzgEVfzBRzdmP/cm8Dpfz46nt3e1AU/XVK7QzGW\r\nm+OhxObENXF58N8E0Mfi50EyRjqodMRm4O3wkbRuNLyrZA0A/trduSZbR7a2\r\nhYMiQfTQWRkjZiuxMlLQiYnIcEIXVox8bm6xvWcpyQrRAKi0/LeMh7k5gml7\r\n6ZBpVhdB6WMTR6CETFG4MphsJE9n0WdEbne96XKAx6EGaZx8RzzHv51Egkxi\r\nvgVZhyTwEiuloWuIM0VWR7ik0VEUiIirp68L8I3gziP8m2jm8BEtqLvX2Dd3\r\ny3ojxigwjSVFtoOx6CPGX0zmPzR68gOv78W8E08kvMtu+ftTIcfG4Hdnsy7t\r\nVdN4TKreWjwa95Y9hwncedmzIeiqE6ijZ8P9quUP15vBg/tFUZmsTveetflr\r\nLWm3wGNShECp63ge/vycloD064JTnz9dRwg=\r\n=DaAK\r\n-----END PGP SIGNATURE-----\r\n","size":28853},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.251_1663207351270_0.6243315897441908"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-15T02:03:36.750Z"},"1.4.252":{"name":"electron-to-chromium","version":"1.4.252","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1136.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"452123a7c941179a819497c32d0a4b02072d0143","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.252","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-bwfkxPvK2PVbg+dXVFgoun+BkAyJmBPB0AqMTyQ/MzJsA/vEQoTi6Y1uWUDmo/IeOu2zvh4Ac6nfmFOWz5+oHg==","shasum":"91d3064b7b4904debfd7726555517500b657e432","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.252.tgz","fileCount":13,"unpackedSize":189912,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeudi8hODlPImO7e+JKQD/10pmBY6jm3TaSD8U8aI7gAIhAOY/avUkVwgHiRwpTBBFuJyEK8gAR2AwYYRknKMQq0pX"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjI6D5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBlQ//WuoA/41bq2I8+62rJVp8TrDAHaZnbB+hYI4MvYma4HGYa+02\r\nCW29pIT/DxrlArxRc6KtR0lbVfw15YmvrIEsdtU/3ARS6qR98cGa1kzswgwe\r\nglAAkYkAOTXVrZLEEVZz3pw0fVqfKPyDlJkmSSuqz8yopd1wDO2vTDla5PaB\r\npaDd8t8jkQKmdPE2VwNJUqt54YmOvOShOV3WYMCFo1Yxv8T8a9YvEtpE75Xk\r\niyHZ29gwsyHLKzyt2I2stmnBlyglKDgQulBt1mfOqJBgoI86wadVRGQwbuen\r\nluCPUWSISKG1ASCBEveMCvFiQebp0vVUbQczkXDC/O6W0pPrR8VjNbDLwB2s\r\ncvTUPB3xdJ4meJ3F9w9xYo27vlrwIDH2nrqfA8LEzbZ7hrCsk6gn07X+ABIt\r\nhiVUBek7UuI09/ehwtSP+m+S1rA/K06gdJg6Cbszg4lGqI/i8PWcSILkq+Vs\r\nFFlFboJaD05bylRgirj0PauIpOEAKkeHfS8gBme7dcbuWwthkxR5rrd08/dj\r\n7X6NbtmfJ/KW/BEIdmjirzvZ4mtxSHcYaK+npuR/mG+QaH53JxJxmbF/6Tbz\r\nkilb6khRTC++5ptd6Ai9qQMJZirLz9rn8VQtQz+JVrIIlwmKGaCW9mx0ElXK\r\n1/1TAglCNZnsV9fPhGOwVKBWPiQuJf4T9r8=\r\n=xBa0\r\n-----END PGP SIGNATURE-----\r\n","size":28871},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.252_1663279353040_0.6356894423416202"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-15T22:03:28.502Z"},"1.4.253":{"name":"electron-to-chromium","version":"1.4.253","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1137.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a69a7ee6eb5421e7ab97f8473955012db44ae545","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.253","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-1pezJ2E1UyBTGbA7fUlHdPSXQw1k+82VhTFLG5G0AUqLGvsZqFzleOblceqegZzxYX4kC7hGEEdzIQI9RZ1Cuw==","shasum":"3402fd2159530fc6d94237f1b9535fa7bebaf399","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.253.tgz","fileCount":13,"unpackedSize":190055,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE02f/dtr/Y0EX3hSmMSE/O4oyFn+NAUIoZBJWyNBHg3AiAWKjfnOPKT4MLQLxfxL33bCguFJEX6J0EV9o94YTndGA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjI9k3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqaQw/+MSSfl9BJGQg3LIT7PCFold4U/cYablvbSQm+hU78SBNNXlN/\r\ncswc7ln5k3haGE9wLupEVLBQNgPq7hkq6hYHbVG6xyjvjQxmXVNAKQaP0l2U\r\npMs562hNRrfKbuvnGp99HV5IGaX5ozOydN/hJe9DVyjw9Bh3hVt6qLKAZWWj\r\nw+ji0KmMzDWzP3GW8SOoyjWmNWU6IRrDFy+0nStap+qoZatQfaBELGV529c0\r\nGxi23nGPRjoPL/3aAJoWES/ncBs8ApuDcK60zR+GycN2zWWmC5bQDMwPeqFx\r\nWlNeQjiFyDb4r04Lo9ZA8yAPn/OSs+zjLzJ526i4bon1C8gy44EmXc16+jbi\r\nZs5r9RwAm2sLCf/c1g31dIggHJUfRkHT70ZfkGfKsdYzs0OY7B9vYraZ38RT\r\neqk1R2kxGIVx67SWvKoqytw/jjbGdamjmoQwGbiOfR78QS3m9mOHdDOSMkIv\r\njWl9PgvJUdjcd1SoFCmO6gAtbZDCnCyinH5D1c68R9U4UAaBHkguyG5PgIg8\r\nshR10qdbFoFJnlG2lnioDHWenZFfd298Lp8a69i20jGC3Npg10YP/53064PN\r\nBsgs0UB3aS/BCaCAsnGxqrmR5C+vqiqLtnUIlC/hf3SiBaLZWLtjihU4+lAv\r\nmpJHeto77RXtsDCLvC9zCpBt3GDMiZtN0tw=\r\n=m2e7\r\n-----END PGP SIGNATURE-----\r\n","size":28904},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.253_1663293751218_0.21477833587552841"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-16T02:03:49.648Z"},"1.4.254":{"name":"electron-to-chromium","version":"1.4.254","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1138.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"abdbcc21e99488ee26f8344c6a407970e66beb3f","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.254","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Sh/7YsHqQYkA6ZHuHMy24e6TE4eX6KZVsZb9E/DvU1nQRIrH4BflO/4k+83tfdYvDl+MObvlqHPRICzEdC9c6Q==","shasum":"c6203583890abf88dfc0be046cd72d3b48f8beb6","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.254.tgz","fileCount":13,"unpackedSize":190195,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcEvqf8GDrrEaJq1w3u9xRArYy0G86+GvkvjFSO/6lUQIgKlcF9RYnB8yR7F6X+xwt+xsvnJpG2CmNRbIshXU+jgI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJPJ3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrlxg//QRJCMue1ab61H6/ijlWFHmOcexy3RgxfEOyficGEwiLfB7gU\r\nzbVJuJdrM8vEybIAV8oDcXcn4uhE5e5S5CZBZ1d7fUUa//hTgxkf119MX0co\r\nfJ9Z7maGCGIpFqu63xJWCvUZqhjfTqxOnCVoDKb0tCFiecA/iZ6USQuRxsii\r\npz7fpNXuBqR54MPVMmDxr1nfw3/QDRfKmTGeA8EwKhZCaE5avTF4c4bz1FNF\r\nmaWp/Ix8uP9sRdQwPn+I1ssVoDsc2fP7GgYHuSZBsdA0lEdks0/ojyn81p3l\r\n3s14cxxsEGRX+rGrpFVFez/gIMkyYLr+TRBXvwvV6xMcuA5OAaJ2WsuyYStn\r\nSpIS935LOL9CV3C2OEu4mYRdaLRItvRqbas9n3IDJ7dfRjeEUVy/qCHM68Io\r\nfhIVDHyswVyb/UGj26S/tZnJzWmjheOdIlkUNrQZ3xiY1J/PA6XSDHmknnxI\r\nq4EhfCCY3m8vEftY7H/+s+x5xAB/nQawsU4K22X8VCi5VEaTW7L34P8mH5il\r\nZ1i1TUQ5I8Au+0SEn/+SrYLGbsHRbmbaSElGJukQifla6s1Mp0u2jYBWKwwh\r\n/GrlkmQwOjYSeV4s4H4RWOVm9u6zuOevq5rfAtj3nXnzR7D86Oeh7Ld7yqsy\r\nrtnhrSh7m+oepKNXaUqkoco6zcWOiycJ5mA=\r\n=p2D6\r\n-----END PGP SIGNATURE-----\r\n","size":28917},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.254_1663365751699_0.02635635308888662"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-16T22:03:28.728Z"},"1.4.255":{"name":"electron-to-chromium","version":"1.4.255","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1139.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0ae640cd9e2ebf63ce748ac16914998e4d862919","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.255","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-H+mFNKow6gi2P5Gi2d1Fvd3TUEJlB9CF7zYaIV9T83BE3wP1xZ0mRPbNTm0KUjyd1QiVy7iKXuIcjlDtBQMiAQ==","shasum":"dc52d1095b876ed8acf25865db10265b02b1d6e1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.255.tgz","fileCount":13,"unpackedSize":190437,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFBnIjguGAvmlo222QLSjBH696XavnSiEeat1U7hCg3XAiA0aSQzUDqngAi8EBuB8nkhXhmWVlZRvUhXOzEPZRZLrQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKOb3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrifA/8CJYH+vnupdqQcEaSGz0LD7d+YUFtI6hvpKu5FW+zBWvNGIq7\r\nZg55ZybJbsAW06DRsHftfqnmJ3T3tuKDlJp3timoD5lLx2XHX1tY1Oym+qRa\r\nIJOl/4smLd+yNb+KYXI178ccNp8ighi+xXkagTz899hFqvLrnDSoQkKgtE0y\r\nr3HsYwkDzJH9kfv7LLrx2x5sxyzTJ33DDjElQ0Hl8o4NSV9/vN3BuCnXcvXj\r\nbEcvPF/IIXHfN3bvYzEorjBBWsW6iKu0HqKl8+ubgV+QQbtCtMTrmBTA9f4T\r\n00nyVT9mclOHXJN8GnlTQttvm1zz07Z8GeONsBRgG+x42vZ1PCYZ18x80nML\r\nr7TU+vLkGoq5+60GfGtznMZau5K8uVkdD1P8PlTcDNv0Or8e2BOjji4O/MP5\r\nYpsbcKx1zol5qmeERiRmq7RH6KNzMF1spSrG0eOCnSf4dB9QoDVIunv3sy9a\r\n8sK+RjoyuqTGY4I3o+Xgb1N0uwW2m/wzSfxcy00UHxDjhdYRf+ojXWTThgcL\r\nOsNfpJpvDNXNCJdgJFYaRUJlEaJ76k3uCVHHgbjUtpuMSZzX5RfKXyeGw2Ok\r\nNqSTLIeN2q3oRRlEODDflyFRnTQudapwC88AfmZIMezFz2UAXFLbcGcd5zF+\r\nmyIWL8LYuSwj5/tmiCvBQh9+Bi2wideOazU=\r\n=Tc/n\r\n-----END PGP SIGNATURE-----\r\n","size":28935},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.255_1663624951534_0.5722036021989596"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-19T22:03:15.509Z"},"1.4.256":{"name":"electron-to-chromium","version":"1.4.256","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1140.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"feeb0b664182739276b6ab9a6145c52d0aa45066","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.256","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-x+JnqyluoJv8I0U9gVe+Sk2st8vF0CzMt78SXxuoWCooLLY2k5VerIBdpvG7ql6GKI4dzNnPjmqgDJ76EdaAKw==","shasum":"c735032f412505e8e0482f147a8ff10cfca45bf4","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.256.tgz","fileCount":13,"unpackedSize":190577,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB9wijyD/5UMJT/Bk+NjckBy77sK3tb1clk1iRhlGX1rAiEAxYLQhsWAH6A5KmR7rNGhcvl28wtVmz1lphlPytJACh8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKjh4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMkA/+Iq583RxgXiOje3RgyleZDv2atjWH6eMpqIY6YMKMpNMDiuvJ\r\nwPxcje5BeijnSr8/ysDMrPl4nkdySErkEd8qQnXWd5QnT04yUukaOntOS9w6\r\nzowlvJ7ayVDqfgoKGW8ULHb0twkxV7+LBxa4KzAPxj5Fn1SzK2kdVK3VIqOP\r\nK4AZKpcd687FXtAwqvGl7nh2+vHC7xR34eSt1uLVo/JjxgtXXHIYJGgkKgr9\r\nDN3BjaknjmvS3Ut63cK8mSprIiTa+cNcAbdXf7MshdQ8TthHnBfX6snLH/t0\r\nfz8kWAeZbiWW9m7dZ6b24VduT6TgB/f7nisU/skk2mXe7GoHMhNw9OakVafX\r\nQwrd3zSAO08jU8M3prAtpr+5NWaa4rKl1FvKEzmCeyoXxiM9Cn7yC1UCkZDx\r\nFUHEmk71zodwo4McqUP7lmLgkczeyfZSe9YVzJgWf6U1bKmSosIbqoM0XDyE\r\n8/CsaTlGUOlkmwduMGtC3yQaG6EAM9XCg6D0jqSPhoGgE8yD7HfSuHr+nrrw\r\nmL1nR+sLQGN44oLvKnKbcpkdo3srvA3GhOg8xbGeQl+dH86Xy+SKOuCZl7e+\r\nlvt9SyyD5uQ0Rg0L+dRNhz/PqT0HKyYyMFi9jAafP5PVusu7oTmyhk62st4u\r\nWUuSanXno+r1JO4Ozs86F0Fut/YSGnLdyDQ=\r\n=/yI5\r\n-----END PGP SIGNATURE-----\r\n","size":28943},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.256_1663711351839_0.15993287828135894"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-20T22:04:21.544Z"},"1.4.257":{"name":"electron-to-chromium","version":"1.4.257","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1141.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1d41af27df76bc9aa8145d0c8ef6cfe089b1f0e2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.257","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-C65sIwHqNnPC2ADMfse/jWTtmhZMII+x6ADI9gENzrOiI7BpxmfKFE84WkIEl5wEg+7+SfIkwChDlsd1Erju2A==","shasum":"895dc73c6bb58d1235dc80879ecbca0bcba96e2c","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.257.tgz","fileCount":13,"unpackedSize":190865,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIASYStQd+Q12Lq8SPAi8EO1/deDu6hrSnqhoF7UpP8o0AiEA9HqIAhaCHOEN1vYn7iUt2yEGmDnPvUBfsIc2AIapIjk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjK8I3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4Ug//ad3nPE//ZaDQ/hkwm3gtLwkcoYU5Vfyra/kxua7zKKSQho9g\r\n0/K0n+gHVvuOo0OpsEv+uZGgWSqsd/FkI+vfWUsprHew3HTFXBezbo1zx9d0\r\nDJxIjpk5b9MoR13mKE2mzpQyd0hVtHGzXrPu2vYl2t5E7RyKhw5hNYAz69eF\r\nRB6lALvekPsaWJTNoTPyH3mabRfJY4DBml7fCzWjexSyVCImz8f0kSdJjaIv\r\n2Tnt99Lx6n5/YjurgvhsIjcGZGQ0xlGvQx6d8yXPn4jPuJtoDxOzOefDTKS/\r\n72K2tzVACsmM1h4QarAtEPb+zHvdBlmVhOAixK1i1QoKJdzBAs8JNXcs/u/b\r\n+1iCJEw6ykazNUewfwiFAlQniAgtDqdJzsq5+eHY1pwvvKLVMEAvPitB+K1+\r\nvZWmDmaRbZ7D2zafS/DA6A7JNupSbhwplAKOJT10ZqjJiu/GHD7L3xPsMiej\r\nMzeDXoq+RTSnf/TxyxMObfyd08uZOn756lY4mKnnA94Pw6K9pXK2Awlb/Xoe\r\nY2ezC8dgc0AD7CqEReMmXlIc0rGjTE+MrsnUKOgGWZgBCGtwtF7LmKirAstY\r\nFI9bYSVz6810nmFO50Tpm2lDnZ3eNjXD4K6LxOzNvPXJYX/8Bov8VIx7m1VX\r\n/B5lw4YCuvLoPZ+1ESenCKdUQ9PpS+C/guY=\r\n=wNsJ\r\n-----END PGP SIGNATURE-----\r\n","size":28990},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.257_1663812151240_0.9816798205013302"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-22T02:08:54.170Z"},"1.4.258":{"name":"electron-to-chromium","version":"1.4.258","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1142.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"d169d967c100a32f7f50bc2a78395f7c6a7cbec3","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.258","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-vutF4q0dTUXoAFI7Vbtdwen/BJVwPgj8GRg/SElOodfH7VTX+svUe62A5BG41QRQGk5HsZPB0M++KH1lAlOt0A==","shasum":"44c5456f487be082f038282fbcfd7b06ae99720d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.258.tgz","fileCount":13,"unpackedSize":191107,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIdoGSrulYDY4dd5T88g1CB8197vM3rZuUCxNHJmubMwIhAMUQkkI0XulLsRejABuq5waI7+gG1acRmMSb0V+oFGu/"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLNuDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNSw/+KrFFtoWrMh163vxjGL2alyR6Qk+CjzSr/hQYTdehPCo1UpkA\r\njHGBjsl7LnR3zpDypCVDLasdH+gm/qpmDSduwcy0Hw1QmWpoEutaRfJmKgmu\r\n57ydMJt0wsPrZOzNK5g8uufZO+ppDVUv60pgO3aRn+AhISd+3TzDN/9FuANV\r\ny/FiOmKYiwdsm+pQXmIgA8SW9+p32mtD1VEZPrcJrcEvuqwkSkim8qp7Qzch\r\nqxEMzV84MnSRkctfSc0tJYzJxeRMX1DbX1W5EvdiGTCt1dz+WmGASmDY/YVk\r\nBudFZRzkH7HgoiNbkzInXcBJxOLZagHxXnUvBRgzcBtrbvtpBx35E18CMCIc\r\nHAdipfySDV4XfR+WpxHzFrAwaJ/gdfpRxuUKVFyNvlbfCeFvTAGD2KWvTRs9\r\nRCijbl+gupMHp7O3WUNRT+uYLWP9+UnQ+H36NF9/Coovt5sBpwrdNPoCETO9\r\nrNi9FSFLAtjeRhdvW0ROmP96JAN/Yvg5mZdExCpuwn1G8qnRP5/C7nvA/TeW\r\n/qE8BFS9HElvKbJ7TpHd9SLMw2D3ceFKCQZ6fMFf1dgmTXcvHSQ+SNNrspMz\r\ntmSw4WLy7ExKBWepWzk+Qjj8oXUk/YJZVpw1UumJeRGD5Yge8lG8uSZpxoNo\r\ntBEsJbiMXcHRC/w6MUkj/oxX2V/Kn4pb+jA=\r\n=rjc7\r\n-----END PGP SIGNATURE-----\r\n","size":29013},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.258_1663884162893_0.7502653735758"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-22T22:03:17.444Z"},"1.4.259":{"name":"electron-to-chromium","version":"1.4.259","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1143.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"e2451b986e44770f833d8f8ad473b5b01ca0f1de","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.259","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-dzbPZG0PKsqiSxfZovjBZn5InX4OoSITSsJ5S/U0QRrFaKsQtHx352zbyqtiDpNpX5lnPCAeBS6D+QpWipqDRw==","shasum":"dc72260121e7cb0863adf27a4951ffab5e7310f8","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.259.tgz","fileCount":13,"unpackedSize":191247,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvTSAX6iq7eFsj5omkxhsMjbT30hErrvJTSOAjt6DXLAIgO33ZTcqtlsqVIZqnJAtXkyitIKr0k4dRrfXv+D/fkc0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLiz7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQUw//XLK9TDzkl1wc3tf6n3ifDA/eRvQklDr8dU3zUALAYfgvpwPK\r\nlyIMfme64+zTENpP03IqpZgqwS6AzPLcsxJzxEe9KN3mVwCGg3tFMiq0V1Zr\r\no9+o5RLyCAr0H/BquN3JwTVFMPHlqafObay/P+fPoRDmgyzdcVIahLEztI9R\r\n37SmYxo9IPnoGNtak3lR534JO54Xe0eSBZ9DCL7eyQkx6jfAvM/K5w26PKDE\r\n+dPbkkO4d/um94TEFCEVIKALvmOyUEv0ZsvibmkT8yv2SfzxGKDNKIITt5s2\r\nLZpg0GUxgqdah1QdZ3Oj07lcGNSlr7pBNTUbj4dNDrE+3cdKQhJ0HwcnREZt\r\nDSHZUpRd0d/oZ4aHI4jPLShixWbuy2yTRDlc7KK2mukVpgsP0fHBGDzawcWw\r\nmCNRqcEx5WdUIqR4SHPkMXYIDfIM5KGhRRDPupSF0cHTW/N50xf3ILwYJWEp\r\nBeeMgI/9THtJnZpBXqQakpOD7vGbOK4Vbm70BnqYATGfcVjJ70+EO5jRp+g8\r\nI5qTc2bNDVerWB92tnI/cfnnbQHDLrWHUhFVghkTGNPQ+L4S2aiR0wYavpqE\r\nyCMDL7j/fQndieEJUqY+jZX0FoD5DAgUr11cWBb/nmxf02QdAVg+Yv6jlKE4\r\n+RTyfWLbfsKhb6xj9yx93PYIfs19/TJKOkY=\r\n=eVEI\r\n-----END PGP SIGNATURE-----\r\n","size":29028},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.259_1663970555308_0.07878636026665453"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-23T22:03:13.359Z"},"1.4.260":{"name":"electron-to-chromium","version":"1.4.260","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1144.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"dfafedda08bc8ee4ca0995f4d6d9b60d209f07d1","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.260","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-1GxPM2Bdz1AjuNjho9/TqJfxM7KZ7R8s4vA5cbbIoVacQXfvZlV+d7Y1lu4BhGzEBfjjhakr3NXKqN0PxPXIsg==","shasum":"9aa3348d037686b47ccc5d3b48fe417b1f20017a","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.260.tgz","fileCount":13,"unpackedSize":191352,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmInKXPHi+U3Y5fX/Qznt2XtCHCqK2qkFvXaaoXc8CPAIhAJkc42jJIzDsLzWywGOAc49aNjnmpOSr41yx5nN7fYLN"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLmU6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpoHw/+IGWolKJ5MI8UsYwq3Uebzox9hwjtY0GhrLYp6W+nPh7ODJUE\r\nREOxr3fwQ5xijnNrMoh5t46mrLeuTK9U7UK3Ol1E9th+BcYBFCq2lQwQ2EYn\r\nWycUwICyhfQr7i0lG7uI2JR0CGTXHasImIxy4BikjANVE69QfoaxNFac4Y2W\r\nzLZoDz81wAwunS9qTMVl8OzxbXmh+JhbqMu5vJuyTyXGT1RzkIz0OXIwhIos\r\n3RmHjbyJ86+C/uki+SFBPcShZZrOUCqDSp8ZJ0IABHg7Y9JjyMEYXkzxByA8\r\nst+vI61dDYdiUhsaFsXNaVminwUYbL+YKo2QwFSu3/c8PVHC0mchqC8M+y+u\r\nk46LM9P4on+rS17Z7s9iWmHrbBPFrplCcgMJg/wvAKC41pFT4GWdcacynyFB\r\nWN5KPHSAWq4nAp4pMN60V7OAGHOXdDwnMoKyN7T1ukB6JIpft4UB/PfIIAZY\r\nsnfLOLS2b5+jSH9utqjRTDVg3PBUOELD+GJqC5eSPemRK6ndasyJczGJoYlF\r\ncZlhhffzqnRa3RX+7rdbnAag1Wq5WxxToc0jf/J9qyMV6QBA4BEai56ejBX7\r\nbmVml3ECJ4ezTm9AD1IIefVpRADMDdT8EhBLnJIxN5koRzNRrw8n2kwSfiHa\r\nFjRB7zUaQth7q6WeaTpeo1JOZdR9U0x2nmI=\r\n=YKDc\r\n-----END PGP SIGNATURE-----\r\n","size":29049},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.260_1663984954039_0.9185351328263298"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-24T02:03:17.461Z"},"1.4.261":{"name":"electron-to-chromium","version":"1.4.261","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1145.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c3e2de7e0d1a178de61d9d4ec1d7ca088d31703e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.261","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-fVXliNUGJ7XUVJSAasPseBbVgJIeyw5M1xIkgXdTSRjlmCqBbiSTsEdLOCJS31Fc8B7CaloQ/BFAg8By3ODLdg==","shasum":"31f14ad60c6f95bec404a77a2fd5e1962248e112","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.261.tgz","fileCount":13,"unpackedSize":191432,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFLXR37V0/ZAJoD2bs1uyjfdfHIesRHKAd+tTCHEK+gxAiEAkXCz3LoDbyzXFCuRem/vEfmo+lBcpvf6cIhrJH+2uiI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLtW4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrEfA//bXu3uVgjjer0Wla2CqAERn3oA5bo/BOlzhFQPrsf6ruMPyvW\r\nE1Hede7d+PF1FHDL8sjnEDRAkOJe8uWoF9qhiRTdcYjlQMqL2xqsoMix9QPL\r\nWHa2Mb+8dcE6bE7U5CqSQRnGjNlOT0b0pm8Ue0fJzGwalyNISri9ikUCgCVs\r\n2qB7pyHoWHEwhJjPxKwVCXB4dTWGX24WizaG38LYAly0WqJg3v8YTfvYCzj6\r\n7Pq7I1IqrTHkhe/OYb0MYydtgLhgVJ0/q8hc+8/X7E49uYcf7JJWVyg/z9jj\r\nCbo+BXcjeTb2UuNdhTunnkaJazN/fL1EaqpftMYTUi2q7b+c4ruS+oFbxwcZ\r\nzbtyXVNT6u1ZqADggFYknmu9XFUXEmtjGMAj2kkThYGw34mAGYovW2kIWM2Y\r\nyo+CiUVnkdyLJcUpeT03Kr6YAdfPPhOd7HnHsqxdOdZYCWacHhQenWuz3/YF\r\n4WURq14wztxRr2pnMTS73poz4mg4BNOyJEELrOtfZNMcuUk0zV27n1+1zdTB\r\nWq2B/L3vU1p+Mt9BmwE5ymXVJ4BUMUVBlcyHD6NYh1Qg2+8EMthBqYe+z39A\r\nko56Y2q1ADmJRuFZnVMo5eNqLX2NZg8oKSAZtdTFsdKOXYbzXavrNPujE7/a\r\nBXu+HQUvoOg4MHe75dxKF2Vm7DjjqgETkhI=\r\n=b4Hu\r\n-----END PGP SIGNATURE-----\r\n","size":29065},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.261_1664013752102_0.20565038082345266"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-24T10:03:43.638Z"},"1.4.262":{"name":"electron-to-chromium","version":"1.4.262","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1147.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a8c8ba873e882405ad317ec28b4576a3a186e1ec","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.262","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Ckn5haqmGh/xS8IbcgK3dnwAVnhDyo/WQnklWn6yaMucYTq7NNxwlGE8ElzEOnonzRLzUCo2Ot3vUb2GYUF2Hw==","shasum":"25715dfbae4c2e0640517cba184715241ecd8e63","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.262.tgz","fileCount":13,"unpackedSize":191142,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIATZ+LNi/4j8naRpBA65d8F9GSRDxu+Qayi9XmclUogGAiB23pYuPBI/wRNAvYyvXBc0J7dloLXyL+mS0T3LVJ8DrQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMQg8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrENQ/9ECn9uL/jvHK0vKIUq+2zodBQJuIJ1Yxz2wHGhmOAXET4tusq\r\nG6Dm5pdandZ9rXzk5z1TWHjAcpbBoFV+S/Z9mJN+C5rXpaX1QLgruIb5SEm5\r\nNO2zE75FwUBL5k8gyq1RrV0wBGJNX+m0OqCMWyh1Hzu6WFoUk6pigfdk664O\r\nMtcHpP9cLzf5xmonCeE/qhP/64njLx50x0vbRi/W9Pt79HStCRn59L3vN4MB\r\n7ACHB8e05Zt7CYshj+TN8YggFi7HDC0Wi17u7Jl6ccjJ4LWjyfpEAgPAr2xN\r\nnSByBNdi5LKNdQmzv3NkZHEOWAoKpRiNArTyazM+kv1esi6YFkS7JlT9DhoM\r\nt5SQSK8L7IfphMVzaWkdrx6ZyAbVcIrrN3U7aaUTGJ70+ul9rgVN3tqcDAfq\r\ndmmVi/ePeNfYg2N9YDSr71Z7X+y5UMkE9aonu3O/QOeg+d56FXDwoK9LVlUV\r\nRToPY46wLDtzKP4/ONwNJ32dBSCZgraVKHZ9Z/yOFy9QJwbUstg/GmyQdQDX\r\n8Sy9JaL2PXAw1vRkoF4Ghi1BHVuevg/pBxr/Lf0sXnpTCByT05gwL/LlII6S\r\nrWDM0Qq2645yLqmhiFX0H/x3AvbuTAi4ujv3m6F2/XcPcpLOEZCtyZjDjUOe\r\nvau9L8Wl9ZK3KOX4/tO7sDg0izPeq8EX1OI=\r\n=TLtB\r\n-----END PGP SIGNATURE-----\r\n","size":28991},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.262_1664157756437_0.9268300399954419"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-26T02:03:10.875Z"},"1.4.263":{"name":"electron-to-chromium","version":"1.4.263","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1148.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"0782d9da696ac6ced64f6c9659fa565fe6417cd2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.263","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-RcvChwbVkZBe7e+B23+wjXJgRHTy9Byu6JEL8HuNKILALs98deLnyGqv73nvwRKj6VGghrwnwKWC3ukVhQDvpQ==","shasum":"4cbb8263165cd6d7d1ffb39ce27e2ce6a7f6cb5b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.263.tgz","fileCount":13,"unpackedSize":191572,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCumdD2mhx+/dmhV564s2sly0vClJaVKXU0h2p0ShYP5QIgeYgQV/6ogr2NbjKkkM+jizvpEIT+SRAovnvYl4Svjp0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMiF7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqsmBAAoVJCDNsewlNXJbwKVb3/4954Yr2sRo5j/E662BZbzPNi3nzU\r\n83ATmsmzzzpmrb3RIxRuPAjmslDymdYCb14LZCy8IcEo9nM0BKht9aNg89GD\r\nFvenA5N78IdzOiM4BOGosLaABd/O4kqw3Ika6XfzJT/JnmEnpBG7a+5ykxbj\r\nI6zrneJapek2KitkE9vV+YaLPeVpjlvMe2wqtj7hIKe8jfCrA40fzvadEedp\r\nPIb37uPaVAbOrPCQ8boSamsn1656wbh7K6sQtDGSEEPF3wAEsEitKKQgLkiL\r\nz7SvxYAd/+bpxwDF+fuIyOK2rKiokuSnPByFzCTvUROMfeG8dno094Ji/GWL\r\n1z4aemyKS0PRvPJqdDPSW6ciD78zTJDkAX3IMk44CWfz67xejS1wtVnx3D95\r\nGmkwCorpUBzmzRs0Z9QSCioLIRNqVtDCf+eh/KdEwsz26TxSH5oXspuyG7Vc\r\nF0wXlnQUH0+Zj9gIF80DWbvuZeTzbxXUmvK6jD4LV6QhXJpubsa3PhXFQ87K\r\nstCh4u4DA4VmqF/6fJoAb53rAuSi9GhvdqeTU5hsbcD7eJ6U6cunJVNV1ICF\r\nYYOUe6IPeEHLnwhsvSPKmRzebxJELnQ7DVyFbgVRkux10WIolcQuWC0kyUx5\r\nCrBE5Vydi/t+fV5WHs+BCYINEh11ACjcCSw=\r\n=71tX\r\n-----END PGP SIGNATURE-----\r\n","size":29077},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.263_1664229755634_0.9074195656619175"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-26T22:15:34.654Z"},"1.4.264":{"name":"electron-to-chromium","version":"1.4.264","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1149.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"02e14570ad736850ff6efa92f41ecfc45b7637be","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.264","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-AZ6ZRkucHOQT8wke50MktxtmcWZr67kE17X/nAXFf62NIdMdgY6xfsaJD5Szoy84lnkuPWH+4tTNE3s2+bPCiw==","shasum":"2f68a062c38b7a04bf57f3e6954b868672fbdcd3","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.264.tgz","fileCount":13,"unpackedSize":191687,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDFwjN0Hp/WODulXeS5CD3dEOGSUlQlnfEvcoY64RfzTAiEAg6D7irlI4taPuynYiqhVebzZj53H6JyBycWQB7EgBMI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMlm8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrr/A//S30cgO7517qEKcFzdGeBdqgVwRBNZVXoXYh/s0kj7Aq3SJWH\r\nyRFYDhKccaf1yHNm6AhEN03CFI2mlSTkmsvu66//zQX6+iES8XvmUXKoiNOg\r\nVkGgdjsjElrqxpsHdwU2HT88/OC2guTQURtn/Hivnn18BAHzM1l0ZoSYKesP\r\nuliYgCnxJhherIxzaJ4DGp6hHHkVPp2vlG2HJ6k1Sbc6yHVaw1yQYEthKktG\r\n5UYKxnVJ3uWN2uRCCDa00tZNUj3+LbeOvJ32kSrqbdcOJBfJVoJt8p2T+tSj\r\neQW2yBrElmChn/34/hKEV4FmQfupeZi6w30NDZ9sw81S4eGcyCWAHYZy1iYC\r\n01jtUjbObxdxuSvst+IAnQkR0ZzaMNmjlQrDi1sG8fWAY5f3qGwawOQ6eodN\r\nktHFt2kmPmPC6YC8wa4GfQQT81tB8UQOqO0TfwwaqLq9OyHMrYf3zd8pabrE\r\nHZ9X8EMIvV9m+QOPSBocZeFBJKy6XPW0AXq8oMtz4plZ/1wcq6TM93AwOEc6\r\nPRH9zhv8I/0Ix4sJ4qIY87Y7vXIg68E/FfnsfRSiNXxbszszosPCgJP8jbd7\r\nsYXi7r99BdsO6WMtslGzFF3U2HK6jKwOEJ2z7XeDlwg1nhg8xXi4HZe2SlST\r\nC/hFiCDwkFVpmZXHr7kyJgSdQJg00+wokLs=\r\n=QZun\r\n-----END PGP SIGNATURE-----\r\n","size":29103},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.264_1664244156068_0.6362883582167727"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-27T02:04:50.793Z"},"1.4.265":{"name":"electron-to-chromium","version":"1.4.265","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1150.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"bddee45883e9b6c045061230cae6436f6b4be5a2","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.265","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-38KaYBNs0oCzWCpr6j7fY/W9vF0vSp4tKFIshQTgdZMhUpkxgotkQgjJP6iGMdmlsgMs3i0/Hkko4UXLTrkYVQ==","shasum":"45630ae190228f945ff79c060b99574b1347e5a7","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.265.tgz","fileCount":13,"unpackedSize":191827,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDrrDIk/B0idHxHBQ8EwJr6JNqqL+MA26U8UyLx4wOZSAiEAiQ8mzRaDl7KGH6HLglG6cvjgmf8tXyggM5ldZfkY1Sg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjM3L/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7QA/7BddSlZhALWaHhS6uPBZ3UWGKn4s+fVC2embl/u8/yl/rdiah\r\nd5D+iLamJSxRL78a1y6zg7ZMJaH18Qsv63AVO/zBzkmetgZIvyI2mFQg0ymp\r\ngaGBX+/cdtUOHycxx9D7Ctf/zDCq+AJNUht6pa0kN15Gn43CbzVlWfiVw8EF\r\ncaAsEcPJUNdHF+eXGVruEOT0Wp11C9mnSRmrr8sZIKo10aBli6Wi/ZH6qsc1\r\ncccHoau/jcGqUekOKAFPWfwmxetkuXHKwR9xvsoAk/8HkVL5rh3eRTT/4kZm\r\nWR77MogJzjTw4ENuiABaTA/9Yye+4xfE0K7ycDJ2xJE1uKlBbo+RxFa90BJ8\r\n1gybypCUaycO6CkBZ+PoiUgr+JlZjU4SSOH3uZFS2KcC20Jgcg4E6zHPeMVk\r\nHsczEzp4dlqp0UVNj58scp03nL2S+9UL66zi4YfH+s53j6TnK59uXSqr0d7w\r\ncL8uhNEVco9cCCySMAHHTDM1VuEAgZ0w/TXqcJTEBn+Za9ARjoQJUVM0pfVL\r\n5wJPBPHpwbZ4F5nohz53a9ivdcaaEu4UTdPhYeYvibDU3AtTBPQi8fFNivvd\r\no+ZKDaER0U7l1nluJKUj2NtreuPManZAyvAYJyVfmFSqYh6oCE1dTMZ1AKL7\r\niZXZhHCBZTZ3ZXwe+BQn0sTLFW86EolraGU=\r\n=AXfZ\r\n-----END PGP SIGNATURE-----\r\n","size":29115},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.265_1664316159210_0.3293135779253815"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-27T22:04:42.221Z"},"1.4.266":{"name":"electron-to-chromium","version":"1.4.266","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1151.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7e0a374d45a1d5f175c5d83f5c9117ae83761073","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.266","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-saJTYECxUSv7eSpnXw0XIEvUkP9x4s/x2mm3TVX7k4rIFS6f5TjBih1B5h437WzIhHQjid+d8ouQzPQskMervQ==","shasum":"b2ce973eedbff309e2b98d1ed348e447bd4681fe","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.266.tgz","fileCount":13,"unpackedSize":191907,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBuv9Nad6syTFy8EeeMCqBRLX9xL8jm5aXlTocEn9q1PAiEArdlb9yV7ToihluRya94upFBmkNfCVeIb1pZyvTCl8RE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNBu3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpGXA//c3LdziyDMNYzCg9qRTOm9bVt/lJyYE4kz5xlkPaBeiUUq1oj\r\n7GkTjPynmr6SYkT3cHqkITOsjLQRL76h3qMTDpZ7XVaP5eQLIkLU/mmTzqRM\r\n2abUgvRl3JVzKEkJOFBVYUPGNGBZRt/C3+Rifng/Z6D7W2cJKb3hRSG44yJe\r\n+U+vh3GTkyYyigCaMran2VrPYnzmpTmFNg71C2wL0SSEIgJHJshetlFhIkYj\r\nj8r+ESxpiHqKkYnEib+TAUQ540kfhAoDSFoSZ52Ncz+2iBn9GG8R9HKAGpMG\r\n+tbj8tATzFtfmres/Boeq+Sr3kPQuEb2KrmcZ/mkSX7H8k8nVfM1HIHWIBAO\r\nbbQLOMM9Yh61W9/d6SNklSPUlhcnLgkDSnQWRfiIElC16u6hknmJ3v6h00T6\r\nX7z3QRjMrx5LQb6c7+y8i+ylSOK7ipxP8HlN16FCPwCbYkPjScmnDlufsIjU\r\nbgsxcAfsnaUZeL2Z9tt3f1qMPk5cLuinO/oODKLWNGw63V/5AUgtu+jKp1q7\r\ncRz6bsMwFL7mQxTbdNQlPwBGBzsth9UxrnswbE43pkcgnpo0gwG66/6jqW2R\r\nXXZknVafo3j5QLSeGFrjd+MNCcqfijL3Y1RA3SggtDztmvDn9oLa/RlQXeL/\r\n+jO2wVuPWXKYWaSvrVnbcWSUWFPZCG3kLcU=\r\n=bMqg\r\n-----END PGP SIGNATURE-----\r\n","size":29132},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.266_1664359350981_0.2713540064922155"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-28T10:09:46.161Z"},"1.4.267":{"name":"electron-to-chromium","version":"1.4.267","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1152.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"19d8abedd072b9d96eb5cc7d0aeabea9af7d9252","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.267","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-ik4QnU3vFRsVgwt0vsn7og28++2cGnsdgqYagaE3ur1f3wj5AzmWu+1k3//SOc6CwkP2xfu46PNfVP6X+SRepg==","shasum":"77d7de2b92806e3e1df8882a982aece815d6b6ea","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.267.tgz","fileCount":13,"unpackedSize":191866,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBeqWfXyXsqgZLsQegt/TpvGGpz0IiRg99Gh1/DRKXP4AiEA7Ni0xoz4ugBtWh/8zODDmW+RI/DtrqzphFBrtE2NAnc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNMR5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmovYA/9GhKFS4zKByu42KzTJHQb8mcY4GUfhHO10u/4Kiobq/ihzffF\r\nzulOQMShMksxnCXSzGwYufanZCP5+LPv9ESI9gqJxQoyj92+WcLgO4jFvl44\r\noOspAVKhNSXmOnX7lVI/gsyWAvwLT9lRPyAqM/GHVEtYIiyEt5zsHuwMk4Q5\r\nojJ0771k4ZllNJmE5mQ2w1vWfWgeK27Qs+n2tJlWTVXXVoahX8pqVwIxoRAp\r\n9HjAQbporoukh9uwxzr4OTY7nt2ReDKuAseM2xk2rM11/NXxAnjGdWiri2TC\r\nNIR6bR6f+PsldHzKXp72SwCNjEz5kkhKMuVkLNa6pENy5pry1WMNawRDdle9\r\nUI7roSr8XgHh39r9nZ8OH/9ZqRs9SS2sJqfLqwZEwyBsDbJ8eAYg58eAKrtC\r\n3ND1+T5dsXw7XfGYg8UPYRk//wbSml0lQj69dKKqSDv5OrcvFBuF7xnm3or3\r\nmAyuquDZIbJASrds36w3sODtSBUnSqm/y7B+822TfGJ4KAOO+vL2p9+inT6z\r\nfXNt0Ctm83OC6dOUTVO4tA764EhfB3Nz66JbCXKhgTfospt/MIFwAo/eB7uG\r\niFUm6HIjmwh5eauK/IK0RAjFfDBiUI8sJ733sDTaV0Bhfhws/ej45+NuxGRT\r\n6WuPwEpPVzKANuZ086lEU0DSFSMWZzwTs4U=\r\n=iUOe\r\n-----END PGP SIGNATURE-----\r\n","size":29132},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.267_1664402552780_0.4586969472305642"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-28T22:04:44.151Z"},"1.4.268":{"name":"electron-to-chromium","version":"1.4.268","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1153.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"74c4b2df80d7909ed0df774cfca9ed15d134280a","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.268","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-PO90Bv++vEzdln+eA9qLg1IRnh0rKETus6QkTzcFm5P3Wg3EQBZud5dcnzkpYXuIKWBjKe5CO8zjz02cicvn1g==","shasum":"5a902075f0209a628837e508a66d40ace04d54ab","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.268.tgz","fileCount":13,"unpackedSize":192505,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvAIaUwAFiUWs1TzftYYAKxZb05KDeNTc9pBYAY/lGNgIhAMd9cGoH7ScsTGvo+7tV5hzWTPaSZms5PRRM+GQ0PruG"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNPy4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoF2g/+KVaV4evpPkhaTqROXKtfJR+NoBG4LeN1Qv5x647Hpeo0K1dN\r\nTn84i5z53RdK/ycu+l2Ng1Iuk7m5ht8YLbSaK0y9FFaAbdkHkqKxjtj2Yxqp\r\n3vJKrb2IW1IhnncTBFnWECrWdFYvSe49zHKhANTX5Z6nzrxnLal37HDohglk\r\n4srVkgx1DEtlno3o8t5BjuLaIasixKRFC6Hml8EY4/ywfCyiMyr6uluGa/f7\r\ndVeDP7OkahpoRGXDvxJTeJt8dT7N+rJauWXJx4Y6h1aLdyGPYysirqF4JPFp\r\nHti2pAYP+29m5cM4LRKFRu5KJkcMAqxLu7AEXik25KIzYqGohFdqLx8v3ElQ\r\n5GYirUa5HFrnsIK5Ise3wjpY4vSQP9y2OXJUBrBJiMu5dwIZA+bT7fgC0rpB\r\ngG9G0qnPmM/Di/6XPKSmoDI1/6ORp4vFG2xsmoQ2BoNd3s9z4/yfBSkNjwYO\r\nvkLghNKdGmMOFKk+k9MDG+1Mb/If+QFUqgZ0bzs0WqOfG2V7Rh9/kecEvP0F\r\nlsEdDlR0QdGQknNRJBI8xrR1olhIIorC9Ni0uTQQlByYDGi3UDOlUbU6fOGg\r\nX/plrTfTUuVmhj/qKwJT3hd/ZdfvmPBgbRsAGpa9oMGpigoSsPrlUAHDRq4b\r\ncBYHwnBsBAVdCuWrOHGSt++uDOLxwKG+HpQ=\r\n=Knq0\r\n-----END PGP SIGNATURE-----\r\n","size":29226},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.268_1664416952592_0.1363011301951067"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-29T07:25:47.701Z"},"1.4.269":{"name":"electron-to-chromium","version":"1.4.269","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1154.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"c40443fc92521d313bc219ee00ad4c24b0482599","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.269","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-7mHFONwp7MNvdyto1v70fCwk28NJMFgsK79op+iYHzz1BLE8T66a1B2qW5alb8XgE0yi3FL3ZQjSYZpJpF6snw==","shasum":"93ea2724b07f5f562daa7dd3740a1d28572b028b","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.269.tgz","fileCount":13,"unpackedSize":192645,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBFKLa4Awnu9KOtBoIwMTue+dj08BkD8anhinHGEFdEYAiAfdqhUev6MLlpnav6b0iL51W7irX938Z/BAbrd8RiRYQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNhX7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeFA/9G56XW+HdLxPs/aoQUT3PB/RSM53uFbiG/IZk6JDNLOr+4Wza\r\n4VztwC17IhxBDiPcPTkd6A4psFD67rwPU5ozdR2NYcvxDOFkV9430GqKFo30\r\nC3G3iNCOAc/vMIb8hPgRDU0e+VnzbTQQYbDITahbgCXKeQGXOYkgHGC/4jLB\r\nYznyw7APw1tIZAfrqx6rKbEpQbSDRdn/u7U4KCkReC/w/1bEPQ37EjCZYrcp\r\nh0L+UL5k7jSgDbPEUjZ1I/+c0lkKayk53R6H/emo0J5xekJiFHBPLOOHnTrT\r\nL4ZVnplUgZv7Moa+CoWVlkBiec4yzp1uF+RMICwS6Ly9lHatx+Gsa04I2Buw\r\nJVdSTBkK97G35Ia7HQ2kysQk1rhJJR7EhNevcxrj4er0/5evtpJ2sGNf2ft3\r\nO1/CshO/2LjfeCop7pHuCpSmbXgvhNp/9CwIKh7EDJxpsjhHKOwQLbBG7Ypu\r\nSl5orNHX5atSEkGrCNGWPK1K7mGJVpIXqpV+xQjf+kNaa6NFZEJKWWCWzKHj\r\nhLX+C2FGXTZwPeExeHTOrLqwB2MsIyxtI/OWE5H84jaEw+2U9UAZ0pipfP15\r\nvrDVveyJjaF4+yajOxZvGoilyVLWya4uXgntFB3f5P+hrbUdxJdoX8+CSZzH\r\n1fe5w7v8Qb4P5BqYkF3EXyPKV/O2tKCE1VQ=\r\n=DXf2\r\n-----END PGP SIGNATURE-----\r\n","size":29266},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.269_1664488955381_0.8804932228744939"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-30T22:05:11.091Z"},"1.4.270":{"name":"electron-to-chromium","version":"1.4.270","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1155.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"42098ee9f6b9e69d39b549ec20e775671cac210b","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.270","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-KNhIzgLiJmDDC444dj9vEOpZEgsV96ult9Iff98Vanumn+ShJHd5se8aX6KeVxdc0YQeqdrezBZv89rleDbvSg==","shasum":"2c6ea409b45cdb5c3e0cb2c08cf6c0ba7e0f2c26","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.270.tgz","fileCount":13,"unpackedSize":192785,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4+jKbvIi850KMbDhj90in1U9E+kG+ydF//NxyZ+kApAIhAPSrQvt5gQTSzmJhcQC2IQVvlu3kHr3Gf/ANlUV3E67b"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjN2d4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG7A//WIyWy5N+uMyXgFJ/a0lHUX683iX32kMk9TASS39Fj5JwUXeW\r\no0e89nbRi70eBPz3Dxl4vCjzAqvtIzBUJyzE6AhbY/Q5BimvT6CwQbFJ6+1k\r\nI2k7Y3ad8VDQwFI/2g8dV4LRyBCPGycOllPLMUXWr3+6GBMNc9z5cZ7mDqj/\r\nZF8Wdy29S9VmPN7vn66ashN1nhA6rMWOQN6h6B7j9qaoPF4g+cHS7xgJ0D6Z\r\n/kjQNJwI099sPSP0qRh9ZMycWIPk82fQBqVpIMCqFBVm6M1aswiWwKn9Kwul\r\nM+Q5imsFNFz74THUVvhqDGcFUwdiFBlEKruNzYamveKOcHehxCSLrOlwb6GV\r\nvIrtpcHA39TJmefNU6rIId22DO/zAWpyoVUAKiVXgBolYChD2Mq447DhG7sZ\r\nrfdCSWst0KAS1eJxpj2Op6a53WadkMEyFDVXRAhv1rOBizXN8tztxmd1gHSw\r\nzMdZqtIjYfZ70An+xXBq7L8bHEA/SWGd7srM37zUn65Z0fEWJcWE+z3BCeO4\r\ndnb+BFHjnYIE6nlubCK4Brbvaa4qwDNUFYggCGIduzEjw6mu6qN30hTUdzQz\r\nWZSvukz/YvrhzIHV91O4ismzbiPFyHpdiF09mnfDCws9uOQ5mmHhmu3LMDYt\r\nQQHs95l7wpJt274EwL3SpguWElYHTBos8Is=\r\n=I93M\r\n-----END PGP SIGNATURE-----\r\n","size":29278},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.270_1664575352747_0.18599350389113156"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-30T22:05:11.185Z"},"1.4.271":{"name":"electron-to-chromium","version":"1.4.271","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1156.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1a234fb41b6ad0894d91ba86e4ce9d9c0527d025","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.271","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-BCPBtK07xR1/uY2HFDtl3wK2De66AW4MSiPlLrnPNxKC/Qhccxd59W73654S3y6Rb/k3hmuGJOBnhjfoutetXA==","shasum":"2d9f04f6a53c70e1bb1acfaae9c39f07ca40d290","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.271.tgz","fileCount":13,"unpackedSize":192925,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGr8eb5Clr9iiP2cV9xCpQWKYXiHHC0N9srPsZmlzqhAIhAIibVXAohEvHoA1HhQSlrHS+NBR7qXU44nhOxI04CEBP"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjO1wAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrmAQ/9ExSM1p9YPcN8hxLj9lhZVBZRuhYuYVE1eMZ1gEiyMDavpUj3\r\nnY28yzS+4mn2xDSbs20fSWN07m8B3X1j1UlaCv7jwmuoAQ2WOcUZfku9uP3W\r\nND9alLiFw01ttQkae4IZ5uIfNjVLlXI4PkphsV4RVAKa7LIMDbL3Q8qKRFhc\r\n74Q3tP6WkwvcGAf+pZOVfI9J69OpxBthdAejisxutsrCc+8yHUfiEgXdMPrO\r\n2qJPPk5WkWLwCjO3m3g8X+0haxE1eJczNqTMfwxv9PQDzrrKRlxstCIBjMyj\r\nq9x1UdAq1mDjIH81kyZ8cRSEx19evt3zHeVodfvQNb36xhQ4rjtvhA3yCH6s\r\nOgbDOxXJaWyjj1iR9wE5cBbUg17B/lSTJmkqLC+BzRBo/aeLvpQSA7vEJFXf\r\ns7lx4IaX99C93u8wri+6pBtSyUF7t+2w9RlWx4Uhfzu9+hFI408woX6+OpxC\r\n/A9P61aLuIcqIW/NtqOiaUJqhQcpzjFK2m3Wr82xG7EaIYbsT44/4puwAq11\r\nOHyev0KFgnFxy/ft+Y9tcAV01gnw2x8cMBa0HYf3Y/dnU1+xzWXI5ePcmaHf\r\nI2iX1BE15oSOpPm9o3n4laAxlyT0f+OiGas0s2Y3iS88wgE2ngoq43elJA3U\r\nDRs/A7MuEOoL5ApzTsiOsCKUqWov5tAeR5I=\r\n=L5eR\r\n-----END PGP SIGNATURE-----\r\n","size":29300},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.271_1664834560162_0.4514770181139287"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-03T22:02:58.124Z"},"1.4.272":{"name":"electron-to-chromium","version":"1.4.272","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1157.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8ad01876b197404825765c6478689ccbb1b23dde","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.272","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-KS6gPPGNrzpVv9HzFVq+Etd0AjZEPr5pvaTBn2yD6KV4+cKW4I0CJoJNgmTG6gUQPAMZ4wIPtcOuoou3qFAZCA==","shasum":"cedebaeec5d9879da85b127e65a55c6b4c58344e","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.272.tgz","fileCount":13,"unpackedSize":193104,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJolerDogvt/TIm6422HmGHXbn2SE0HyR8JJWKbMbAZQIgPt9kA3VJZgDthfqglPpAf0E5dwkVPH7v66UIJAiVtH0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPOW3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrwlw/9Fvt9uNFzIxG9Gn3yTpdSrC/GkaejdBWRDPwUjKHoBp5lRXUw\r\naqNweC8gpyu1kahvvhPMJin/O81u882Ro4XmERQwA3ZEINZZw2PKzHCJYMms\r\nHni6IPZXhbprElqMQl1YazsBnQ5bg55hKOc9I1XSXronJW4XTU/nT4BhvMW5\r\njfbyKFsCgImoSXv/Xp1SKI2u5lYzKzHsZi/TSoiQST4Y5Kd2juuXjdEjBsLN\r\n8w2rjB3u5E+Up3MoBZKgi+C/3PibxAPO29hQGTTtWGE8VOj+XC9C42mDWxjU\r\nfIdv7GVa+1FdDQrIZZByR2mdaQcLCDilFfEqAdv5DeeS0LlzDb4Khq3HaSy3\r\nSk3jGk/xBmiAhCnGdXcexcvE4AbMtVZJ2lxUV3xSLYemrsg8b2jrHrKqE68x\r\nFy9bL8wmMyFpzm3473BVJseU12BKZl6vMkenhuUU9SUXgCQJHsZyFrwi4ECC\r\niP8v1zmqMfq7toBW7S3ZLRhenH9MvBSRZLX72fV5NMEG+S3/AUyc+ruhFT6h\r\ndOhEu1z/BDuFVIRhJuPzt/ZiuSJkGwN125eH1P60CcaF8s7qpSUAQNfL2itK\r\nECzv8NP0ou8i7jh25b2gcxbYs/3Q4/b4ksU7nKBKNMAWDj1TYFFbOXVj0VNV\r\nYTE9CyjttiUTlhNY2Fi+WhKqB1d5Ve1HurI=\r\n=jjVO\r\n-----END PGP SIGNATURE-----\r\n","size":29345},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.272_1664935350802_0.3229392597165692"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-05T02:02:41.100Z"},"1.4.273":{"name":"electron-to-chromium","version":"1.4.273","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1158.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"a7e1ac589564502f7af2dbf9de49fa0c71a3e79e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.273","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-iEx72lv4P85PJ8HA9KEAss4o6ESK+hcxzM1cksZDo0H8KekaI+cloQyxOCASmHQO9ogmGyEELtBzxqqdeNwIgQ==","shasum":"2a0276553172874617665807a40bea95711c2b9f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.273.tgz","fileCount":13,"unpackedSize":193244,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIASFC9h5gBz6MPP+CpYLghFTCE4zqORLKzTgtUYjYeQZAiBeQf7p3dF4+8XoDRYz8CS2b7/mrz2vm3YGsuBZp1MSrw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPf71ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsNg//UPbXbvptiZfLgt9F7OA7yZsTZ3BwT5XDtBp8r3fP4OqSA+YG\r\ncKl946WPXqWA8AIh5dm0JZOmPtS85gltArhPH1n1XiGkhINTQtt4aq58Ef1+\r\nrJ+Jf5NK7teYy7lPtfdfMhQNBYIRj16b0gngS70ZQQG1+GfgTH8r3oxoKpor\r\nvbb+cHEIddYHrQIGvx8ln4ftnN7DZpLU1RRkqMp9uGSxVU3DEjiY1PCbNBNF\r\ndcBjcrVHfSoGFmNId2t6K4/eNyqkBlOb1K2EF5CdPflNo8qo7H2xQMHoxa0i\r\n3gJ/JVMbYO9QAkmXT/NDOemAOny5IgXMqvXWksDBauHR5QiVANQSTlkt6fZ4\r\no0EfbOAGYBuJHUvsiXFfaLvWS25vZmjda2PpT4kfAePL7MhwqyyeAwG0I2lz\r\nEzPZAHWgr8Wi6cuPpAJLmkoBpC69kcwwyD5IpWMsT69TFhzUdqZe/psjOUPM\r\nYKUpPVa+PMbCzZNIRhWdXHdwGbbgn1Fg9qrEeClMylLmFyH7vlvUlrf2gAgO\r\nCROa17NA6rX0K1pa50kxCfTnegP1vW3tfDLcxuPOla5mrA+wKwSJxnck+SsE\r\nX5Qcoxw6dIEHL6w+xXxqtFgeWygMJW68EqIqJ+ACUjnz1RNTAiOI6TQII5vp\r\n0hSDfNunwXhW/tH0W+VZXabclUKIjjoZtHI=\r\n=XhbP\r\n-----END PGP SIGNATURE-----\r\n","size":29357},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.273_1665007349436_0.9155992349653979"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-05T22:03:19.607Z"},"1.4.274":{"name":"electron-to-chromium","version":"1.4.274","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1159.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"63c4d07b752d7a0a46909cf3d77512c27eaf5857","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.274","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Fgn7JZQzq85I81FpKUNxVLAzoghy8JZJ4NIue+YfUYBbu1AkpgzFvNwzF/ZNZH9ElkmJD0TSWu1F2gTpw/zZlg==","shasum":"74369ac6f020c3cea7c77ec040ddf159fe226233","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.274.tgz","fileCount":13,"unpackedSize":193540,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKHESwCA4FqYvOfq8kHOrhMTL67PxJR8IeHfavJSAqEgIhAN2hd6oza3mPBdfjHZwC4Ov3MJMGwpAu0PZMp/xlLnp+"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPjc1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPfw/+J5RKYVfGnocasbwtHSrsjProe1le7qBZLOVOEVRTxmXgVC+c\r\n/Zx1dMA3S2pX0euro5P5dsSfE74+ahkYszLx/TRTmJy8j/eqJ6Tjh1FvsSb6\r\n9vfh6sun8z/KpVuaADQc0gMyHixn5RJ35hzIcbXJ68tQaYFFAnjDZ0E8SOTK\r\nGytDquxpZX/cMGQ4e4p/frZV6x2obzS033UFktLUeul2W6a0AxwjTO4l1iag\r\nvKYs1P1RZkWesxJZWiVOnf/dxN5LK0dA5jYvvxt3kqxsJswFsqZEjyTqyY/8\r\nu41sOybi4uZvC/znE7ZzjalYGNjnxOUs0V2PP43Cu4eyiG1IlGdCZ9RXPk1E\r\nKa2lwo7y5k/QZkcjMg23FDKWuBNtpYZWQq/2qjIBtYhTf4LZUmqLjKI9806y\r\noewwBGiHisk8XbPbknFtUymjGDyVCN8As9YCxDtIzUYEmD+We5EPdnwpRTej\r\nGLoyLpomlVKsUxsLNO5oQFB0AG+FqyOGPpv7/1NvfYAiJvCooc0E0hwmTNzl\r\n1V0V+oN0YWso+WobUDms3rOLUKvgZX7GcIN0LCIxj+6zSPBrjwQ3XRQoEbNi\r\nuyH9v5NTLLAi90GuL8pRCTILrD6e4v/TEtMFnkdf4Qc7fuvUm6jfCviGMWP5\r\nUnRMZC0apRNu9mper9SyEn5kxk5vtURzXiU=\r\n=AOIo\r\n-----END PGP SIGNATURE-----\r\n","size":29411},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.274_1665021749354_0.2781637885849151"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-06T02:02:41.806Z"},"1.4.275":{"name":"electron-to-chromium","version":"1.4.275","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1160.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2112aaf8b8cbfb4c8298dd5bcfc11bd2da059357","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.275","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-aJeQQ+Hl9Jyyzv4chBqYJwmVRY46N5i2BEX5Cuyk/5gFCUZ5F3i7Hnba6snZftWla7Gglwc5pIgcd+E7cW+rPg==","shasum":"db25c8e39c9cc910a996d1ec9b73eee834cb0ac1","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.275.tgz","fileCount":13,"unpackedSize":193813,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICPaPuiQxc7u3Dh+l9pNxLKw++CcmS68oiDoQR6UnQkQAiEAgdvd3iRgotpS+Pvlbg++PiFOF2VxBPpl72ATL68Uc5Y="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP1B0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoM3w//Q2BudABnwTqCBHDwRY/ZKfv7m77WrwUsrdOSX1g4ghQLLdqd\r\nVOMRwYTr/kSYU7W4bL/hMUjz/9riFT/smhwGL5lm7hgvyR33pv/2PkOUxoPn\r\niMVUHr8ce3l6kNwiE8P/AhGZe2JI+vT5KYTfy42MiRnyYadzjwotZt/SqAQ+\r\n8qfScSZDX55rCJOQbKK0fFQlmgqmv34ovd/jDwTLfHMvGoTdbzCBPupkFdEY\r\nV/O5Z5EFY2DZHlgk75zVsK/+IiBfktulblk7dkZVOF9FJE5rdp0KsgzroXVP\r\nCItAk36vMj+ACPkvjAiszZWLURBV0QHvMQrSyuTiiI3h53Kt9Evt0ikozaYa\r\nKggTpw7x187zsGLUQBerkggrbEX2UcgmselHwf7sza+O0GqPrG30tJHxmnwC\r\nYjvl2byUSfL1V+4DFD+iOy7ytKYCthDUJ5KNLq6+ze5EXLg3bllL1nvsufJ8\r\nWytKPxT/RUypzRVJNgp0XjPKLZ/fuPhj7P5qvhXnN2H257DhDg398GCtT6Vt\r\nRCyNlSfyDTdx56GAOTYNHzLcUr99l6qvci4OcfQuD1N5clkxS34DJHPKuKH2\r\npeYKrzKhLwTrHp9jbEdbR8iuJZoPZdsxPn/p0bGzGvXN6Oc0UtJjH1VPX9Ku\r\nQ5HXcnSNqtlx7NkaELktabFWItd777D5zo4=\r\n=AR5b\r\n-----END PGP SIGNATURE-----\r\n","size":29443},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.275_1665093748144_0.2785214628138739"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-06T22:02:44.537Z"},"1.4.276":{"name":"electron-to-chromium","version":"1.4.276","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1162.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"1a28e39814888f71504e3554abdf6ae0876063d8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.276","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==","shasum":"17837b19dafcc43aba885c4689358b298c19b520","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.276.tgz","fileCount":13,"unpackedSize":193953,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOy+WEOCz98rQDRotSh2Ol6VX70x14tvZRsRf+FIWJjQIhAJSl7bKPW1ydbH7x/vJG2KIs+VgEULJA7ss8DoebZulz"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQKH2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpFcw//cHwbjb0XQgaT7ir4lod1gTjAblnvaZmdWVXfGRgZY63u8cAm\r\nLtk70hRCqoXpjy9nxYgcBamOaAixKl22WDgqzUvFhp5RftOfSXdC1v8jnMq8\r\n3/8pbQl/zbvLhmGk3WnUZ/F78YqPMpBnhtxZqMq6CMMp0CMvAQsPazmUyJEb\r\nDEroUzWzHnMNHdfcgR8tgnG4dCdwhc2RsoXpyBnFtxVfB4jiqTN+0/w+CenN\r\nGR4x21UmnhxKtFi77VWztt/fdoKCntO+EK2sQKJI9XJPbtLte6EHXpS7B726\r\nlfO4xp/T1y8gB8fvftG/Md2gocAh3/AZ7SzKOxfryuHU9bbm+kficMONRHRE\r\ntRVVD0lt9QaLN7GmHr9PyUdKX3eb6fIwSfnkK7xFfMkoK3yVYqiBPhOzjpew\r\nS/+sG2zGJBvBz57svRjBTbTC6bPYpdasRJ38Rkjb7f9lyRzFKJAMKaLi0tNY\r\n9+tlypfu0JKyVtnQrB+fupk/TNeifVxFIghO8RaXZFNx1MdumoMxFp9YF5Ih\r\nf5s3fPRh+1JYNOX5h3QbgpmGxyRgfjQduWqFcfu4rH40XGeovuuYvxSXQvnG\r\nLEBnx6kskRu7XsgVj3yl7ZIZpKy+TAgFB6VjliNW+YfWUB35C7xRGyxJ78Ys\r\nAUoo8YCATQ1O0Jc2aXo5YgN913g+kZIVBaE=\r\n=BzP2\r\n-----END PGP SIGNATURE-----\r\n","size":29457},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.276_1665180150127_0.7294329234629964"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-07T22:02:51.856Z"},"1.4.277":{"name":"electron-to-chromium","version":"1.4.277","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1163.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"8822174b07f27ac9fea37fc6c3def3817da6c8df","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.277","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Ej4VyUfGdVY5D2J5WHAVNqrEFBKgeNcX7p/bBQU4x/VKwvnyEvGd62NEkIK3lykLEe9Cg4MCcoWAa+u97o0u/A==","shasum":"6dc3d9724a0a19b7ab155bf8e37967357a081dc5","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.277.tgz","fileCount":13,"unpackedSize":194093,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAGM4HwoSrWUzvm3/gEw0FxP5h3FF0finz+jvRBogFaMAiEA1uHBqRWoteeed0iMDBwGKgRIVH9nXLitioKEeJUwywk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRT81ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHjw/+KIp1EC0l+j5q/VIH0GI7t7KYmIav9fZKZe9SyH1fwjeSPQUr\r\nPrH6mTI0IBbhvRxLTSGyi+hp6UkjaPX9CrGauk75Uwt6K/yB+WjfDeGu92xK\r\n8HHlGPbJ2bEqV0iTaFIxo9ERWY6wofK7OHnA8JrqCyL3uhZbIwQ/paPFdn91\r\niN5G7V/DUDWHlNtoS6ukLpYC+ShaA1Qtw7l5Yu3dZRx8/G6GaHP6kBqPz6Up\r\nHBrLAKFgI12GBJEd+YynIRdndsMlAadTbpbTHT6Lqa/FZsd/EeQE2MtS8OIx\r\nUmEHdj71anWzrqkyCsZCxZjdOGfUZDNbrv9jA92WMA/etLThMNFt4Vs20YIK\r\nR/8imE7Ee7x9u2cZ7rc03jj1wG/7+zQ+nL8vVA4Pjpdt2DA16mpRBdkhU0Lr\r\n9BsIxl19B78r5aJ9oICmHIo0vvLVyNx1ZfjlKWeExNEw3U+0/Y2xXRaTyw+7\r\nqLAvI/YqyP4s521unteJWmJPRnJ3J2/S6ckfUF0mOMcHFr+VyxTrhp23yZxa\r\nz3DGYLPdChkrHEdWAVVVB+GkLuBgPnAKGaI/uKEu2HxgwUgxNK2v3tQUf98E\r\ncwKXS1gIHUQcx8hqnBOm9spyoT6wKDTpHnZ7Z2roKbUZWNMCwmH7NfddqiL5\r\ndYr8glBbUvlyXn/zqgUraq2yAqhb0pmTgXI=\r\n=bBhw\r\n-----END PGP SIGNATURE-----\r\n","size":29468},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.277_1665482549519_0.01791475992479752"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-13T01:37:02.888Z"},"1.4.278":{"name":"electron-to-chromium","version":"1.4.278","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1164.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"db56fb7f5f64e991001fbb84c06667a82817af60","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.278","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-i+0+t/UVCqp9khP+hswZQbG31LnsYWGwyI9zhqZkyPok7k57W0UhMaxODMp3TeoNFhyUtB5OI4ppO/OSD9gaYg==","shasum":"b527a64df8a23dd46a8c751a81c6648d528c5e1d","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.278.tgz","fileCount":13,"unpackedSize":194233,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGIKmCPaNzMAEUUGM2j3NwYWuHw/q6nQ0vDoIvHcIGd3AiAqwmLgmzCjQMXl+G7hQaj5io6oWWNyjGd8SsyQGVBV3A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRef+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqimRAAlbTjevNrR+tLkpCH4lqO2FoR5BEEmCErOTpzNXcXSQncQBvM\r\n3i/slWFECYPBJnODqICiPBdWxIFOh6hYs1I8DbbmNRXwwSFQHaklZuSroDOY\r\nxY1Gt/0Lfk9MH8vQQ1QlaFDa6E6P84URfEGd+dgTBdakIVSx/oOp7CAwx4nI\r\n/VisIWeChX03zP9CEUYLUgNcLjm6jsGFGr1MXFDrBbPH19l2+DSbmksmdhmE\r\nX7RIlKN6IQJYZSOj+VoHIr9/UfkUyr96EHp/i8GF04s1R4bQdPBPIRbOtqsl\r\nf5hEkPvSDITFoLMmApHrL9UIxoyiRUzTCAh8hfn+oJeF6QvJ0yPNDKWBUlmK\r\noqzHtq932FiWcXF35Bz0J0V1ejmID+5lLusy/JZrLmr6tuNjxSip/NygUJoe\r\npAuCeaWdNVQtEnrt6d6K4Kek9xg+YG+IxW+sIPY9Rffi/j1JPLNEQDTEqQwf\r\njcHcUHVayTnSxBl8GnT7tHCHLRTbqGkvznBnB67WT8MXDVbrfu9rscpJ6qcI\r\nrIHFNJcUVEWaJ61C0kbzj1LHLSGRq2qDCfEvxL6GL9Ul+lL+9n/pR0aNU7ru\r\nwpP4JKEixb1Ea/J5fkRd0j559tnim/b4dWptwA7zBJHzt1lgIUFCf2itrXXL\r\nAyV1BkqVfIvhzdt8iGSWe+rPVCjpLF4rO5I=\r\n=Ooel\r\n-----END PGP SIGNATURE-----\r\n","size":29485},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.278_1665525758207_0.5433275571258396"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-13T01:37:02.999Z"},"1.4.279":{"name":"electron-to-chromium","version":"1.4.279","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1165.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"df1fa5814c9922819bea6829e3bda7915dfd34d8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.279","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-xs7vEuSZ84+JsHSTFqqG0TE3i8EAivHomRQZhhcRvsmnjsh5C2KdhwNKf4ZRYtzq75wojpFyqb62m32Oam57wA==","shasum":"84267fec806a8b1c5a1daebf726c4e296e5bcdf9","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.279.tgz","fileCount":13,"unpackedSize":194337,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEURAiYYNEMZlHPJvBw+REBsrjFodDnrzegupmYHHL73AiEAiEXNJ1FhGnYZ/q1rYt3Kt5M+k5E6CfjVJQmL2gmetWw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRiAyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0eBAAmBO7vM/MaKLpRSbN6hDp34UHBxjEOmeDaF0W5MJnGVhhryzN\r\nU7/ToWTtnehmEOjYhH009wsVnOLzfa9iVJu6z7lGdpsT0BLGh/04o6XpchQr\r\nuhmQ+Apq9WCE2cL+qvoYGbv2M86hUcFg0fH1wTyBB5wdwknmxqiyxfsAK5YP\r\nMksdeM7tJi4tH83XYovJ3MvB/DX30O8CJvAB1MHgWDFPX9ywwXDLMDnyOLTh\r\nEkwrvAvUQZQ9ZMZCf4UXYZx3ARr/ls/YvofEQh7uFXxOoKCqYVBLcN2W952y\r\n9GYTJ5aykahnflFhNKsYY8BvUvzds5WVsHcO5gs9AysC7TBPF78tqPXgqiXO\r\nAZ/Es16co7wQdRcb1vZ3m8Cw0JkGy5ymOkXrsk8ZEdyRLBYRlgFqEx4YXUJM\r\nHeZzSIKMvXxwfxZp/rovHJQd3FZsLwnUfLULqGGb/e794erDzC+MoBk5baS8\r\nUC1tB/UkyxgJFz7DaTPC8y4EGXhCqiF1b6vWFHreNM/bG2K2fkkEtVFT43c7\r\nKcsYfA1gpLpZJ7yDchk0EnUz8cak/7AglfiB309VSOdMitMjbDu6br9YBOK1\r\nkrvmOYnfL39I4fe2MwPaSz8UiXggEmdO/6uPpt+KwLkWPBHkpqQUG4TQRKIS\r\nZstNapYHJ+wmAmszch/2l1g6yofAZZqeM78=\r\n=Ln4z\r\n-----END PGP SIGNATURE-----\r\n","size":29492},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.279_1665540146696_0.8003227371376274"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-13T01:37:03.099Z"},"1.4.280":{"name":"electron-to-chromium","version":"1.4.280","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1166.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"2313b8ceef67ed2ac6eab8e8e1a6e52641a5b2b8","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.280","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-EP8OKK3oXdQs9SURLaEtZUKiLwldZjDfFzFIvrbcqk2otKncds2AYU5fLACbsmvnU2vtn0yU/6ewpxhcMis9gQ==","shasum":"1a0d29bf39ffd2719dbacc3cd8d2415a72457490","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.280.tgz","fileCount":13,"unpackedSize":194477,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTbqNxIYfdn1YV/j9qzp0WrDi7PZ6DSJ9CBwMNblIPPQIhAMK7Xztk2S9+TEArzDLM0OmBx/8X6LBvYGfM25p6Pk72"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRzl3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKTBAAhQZ8ktgAT5NNubCyJXEc9ZOp+EUvzSBK6o9CmW0EOScL/seK\r\nWb+zn0OkXA34VzKxlL1lAaVdHwadzuUET7by8YA3q8gGtYluT5LKeir/AC3p\r\n/HR8zrTKzn8TEui+3xfnnCPbMb8Z0I9tTFz9gMoNJB1gr1VYzZXP5k2pKyeh\r\nw/ECgo9h55LYL7yZRkIQ9dVGYjOjqysyuz69h4Wt3m4uF4RYZWhnmR1mG3oM\r\nKuWVmRQzczQHZdDHRTp01625Ql4B5j10WVHnKOwRUdDxGksGEbNmf00SBCQC\r\nol0alMB6z3Q9Bb9nNSMGXdLuhgbTOtFucPhk3FN5hCkBQa4jfKWyjXSBzIOy\r\nzU0m/DaNsbSokZJ9lOuNGGhX93JSz0JSbUaISrs3MoItgBk20rSEe+TLQ005\r\nGrdXrIGeDKwOoouacusAFwvAojlyTJssVvKxN2qGgsp/J1oAhYth3E4Wkumv\r\nZ/jrFlcQy3y2I0Wc22VJIjDcGKox1P1fsoAseRouzCqyGwZFgeZ0y/AH4kZX\r\nPT17cOMhRlYAZMvWBkpnjn/6vlSP9I3IPwCLauixdp9ZFnwbS7efFLLVpaZP\r\nsmrw1GO3v0MrGdY5PblRaHMnpLSsEgFvBjB/dsjuRTHf/r9T1Dlz/l3/Ey5j\r\njLZMKGPtQ5k/CiPuSSwT/QiggC3Y2aKc4PQ=\r\n=J1SI\r\n-----END PGP SIGNATURE-----\r\n","size":29504},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.280_1665612151696_0.07556623821405584"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-13T01:37:03.205Z"},"1.4.281":{"name":"electron-to-chromium","version":"1.4.281","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1167.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"99771023974d800ed6ba3c8fc787a3c07164435e","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.281","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-yer0w5wCYdFoZytfmbNhwiGI/3cW06+RV7E23ln4490DVMxs7PvYpbsrSmAiBn/V6gode8wvJlST2YfWgvzWIg==","shasum":"8e3c7b6ae65d91aa3e8aa84faa6353e3dc758971","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.281.tgz","fileCount":13,"unpackedSize":194748,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID87zOh7r0/ndU9Wt40Pl4v9UW1/VHwUqEpJuhGGbnR4AiA9CQaOsyQv1sfCBEMiY8ulUtnxhgHiBugMbjTuW7tekA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjR3G1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmryrA//W9TifxfKsLol3pAdGLeqsKSiNfl9jvnbIVHy9KxEoQWgqXpK\r\nHVLtzizrQ8/V5YdtRvYJwg6k3sktC1gLHPQOJ5fDYIiLmhRNgQFMgffQRpwi\r\nmriVwmF8tQFC9XERSFppJPTKYjc0nuQsZZ8tJkTL9lpoWTQEo3GfTSk6x+Hu\r\nY43dS5iAc1hK/pakbmIPKcBCgpQZexc3kNZ0QYkyLlhKE3gd7qlbwrUbhR9k\r\nrlq6i/mS6OxgZ/QnuWWpjmRCwhrxcQnA9NIqzsanr5z0Z0Z26td4JbzO/UJX\r\neEhVp+neCGclkszAUF2KhAZpx8VwoEp3OOSoQ05K5rm8dEk5SHDhDx2FhkKN\r\nvwAYQw9yv8lyZ/IxvHuNJpk1KPlaTMrRHDMlhZzVGBIPfVIQPLjiK8hcigUT\r\nnOrBbwQlefBrIHsH2/ah9rsWJM4J0s5Dr+Vifvvfsl05Yw9N5bR02saUQhD9\r\nffhVMcatJBzY6LVfh1Cgv0nxi4xDK7Uwfr0iIso/rDzRHnu1qhzsVAwHkhmD\r\nDQn4IMxtyj+FHDm0QWCXX45F2MEVavP/lzntBmm1OIHW2DjxpBkpZuJNQwS3\r\nxF9YI3zAOANzECS86eFyW8LVhoVPVDxNq6YDIefr1lkQK/NYdoV/mdE8XPLk\r\nzW9jkfcHLKokdZYhALhpaxus6KwjskZHmiA=\r\n=tRVr\r\n-----END PGP SIGNATURE-----\r\n","size":29555},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.281_1665626549509_0.0005674234876951179"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-13T06:01:11.792Z"},"1.4.282":{"name":"electron-to-chromium","version":"1.4.282","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1168.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"7f13f4cca6456929638b92201b65a3f03b4ff0b9","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.282","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-Dki0WhHNh/br/Xi1vAkueU5mtIc9XLHcMKB6tNfQKk+kPG0TEUjRh5QEMAUbRp30/rYNMFD1zKKvbVzwq/4wmg==","shasum":"02af3fd6051e97ac3388a4b11d455bc1ca49838f","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.282.tgz","fileCount":13,"unpackedSize":194992,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHCw5WPH3tJ2iuvmem1le/3CZpDwlTESAEWMQj2jFDWBAiAwzvK0jJqNREff/U/G5/h62UWzHYQv/nN44lFrxmJPqA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSIr0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3VxAAni/fp6mM9FIInKdQmXhoGdy7lGVpxP2iZDFUKcCSr3Ox3mb6\r\npPmYvh9mhI7XzLBdgiGoi2b9S5/2nLBkc0pHym7xmVo5131nBjLrwE+Z/09m\r\n8tahZ+Xy3K4Oe0IpzO8+Ouhv4JrW9bxTJk0KPi6trhQwCm7Sit75AqKMSjol\r\nCnoaVb7yD31YtdNgn+Xutv9BnUNHDnlHZqw4h7w6SmsHETGkOduoz83gkzt/\r\nxvxDDLofsKwmvdIfCbzyeIo0xlJOjz8lBG/gbXoDwZyJkrXfl5yhQUDFDwR9\r\n03D3M5KrdTV3+mqV2oF6jIOJPVhQnt/VxBuU4trLBgtmrYMqw3by/fiUk+xi\r\nPzV/oXa2NbwO4MYjBe2MHeQTQ1cnINKKmWNIhl2304Ucz5LLK9p6o4tTNiDD\r\nj2ExXHT5h9tgRNjpxpbFsV13C+bAOeS8m5Xhk/DDt6ADg3mEO2mqj4ewS3RF\r\nNPauN3xSfzUe30K1PtvwC3BrgFZxGJpsfn8I+Is+iVs0AAO+v39PtpRgjmTK\r\nSVtaWq0eTqpfiVZ8tJ6C9ao95+tDjjy9kz4dTpKxlzLL+fSuoGugqIbq+L/S\r\n89+yHTIUzvh/OsgRieUx/TI5tUth9ookIx7/ZP4ZtbfjlG/Jare1dJh53B63\r\nvHNIzKY0kSiIkVepbHBFR7Qmr0tCrYVkdHE=\r\n=UWhA\r\n-----END PGP SIGNATURE-----\r\n","size":29576},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.282_1665698548575_0.7540368312842789"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-14T04:12:29.902Z"},"1.4.283":{"name":"electron-to-chromium","version":"1.4.283","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1170.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"5467e842498e0b0ba08ebec17435c771245f8316","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.283","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-g6RQ9zCOV+U5QVHW9OpFR7rdk/V7xfopNXnyAamdpFgCHgZ1sjI8VuR1+zG2YG/TZk+tQ8mpNkug4P8FU0fuOA==","shasum":"d4f263f5df402fd799c0a06255d580dcf8aa9a8e","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.283.tgz","fileCount":13,"unpackedSize":195132,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH7yXXSbG84XY9xqZy6pR/6GGdFDJ0HvKjhS9RLENE2HAiAmUy2UrjEu848LUPzJKxPg4ws0lOZSr0Y435Wy2/16Xg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSdx2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqA7g/+LbjaiNC7+uabwCbtu0IJtBrj9p8QJJmXKRGDAuS+sHAtWIQJ\r\nMagwDlHc4HzhjQOmRgfWvjaNbGzdiFSzqZR8KSgB2EBIC0hHOPtzSwXINleW\r\nLr7Exe9M8MJ8xUayWTA+xC8TCFmN+hIoGS1vTwJiyCHfpWTmfDGgo/zyIpyw\r\nnK5OEKT/QJDsE0nekSJs+at3FHLHaqYRE8Xa2FIyiaVugg3/v3CqXG0Qt3FL\r\nvi5oJNs6bD3w0yot9GqVzXcJ5mmbhBpLnkaI2blcKYZQwTwt8kb2tBf5aQ6Q\r\nDHklchUfaownRfJYBu6xGm+RwnSzfxuVYfM8Vxb6s0mRpOiqchS3xmhuETne\r\nKCqwvXHlFn+os/2aFwDDmsV5T2TE5UQf2z+nUaO0vuPdvh8uC/vWZrbvD/og\r\novqWtiKGwuEuO8aCQxJDflDSoGsbGTkvmBJGjdPZ0nnJFx0JeZdjnkNkaYZ7\r\n5TELPum3psxWxPFHhc9uGrr8vYAprB1kMb+ZamFDmetLcX0uWYOhbB0pZbfR\r\nCHU18ijZMSiOWoRRYXl9MkFkcslafBe2zeSqK0NlpC66r1/1DueF/3l3cygE\r\n/04wMWJjJa4giQxjoij5DHZLVZMKot5mv4+TItnBZTpm/8SW8xVCWXXdQkla\r\n8qbxbYxe6yWVNzZBULVg8kZBGi8nnk95rjs=\r\n=mFQJ\r\n-----END PGP SIGNATURE-----\r\n","size":29590},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.283_1665784950056_0.44322425656275843"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-15T05:43:19.321Z"},"1.4.284":{"name":"electron-to-chromium","version":"1.4.284","description":"Provides a list of electron-to-chromium version mappings","main":"index.js","scripts":{"build":"node build.js","update":"node automated-update.js","test":"nyc ava --verbose","report":"nyc report --reporter=text-lcov > coverage.lcov && codecov"},"repository":{"type":"git","url":"git+https://github.com/kilian/electron-to-chromium.git"},"keywords":["electron","chrome","browserlist"],"author":{"name":"Kilian Valkhof"},"license":"ISC","devDependencies":{"ava":"^4.0.1","codecov":"^3.8.0","electron-releases":"^3.1171.0","nyc":"^15.1.0","request":"^2.65.0","shelljs":"^0.8.4"},"gitHead":"107f7d7bd48c0128618554f95cfc101709597c63","bugs":{"url":"https://github.com/kilian/electron-to-chromium/issues"},"homepage":"https://github.com/kilian/electron-to-chromium#readme","_id":"electron-to-chromium@1.4.284","_nodeVersion":"14.20.1","_npmVersion":"6.14.17","dist":{"integrity":"sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==","shasum":"61046d1e4cab3a25238f6bf7413795270f125592","tarball":"http://mvn.by-health.com/nexus/content/groups/yxUI/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz","fileCount":13,"unpackedSize":195272,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBJ6rG+ETWwI8dYkKVIASPSvDmEqHfv409wFW7ZtesTgAiEAnWfuMC0ZlL9Pws32rP6IjAEw2I/Ov08FeExotuNmmls="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTdD1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9Aw/9EiqtHnHtPBsZ+ipQVM/bJiFgrWWJWV4cbHzuIunJpHdeojfz\r\nczdcOc7SNrSh4Hx1NCn63id9CdCJMtY2F7HDQ+wamp+bg5zYb81g1C91UoHg\r\nwYlm3BNujyHlVmniaJWo/x+G6Lvwazy1pC15TYjhNdLAdsq91sAzFSWZQF0V\r\n5DBemWDbOQtj/miBaKSr7AG6JS8zOb5a5Tf/USta2wPY8lIQdXfeiAFdGSNi\r\ng5/JITQrV7OpuZch7hgXKk3mUWZG3EV6GP/RzrrVvp4FZPdjboVMIhx8MAav\r\nUpNVzaIyKTnGGoFqYSUKeB/V10aL4bS741O2F2KLeaGEXCeHq1DHyVxULR20\r\nK5/5n+hI6+cEkVPG/gszJ2MUgLEAUDYgDc1D7Gim0GRK2QLmfVJyhv8su1UQ\r\ntIOeTOk3dyDU+HxtqMmSZxmBCjS9c0gUyinIopQJS44FUhUpCybm8Il/96hj\r\nolO1p70dUCCdFha50Bu5mAOD6+k7Kdc4rq2DXG3cXN0f962UaD5LI7VeN3Mz\r\n92Fefe9spGDW+AsLl/YUysAvpvSFZYTS+NrNDFquq+0Ly+egMfp/iRO64xSA\r\nZ7B03kKSJeoUFqhwM5jKXraihfyGkdkFhqLEVid2FDhLP9oJgcPKbP2PFHtT\r\ngfrFR0AadS8Zfr/x63+yS3GON6Gw3ncWjyA=\r\n=fba6\r\n-----END PGP SIGNATURE-----\r\n","size":29604},"_npmUser":{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"},"directories":{},"maintainers":[{"name":"kilianvalkhof","email":"kilian@kilianvalkhof.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/electron-to-chromium_1.4.284_1666044149246_0.20726875336725592"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-18T02:38:18.233Z"}},"name":"electron-to-chromium","time":{"created":"2022-01-26T13:29:33.724Z","modified":"2023-01-11T00:34:24.166Z","1.4.65":"2022-02-05T03:02:28.119Z","1.4.64":"2022-02-03T19:02:30.045Z","1.4.63":"2022-02-03T03:02:26.554Z","1.4.62":"2022-02-02T19:02:29.105Z","1.4.61":"2022-02-02T03:02:28.167Z","1.4.60":"2022-02-01T19:02:27.042Z","1.4.59":"2022-02-01T07:02:28.526Z","1.4.58":"2022-01-31T19:02:58.465Z","1.4.57":"2022-01-28T19:02:29.669Z","1.4.56":"2022-01-28T03:02:28.498Z","1.4.55":"2022-01-27T19:02:28.947Z","1.4.54":"2022-01-27T03:02:29.298Z","1.3.137":"2019-05-23T16:02:39.502Z","1.3.136":"2019-05-22T00:02:30.799Z","1.3.135":"2019-05-17T04:02:32.998Z","1.3.134":"2019-05-15T00:02:35.386Z","1.3.133":"2019-05-08T08:02:34.299Z","1.3.132":"2019-05-08T04:02:33.899Z","1.3.131":"2019-05-04T08:02:33.763Z","1.3.130":"2019-05-03T04:02:32.016Z","1.3.127":"2019-04-25T04:02:41.283Z","1.3.115":"2019-03-12T00:02:31.087Z","1.3.114":"2019-03-11T09:13:45.779Z","1.3.109":"2019-01-29T21:02:32.375Z","1.3.104":"2019-01-22T17:02:36.053Z","1.3.101":"2019-01-11T21:02:25.776Z","1.3.98":"2019-01-05T01:02:23.323Z","1.3.83":"2018-11-01T04:02:23.219Z","1.3.82":"2018-10-25T00:02:24.235Z","1.4.19":"2021-12-15T19:02:29.047Z","1.4.18":"2021-12-14T19:02:30.774Z","1.4.17":"2021-12-13T19:02:26.845Z","1.4.16":"2021-12-10T19:02:31.370Z","1.4.15":"2021-12-09T19:02:32.850Z","1.4.14":"2021-12-08T19:02:30.811Z","1.4.13":"2021-12-08T07:02:32.699Z","1.4.12":"2021-12-06T19:02:30.766Z","1.4.11":"2021-12-03T19:02:28.902Z","1.4.10":"2021-12-03T07:02:29.486Z","1.4.9":"2021-12-02T19:02:30.110Z","1.4.8":"2021-12-01T19:02:28.924Z","1.4.7":"2021-12-01T07:02:26.140Z","1.4.6":"2021-12-01T03:02:23.223Z","1.4.5":"2021-11-29T19:02:23.437Z","1.4.4":"2021-11-26T19:02:25.800Z","1.4.3":"2021-11-26T03:02:26.236Z","1.4.2":"2021-11-25T19:02:26.850Z","1.4.1":"2021-11-25T03:02:25.882Z","1.4.0":"2021-11-24T10:36:26.566Z","1.3.907":"2021-11-23T19:02:35.803Z","1.3.906":"2021-11-23T03:02:31.255Z","1.3.905":"2021-11-22T19:02:37.519Z","1.3.904":"2021-11-20T07:02:35.886Z","1.3.903":"2021-11-19T03:02:32.572Z","1.3.902":"2021-11-18T19:02:35.632Z","1.3.901":"2021-11-17T19:02:32.475Z","1.3.900":"2021-11-17T03:02:31.799Z","1.3.899":"2021-11-16T07:02:32.615Z","1.3.898":"2021-11-16T03:02:32.165Z","1.3.897":"2021-11-15T19:02:32.763Z","1.3.896":"2021-11-12T19:02:30.230Z","1.3.895":"2021-11-11T19:02:33.000Z","1.3.894":"2021-11-10T19:02:34.262Z","1.3.893":"2021-11-09T19:02:32.745Z","1.3.892":"2021-11-09T03:02:38.478Z","1.3.891":"2021-11-08T19:02:38.257Z","1.3.890":"2021-11-06T03:02:31.290Z","1.3.889":"2021-11-04T19:02:32.575Z","1.3.888":"2021-11-03T19:02:31.850Z","1.3.887":"2021-11-02T19:02:34.865Z","1.3.886":"2021-11-01T19:02:31.198Z","1.3.885":"2021-10-29T22:02:30.428Z","1.3.884":"2021-10-28T22:02:29.882Z","1.3.883":"2021-10-28T10:02:29.220Z","1.3.882":"2021-10-28T02:02:30.539Z","1.3.881":"2021-10-27T22:02:30.106Z","1.3.880":"2021-10-26T22:02:32.618Z","1.3.879":"2021-10-25T22:02:32.328Z","1.3.878":"2021-10-23T10:02:30.809Z","1.3.877":"2021-10-21T22:02:31.351Z","1.3.876":"2021-10-21T10:02:30.764Z","1.3.875":"2021-10-21T02:02:30.110Z","1.3.874":"2021-10-20T22:02:31.121Z","1.3.873":"2021-10-19T22:02:31.027Z","1.3.872":"2021-10-18T22:02:30.741Z","1.3.871":"2021-10-15T22:02:28.977Z","1.3.870":"2021-10-15T02:02:30.282Z","1.3.869":"2021-10-14T22:02:30.627Z","1.3.868":"2021-10-14T10:02:30.692Z","1.3.867":"2021-10-12T22:02:31.239Z","1.3.866":"2021-10-12T02:02:27.627Z","1.3.865":"2021-10-11T22:02:32.358Z","1.3.864":"2021-10-09T02:02:26.997Z","1.3.863":"2021-10-08T22:02:32.615Z","1.3.862":"2021-10-07T22:02:29.130Z","1.3.861":"2021-10-06T22:02:27.280Z","1.3.860":"2021-10-05T22:02:29.868Z","1.3.859":"2021-10-05T02:02:30.552Z","1.3.858":"2021-10-04T22:02:29.969Z","1.3.857":"2021-10-01T22:02:27.305Z","1.3.856":"2021-10-01T02:02:27.920Z","1.3.855":"2021-09-30T22:02:27.006Z","1.3.854":"2021-09-29T22:02:28.482Z","1.3.853":"2021-09-28T22:02:26.535Z","1.3.852":"2021-09-28T14:02:30.446Z","1.3.851":"2021-09-28T02:02:34.603Z","1.3.850":"2021-09-24T22:02:28.850Z","1.3.849":"2021-09-23T22:02:27.621Z","1.3.848":"2021-09-23T02:02:29.331Z","1.3.847":"2021-09-22T22:02:28.819Z","1.3.846":"2021-09-21T22:02:26.922Z","1.3.845":"2021-09-21T02:02:33.991Z","1.3.844":"2021-09-20T22:02:28.782Z","1.3.843":"2021-09-17T22:02:28.319Z","1.3.842":"2021-09-17T02:02:35.263Z","1.3.841":"2021-09-16T22:02:25.868Z","1.3.840":"2021-09-15T22:02:27.172Z","1.3.839":"2021-09-15T02:02:26.962Z","1.3.838":"2021-09-14T02:02:29.512Z","1.3.837":"2021-09-13T22:02:25.713Z","1.3.836":"2021-09-10T22:02:28.059Z","1.3.835":"2021-09-10T02:02:27.375Z","1.3.834":"2021-09-09T22:02:26.357Z","1.3.833":"2021-09-08T22:02:28.783Z","1.3.832":"2021-09-07T22:02:27.306Z","1.3.831":"2021-09-07T14:02:29.452Z","1.3.830":"2021-09-03T22:02:27.285Z","1.3.829":"2021-09-03T10:02:27.262Z","1.3.828":"2021-09-02T22:02:25.845Z","1.3.827":"2021-09-01T22:02:34.346Z","1.3.826":"2021-09-01T02:02:27.791Z","1.3.825":"2021-08-31T22:02:26.122Z","1.3.824":"2021-08-31T02:02:26.705Z","1.3.823":"2021-08-30T22:02:27.649Z","1.3.822":"2021-08-28T02:02:26.830Z","1.3.821":"2021-08-27T22:02:28.993Z","1.3.820":"2021-08-27T02:02:28.017Z","1.3.819":"2021-08-26T22:02:26.000Z","1.3.818":"2021-08-25T22:02:25.626Z","1.3.817":"2021-08-24T22:02:25.671Z","1.3.816":"2021-08-24T02:02:27.193Z","1.3.815":"2021-08-23T22:02:26.191Z","1.3.814":"2021-08-20T22:02:26.385Z","1.3.813":"2021-08-19T22:02:26.453Z","1.3.812":"2021-08-18T22:02:26.242Z","1.3.811":"2021-08-18T10:02:27.094Z","1.3.810":"2021-08-18T02:02:26.563Z","1.3.809":"2021-08-17T22:02:26.107Z","1.3.808":"2021-08-17T14:02:26.941Z","1.3.807":"2021-08-16T22:02:27.954Z","1.3.806":"2021-08-14T02:02:29.113Z","1.3.805":"2021-08-13T02:02:26.589Z","1.3.804":"2021-08-12T22:02:25.801Z","1.3.803":"2021-08-11T22:02:26.566Z","1.3.802":"2021-08-11T02:02:31.582Z","1.3.801":"2021-08-10T10:02:34.255Z","1.3.800":"2021-08-09T22:02:30.298Z","1.3.799":"2021-08-07T02:02:26.970Z","1.3.798":"2021-08-06T02:02:27.719Z","1.3.797":"2021-08-05T22:02:27.000Z","1.3.796":"2021-08-04T22:02:25.170Z","1.3.795":"2021-08-04T02:02:28.604Z","1.3.794":"2021-08-03T22:02:25.008Z","1.3.793":"2021-08-02T22:02:32.007Z","1.3.792":"2021-07-30T22:02:30.786Z","1.3.791":"2021-07-29T22:02:32.833Z","1.3.790":"2021-07-28T22:02:31.615Z","1.3.789":"2021-07-27T22:02:33.618Z","1.3.788":"2021-07-27T02:02:31.640Z","1.3.787":"2021-07-26T22:02:31.051Z","1.3.786":"2021-07-23T22:02:31.389Z","1.3.785":"2021-07-22T22:02:32.347Z","1.3.784":"2021-07-22T02:02:33.314Z","1.3.783":"2021-07-21T22:02:31.723Z","1.3.782":"2021-07-21T02:02:33.914Z","1.3.781":"2021-07-20T22:02:32.057Z","1.3.780":"2021-07-19T22:02:30.090Z","1.3.779":"2021-07-16T22:02:30.908Z","1.3.778":"2021-07-16T02:03:15.941Z","1.3.777":"2021-07-15T22:02:31.430Z","1.3.776":"2021-07-14T22:02:29.837Z","1.3.775":"2021-07-13T22:02:34.665Z","1.3.774":"2021-07-13T02:02:28.041Z","1.3.773":"2021-07-12T22:02:28.065Z","1.3.772":"2021-07-09T22:02:27.286Z","1.3.771":"2021-07-08T22:02:32.625Z","1.3.770":"2021-07-08T02:02:34.841Z","1.3.769":"2021-07-07T02:02:32.946Z","1.3.768":"2021-07-06T02:02:30.744Z","1.3.767":"2021-07-05T22:02:30.701Z","1.3.766":"2021-07-02T22:02:33.707Z","1.3.765":"2021-07-02T02:02:34.555Z","1.3.764":"2021-07-01T22:02:31.969Z","1.3.763":"2021-07-01T02:02:36.406Z","1.3.762":"2021-06-29T22:02:35.216Z","1.3.761":"2021-06-29T10:02:34.308Z","1.3.760":"2021-06-28T22:02:32.822Z","1.3.759":"2021-06-25T22:02:34.857Z","1.3.758":"2021-06-25T10:02:35.256Z","1.3.757":"2021-06-24T22:02:37.227Z","1.3.756":"2021-06-23T22:02:29.419Z","1.3.755":"2021-06-23T02:02:31.891Z","1.3.754":"2021-06-22T02:02:30.950Z","1.3.753":"2021-06-21T22:02:33.531Z","1.3.752":"2021-06-10T02:02:39.805Z","1.3.751":"2021-06-09T22:02:41.245Z","1.3.750":"2021-06-08T22:02:42.525Z","1.3.749":"2021-06-04T22:02:40.243Z","1.3.748":"2021-06-04T06:02:44.887Z","1.3.747":"2021-06-03T22:02:41.418Z","1.3.746":"2021-06-03T14:02:43.431Z","1.3.745":"2021-06-03T10:02:44.131Z","1.3.744":"2021-06-02T22:02:42.011Z","1.3.743":"2021-05-31T22:02:37.645Z","1.3.742":"2021-05-28T22:02:37.797Z","1.3.741":"2021-05-28T02:02:41.390Z","1.3.740":"2021-05-27T02:02:38.469Z","1.3.739":"2021-05-26T02:02:41.722Z","1.3.738":"2021-05-25T10:02:43.940Z","1.3.737":"2021-05-25T02:02:39.314Z","1.3.736":"2021-05-24T10:02:40.301Z","1.3.735":"2021-05-20T22:02:41.012Z","1.3.734":"2021-05-20T02:02:39.713Z","1.3.733":"2021-05-19T22:02:41.216Z","1.3.732":"2021-05-19T10:02:40.975Z","1.3.731":"2021-05-18T22:02:40.723Z","1.3.730":"2021-05-18T02:02:40.431Z","1.3.729":"2021-05-17T22:02:38.347Z","1.3.728":"2021-05-14T22:02:36.027Z","1.3.727":"2021-05-05T10:02:39.154Z","1.3.726":"2021-05-04T10:02:41.135Z","1.3.725":"2021-05-01T02:02:34.862Z","1.3.724":"2021-04-30T22:02:39.763Z","1.3.723":"2021-04-28T02:02:35.173Z","1.3.722":"2021-04-27T02:02:34.897Z","1.3.721":"2021-04-26T22:02:38.562Z","1.3.720":"2021-04-22T22:02:37.137Z","1.3.719":"2021-04-21T10:02:39.275Z","1.3.718":"2021-04-21T02:02:37.336Z","1.3.717":"2021-04-14T14:02:39.387Z","1.3.716":"2021-04-14T10:02:37.272Z","1.3.715":"2021-04-14T02:02:37.503Z","1.3.714":"2021-04-13T22:02:38.956Z","1.3.713":"2021-04-13T02:02:39.178Z","1.3.712":"2021-04-10T02:02:38.863Z","1.3.711":"2021-04-08T22:02:40.570Z","1.3.710":"2021-04-07T22:02:40.336Z","1.3.709":"2021-04-06T22:02:41.740Z","1.3.708":"2021-04-05T22:02:52.354Z","1.3.707":"2021-04-03T02:02:39.503Z","1.3.706":"2021-04-02T22:02:39.718Z","1.3.705":"2021-04-01T22:02:39.189Z","1.3.704":"2021-03-31T22:02:40.356Z","1.3.703":"2021-03-30T22:02:45.408Z","1.3.702":"2021-03-29T22:02:40.331Z","1.3.701":"2021-03-26T19:02:38.037Z","1.3.700":"2021-03-25T19:02:37.549Z","1.3.699":"2021-03-24T19:02:38.421Z","1.3.698":"2021-03-24T07:02:38.822Z","1.3.697":"2021-03-24T03:02:35.745Z","1.3.696":"2021-03-23T19:02:38.036Z","1.3.695":"2021-03-23T07:02:36.707Z","1.3.694":"2021-03-23T03:02:32.117Z","1.3.693":"2021-03-19T19:02:36.677Z","1.3.692":"2021-03-18T19:02:38.410Z","1.3.691":"2021-03-17T19:02:37.868Z","1.3.690":"2021-03-16T19:02:38.329Z","1.3.689":"2021-03-16T03:02:34.454Z","1.3.688":"2021-03-15T19:02:39.519Z","1.3.687":"2021-03-12T03:02:34.031Z","1.3.686":"2021-03-11T19:02:39.068Z","1.3.685":"2021-03-11T03:02:37.957Z","1.3.684":"2021-03-09T19:02:37.461Z","1.3.683":"2021-03-08T19:02:39.827Z","1.3.682":"2021-03-06T03:02:34.124Z","1.3.681":"2021-03-04T19:02:36.971Z","1.3.680":"2021-03-04T03:02:36.648Z","1.3.679":"2021-03-03T19:02:39.746Z","1.3.678":"2021-03-02T19:02:39.577Z","1.3.677":"2021-03-02T07:02:41.220Z","1.3.676":"2021-03-01T19:02:40.128Z","1.3.675":"2021-02-26T19:02:38.393Z","1.3.674":"2021-02-25T19:02:39.244Z","1.3.673":"2021-02-24T03:02:37.534Z","1.3.672":"2021-02-22T19:02:38.314Z","1.3.671":"2021-02-20T03:02:36.192Z","1.3.670":"2021-02-19T19:02:38.536Z","1.3.669":"2021-02-19T03:02:33.869Z","1.3.668":"2021-02-18T19:02:35.749Z","1.3.667":"2021-02-17T19:02:36.214Z","1.3.666":"2021-02-16T19:02:37.014Z","1.3.665":"2021-02-15T19:02:35.529Z","1.3.664":"2021-02-13T03:02:33.607Z","1.3.663":"2021-02-11T19:02:38.782Z","1.3.662":"2021-02-10T19:02:44.193Z","1.3.661":"2021-02-10T03:02:34.851Z","1.3.660":"2021-02-09T19:02:38.048Z","1.3.659":"2021-02-09T07:02:38.484Z","1.3.658":"2021-02-09T03:02:37.268Z","1.3.657":"2021-02-06T07:02:40.688Z","1.3.656":"2021-02-06T03:02:37.122Z","1.3.655":"2021-02-05T19:02:40.743Z","1.3.654":"2021-02-04T19:02:41.768Z","1.3.653":"2021-02-03T19:02:39.286Z","1.3.652":"2021-02-03T07:02:38.803Z","1.3.651":"2021-02-03T03:02:35.583Z","1.3.650":"2021-02-01T19:02:38.845Z","1.3.649":"2021-01-29T19:02:37.380Z","1.3.648":"2021-01-28T19:02:49.420Z","1.3.647":"2021-01-28T03:02:35.945Z","1.3.646":"2021-01-27T19:02:40.158Z","1.3.645":"2021-01-25T19:02:38.684Z","1.3.644":"2021-01-23T07:02:38.221Z","1.3.643":"2021-01-22T19:02:36.415Z","1.3.642":"2021-01-19T19:02:39.336Z","1.3.641":"2021-01-15T19:02:36.919Z","1.3.640":"2021-01-15T03:02:36.187Z","1.3.639":"2021-01-14T03:02:36.837Z","1.3.638":"2021-01-13T23:02:36.639Z","1.3.637":"2021-01-13T03:02:40.950Z","1.3.636":"2021-01-11T19:02:39.694Z","1.3.635":"2021-01-08T19:02:40.881Z","1.3.634":"2021-01-05T03:02:38.837Z","1.3.633":"2020-12-23T19:02:38.091Z","1.3.632":"2020-12-22T19:02:38.031Z","1.3.631":"2020-12-22T03:02:37.213Z","1.3.630":"2020-12-21T19:02:38.037Z","1.3.629":"2020-12-17T19:02:42.675Z","1.3.628":"2020-12-16T19:02:43.750Z","1.3.627":"2020-12-15T19:02:41.385Z","1.3.626":"2020-12-14T19:02:43.251Z","1.3.625":"2020-12-12T07:02:40.119Z","1.3.624":"2020-12-12T03:02:37.961Z","1.3.623":"2020-12-11T19:02:41.969Z","1.3.622":"2020-12-10T19:02:40.855Z","1.3.621":"2020-12-09T19:02:40.707Z","1.3.620":"2020-12-08T19:02:40.168Z","1.3.619":"2020-12-08T07:02:39.518Z","1.3.618":"2020-12-08T03:02:36.362Z","1.3.617":"2020-12-07T19:02:41.954Z","1.3.616":"2020-12-04T19:02:38.155Z","1.3.615":"2020-12-03T19:02:42.808Z","1.3.614":"2020-12-02T19:02:39.574Z","1.3.613":"2020-12-02T03:02:37.879Z","1.3.612":"2020-12-01T03:02:35.796Z","1.3.611":"2020-11-30T19:02:39.538Z","1.3.610":"2020-11-27T19:02:39.021Z","1.3.609":"2020-11-27T03:02:37.505Z","1.3.608":"2020-11-26T19:02:37.931Z","1.3.607":"2020-11-24T19:02:39.704Z","1.3.606":"2020-11-24T07:02:39.101Z","1.3.605":"2020-11-24T03:02:36.244Z","1.3.604":"2020-11-23T19:02:39.911Z","1.3.603":"2020-11-20T03:02:37.852Z","1.3.602":"2020-11-19T19:02:38.810Z","1.3.601":"2020-11-19T07:02:39.265Z","1.3.600":"2020-11-19T03:02:36.006Z","1.3.599":"2020-11-18T19:02:38.933Z","1.3.598":"2020-11-17T19:03:09.906Z","1.3.597":"2020-11-17T03:02:36.195Z","1.3.596":"2020-11-14T07:02:38.432Z","1.3.595":"2020-11-13T03:02:35.621Z","1.3.594":"2020-11-12T19:02:39.500Z","1.3.593":"2020-11-11T19:02:37.008Z","1.3.592":"2020-11-10T03:02:37.606Z","1.3.591":"2020-11-07T03:02:35.092Z","1.3.590":"2020-11-06T19:02:38.812Z","1.3.589":"2020-11-05T19:02:37.504Z","1.3.588":"2020-11-04T19:02:37.620Z","1.3.587":"2020-11-04T03:02:35.407Z","1.3.586":"2020-11-03T03:02:38.532Z","1.3.585":"2020-10-30T20:07:00.818Z","1.3.584":"2020-10-27T11:33:46.289Z","1.3.583":"2020-10-22T20:02:35.366Z","1.3.582":"2020-10-16T04:02:53.306Z","1.3.581":"2020-10-15T20:02:37.716Z","1.3.580":"2020-10-15T04:02:27.376Z","1.3.579":"2020-10-14T04:02:29.964Z","1.3.578":"2020-10-07T04:02:34.168Z","1.3.577":"2020-10-06T04:02:56.546Z","1.3.576":"2020-09-29T12:02:32.560Z","1.3.575":"2020-09-29T04:02:33.078Z","1.3.574":"2020-09-28T12:02:31.210Z","1.3.573":"2020-09-26T00:02:30.222Z","1.3.572":"2020-09-25T04:02:36.039Z","1.3.571":"2020-09-23T04:02:29.941Z","1.3.570":"2020-09-16T08:02:38.663Z","1.3.569":"2020-09-16T04:02:37.783Z","1.3.568":"2020-09-15T04:02:42.856Z","1.3.567":"2020-09-12T04:02:35.478Z","1.3.566":"2020-09-11T16:02:28.007Z","1.3.565":"2020-09-11T04:03:00.755Z","1.3.564":"2020-09-08T12:02:23.258Z","1.3.563":"2020-09-08T04:02:28.209Z","1.3.562":"2020-09-04T04:02:28.839Z","1.3.561":"2020-09-03T20:02:27.590Z","1.3.560":"2020-09-03T08:02:39.401Z","1.3.559":"2020-09-03T04:02:42.699Z","1.3.558":"2020-09-02T08:02:28.679Z","1.3.557":"2020-09-01T16:02:30.123Z","1.3.556":"2020-09-01T04:02:27.049Z","1.3.555":"2020-08-29T04:02:24.066Z","1.3.554":"2020-08-28T08:02:26.326Z","1.3.553":"2020-08-28T04:02:27.811Z","1.3.552":"2020-08-27T20:02:26.823Z","1.3.551":"2020-08-27T16:02:25.011Z","1.3.550":"2020-08-27T04:02:27.523Z","1.3.549":"2020-08-26T12:02:24.870Z","1.3.548":"2020-08-26T04:02:39.114Z","1.3.547":"2020-08-26T00:02:25.059Z","1.3.546":"2020-08-25T20:02:32.818Z","1.3.545":"2020-08-25T04:02:32.749Z","1.3.544":"2020-08-23T16:02:43.722Z","1.3.543":"2020-08-23T08:02:35.023Z","1.3.542":"2020-08-22T16:04:53.879Z","1.3.541":"2020-08-22T12:02:33.606Z","1.3.540":"2020-08-21T04:02:34.796Z","1.3.539":"2020-08-19T16:02:50.398Z","1.3.538":"2020-08-19T12:02:30.644Z","1.3.537":"2020-08-19T04:02:28.533Z","1.3.536":"2020-08-18T20:02:29.356Z","1.3.535":"2020-08-18T16:02:30.025Z","1.3.534":"2020-08-18T04:02:32.827Z","1.3.533":"2020-08-13T04:02:30.557Z","1.3.532":"2020-08-12T20:02:29.927Z","1.3.531":"2020-08-12T12:02:37.637Z","1.3.530":"2020-08-12T04:02:31.428Z","1.3.529":"2020-08-11T08:02:41.469Z","1.3.528":"2020-08-11T04:02:31.742Z","1.3.527":"2020-08-10T20:02:29.853Z","1.3.526":"2020-08-08T04:02:30.370Z","1.3.525":"2020-08-07T20:02:31.798Z","1.3.524":"2020-08-07T04:02:29.502Z","1.3.523":"2020-08-06T08:02:28.400Z","1.3.522":"2020-08-06T04:02:31.059Z","1.3.521":"2020-08-05T16:02:29.559Z","1.3.520":"2020-08-05T04:02:30.540Z","1.3.519":"2020-08-04T20:02:30.189Z","1.3.518":"2020-08-04T04:02:29.614Z","1.3.517":"2020-08-03T20:02:32.295Z","1.3.516":"2020-07-31T20:02:28.632Z","1.3.515":"2020-07-31T04:02:30.896Z","1.3.514":"2020-07-30T04:02:28.945Z","1.3.513":"2020-07-29T20:02:30.165Z","1.3.512":"2020-07-29T08:02:30.910Z","1.3.511":"2020-07-29T04:02:29.919Z","1.3.510":"2020-07-28T04:02:39.106Z","1.3.509":"2020-07-25T08:02:30.268Z","1.3.508":"2020-07-25T04:02:37.146Z","1.3.507":"2020-07-25T00:02:32.101Z","1.3.506":"2020-07-24T04:02:32.563Z","1.3.505":"2020-07-23T12:02:33.185Z","1.3.504":"2020-07-22T12:02:21.245Z","1.3.503":"2020-07-22T08:02:30.849Z","1.3.502":"2020-07-21T04:02:29.410Z","1.3.501":"2020-07-19T08:02:28.525Z","1.3.500":"2020-07-18T04:02:28.298Z","1.3.499":"2020-07-17T04:02:34.986Z","1.3.498":"2020-07-15T08:02:29.722Z","1.3.497":"2020-07-14T04:02:29.108Z","1.3.496":"2020-07-10T08:02:25.943Z","1.3.495":"2020-07-10T04:02:30.596Z","1.3.494":"2020-07-09T08:02:27.623Z","1.3.493":"2020-07-09T04:02:30.337Z","1.3.492":"2020-07-08T08:02:27.698Z","1.3.491":"2020-07-08T04:02:34.271Z","1.3.490":"2020-07-07T12:02:25.820Z","1.3.489":"2020-07-07T04:02:29.066Z","1.3.488":"2020-07-04T04:02:33.186Z","1.3.487":"2020-07-03T12:02:25.984Z","1.3.486":"2020-07-03T08:02:27.786Z","1.3.485":"2020-07-03T04:02:29.816Z","1.3.484":"2020-07-02T04:02:34.876Z","1.3.483":"2020-06-25T08:02:34.279Z","1.3.482":"2020-06-25T04:02:33.097Z","1.3.481":"2020-06-23T04:02:34.019Z","1.3.480":"2020-06-20T08:02:28.606Z","1.3.479":"2020-06-20T04:02:35.027Z","1.3.478":"2020-06-19T04:02:33.011Z","1.3.477":"2020-06-18T08:02:31.369Z","1.3.476":"2020-06-18T04:02:28.762Z","1.3.475":"2020-06-17T04:02:29.643Z","1.3.474":"2020-06-16T04:02:39.440Z","1.3.473":"2020-06-13T16:02:17.110Z","1.3.472":"2020-06-13T12:08:43.893Z","1.3.470":"2020-06-13T04:02:35.996Z","1.3.469":"2020-06-12T12:02:31.072Z","1.3.468":"2020-06-12T04:02:41.273Z","1.3.467":"2020-06-11T04:02:40.586Z","1.3.466":"2020-06-10T04:02:39.751Z","1.3.465":"2020-06-08T20:02:42.668Z","1.3.464":"2020-06-06T20:02:38.526Z","1.3.463":"2020-06-06T04:02:37.350Z","1.3.462":"2020-06-05T08:02:50.793Z","1.3.461":"2020-06-05T04:02:55.230Z","1.3.460":"2020-06-04T20:02:35.682Z","1.3.459":"2020-06-04T04:02:34.169Z","1.3.458":"2020-06-03T04:02:48.795Z","1.3.457":"2020-06-02T20:02:52.864Z","1.3.456":"2020-06-02T04:02:37.427Z","1.3.455":"2020-05-30T12:02:36.326Z","1.3.454":"2020-05-30T04:02:36.104Z","1.3.453":"2020-05-27T04:02:35.773Z","1.3.452":"2020-05-26T04:02:35.226Z","1.3.451":"2020-05-22T12:02:45.356Z","1.3.450":"2020-05-22T08:02:34.266Z","1.3.449":"2020-05-22T04:02:35.602Z","1.3.448":"2020-05-21T04:02:35.274Z","1.3.447":"2020-05-20T20:02:35.374Z","1.3.446":"2020-05-20T04:02:35.321Z","1.3.445":"2020-05-19T20:02:37.633Z","1.3.444":"2020-05-19T16:02:34.303Z","1.3.443":"2020-05-19T08:02:37.522Z","1.3.442":"2020-05-19T04:02:33.241Z","1.3.441":"2020-05-16T04:02:42.225Z","1.3.440":"2020-05-15T20:02:33.166Z","1.3.438":"2020-05-15T04:02:38.462Z","1.3.437":"2020-05-14T04:02:41.761Z","1.3.436":"2020-05-13T20:02:33.152Z","1.3.435":"2020-05-13T04:02:37.848Z","1.3.434":"2020-05-12T12:02:33.987Z","1.3.433":"2020-05-12T04:02:46.138Z","1.3.432":"2020-05-09T04:02:46.176Z","1.3.431":"2020-05-08T04:02:44.958Z","1.3.430":"2020-05-07T04:02:44.449Z","1.3.429":"2020-05-06T04:02:44.244Z","1.3.428":"2020-05-05T08:02:48.751Z","1.3.427":"2020-05-02T04:02:42.989Z","1.3.426":"2020-05-01T04:02:41.152Z","1.3.425":"2020-04-30T12:02:39.615Z","1.3.424":"2020-04-30T04:02:40.067Z","1.3.423":"2020-04-29T08:02:40.230Z","1.3.422":"2020-04-29T04:02:40.217Z","1.3.421":"2020-04-28T16:03:37.520Z","1.3.420":"2020-04-28T08:02:58.685Z","1.3.419":"2020-04-28T04:02:40.836Z","1.3.418":"2020-04-25T04:02:35.181Z","1.3.417":"2020-04-24T20:02:38.425Z","1.3.416":"2020-04-24T04:02:37.218Z","1.3.415":"2020-04-23T04:02:47.367Z","1.3.414":"2020-04-21T04:02:48.898Z","1.3.413":"2020-04-18T04:02:44.910Z","1.3.412":"2020-04-17T08:02:46.212Z","1.3.411":"2020-04-17T04:02:45.446Z","1.3.410":"2020-04-16T12:02:36.172Z","1.3.409":"2020-04-16T04:02:40.893Z","1.3.408":"2020-04-15T12:02:40.365Z","1.3.407":"2020-04-15T04:02:37.504Z","1.3.406":"2020-04-14T20:02:40.945Z","1.3.405":"2020-04-14T12:02:47.995Z","1.3.404":"2020-04-14T04:02:36.711Z","1.3.403":"2020-04-11T04:02:49.957Z","1.3.402":"2020-04-10T04:02:43.945Z","1.3.401":"2020-04-09T08:02:39.903Z","1.3.400":"2020-04-09T04:02:36.477Z","1.3.399":"2020-04-09T00:02:50.899Z","1.3.398":"2020-04-07T04:02:47.307Z","1.3.397":"2020-04-04T12:02:29.363Z","1.3.396":"2020-04-04T04:02:34.732Z","1.3.395":"2020-04-03T04:02:33.424Z","1.3.394":"2020-04-02T20:02:30.198Z","1.3.393":"2020-04-02T04:02:28.915Z","1.3.392":"2020-04-01T04:02:30.615Z","1.3.391":"2020-03-31T04:02:27.958Z","1.3.390":"2020-03-28T08:02:33.626Z","1.3.389":"2020-03-28T04:02:39.153Z","1.3.388":"2020-03-27T20:02:30.598Z","1.3.387":"2020-03-27T04:02:30.527Z","1.3.386":"2020-03-26T08:02:28.019Z","1.3.385":"2020-03-26T04:02:30.757Z","1.3.384":"2020-03-25T04:02:40.585Z","1.3.383":"2020-03-24T16:02:35.927Z","1.3.382":"2020-03-24T04:02:36.085Z","1.3.381":"2020-03-23T20:02:40.400Z","1.3.380":"2020-03-21T04:02:34.844Z","1.3.379":"2020-03-19T04:02:34.121Z","1.3.378":"2020-03-18T04:02:35.400Z","1.3.377":"2020-03-17T04:02:34.654Z","1.3.376":"2020-03-12T04:02:35.581Z","1.3.375":"2020-03-11T04:02:36.500Z","1.3.374":"2020-03-10T08:02:35.871Z","1.3.373":"2020-03-10T04:02:36.407Z","1.3.372":"2020-03-07T01:02:36.648Z","1.3.371":"2020-03-06T21:02:33.993Z","1.3.370":"2020-03-06T09:02:33.612Z","1.3.369":"2020-03-06T01:02:37.550Z","1.3.368":"2020-03-05T01:02:33.788Z","1.3.367":"2020-03-03T21:02:33.921Z","1.3.366":"2020-03-03T09:02:33.717Z","1.3.365":"2020-03-02T21:02:36.919Z","1.3.364":"2020-02-29T01:02:37.331Z","1.3.363":"2020-02-28T09:02:35.077Z","1.3.362":"2020-02-27T01:02:35.854Z","1.3.361":"2020-02-26T09:02:35.440Z","1.3.360":"2020-02-24T01:02:31.841Z","1.3.359":"2020-02-23T01:02:34.357Z","1.3.358":"2020-02-22T01:02:33.650Z","1.3.357":"2020-02-21T21:02:31.509Z","1.3.356":"2020-02-21T01:02:34.439Z","1.3.355":"2020-02-19T01:02:34.267Z","1.3.354":"2020-02-18T01:02:34.092Z","1.3.353":"2020-02-17T01:02:32.882Z","1.3.352":"2020-02-16T09:02:33.489Z","1.3.351":"2020-02-15T01:02:34.103Z","1.3.350":"2020-02-14T21:02:36.695Z","1.3.349":"2020-02-12T01:02:34.952Z","1.3.348":"2020-02-11T01:02:33.205Z","1.3.347":"2020-02-10T21:02:32.278Z","1.3.346":"2020-02-10T01:02:34.120Z","1.3.345":"2020-02-04T01:02:33.438Z","1.3.344":"2020-01-30T13:02:31.475Z","1.3.343":"2020-01-30T09:02:32.211Z","1.3.342":"2020-01-30T01:02:31.868Z","1.3.341":"2020-01-28T21:02:33.658Z","1.3.340":"2020-01-23T01:02:33.362Z","1.3.339":"2020-01-22T01:02:33.555Z","1.3.338":"2020-01-20T01:02:33.039Z","1.3.337":"2020-01-18T01:02:32.411Z","1.3.336":"2020-01-17T01:02:31.675Z","1.3.335":"2020-01-16T01:02:31.444Z","1.3.334":"2020-01-14T21:02:31.961Z","1.3.333":"2020-01-14T01:02:32.355Z","1.3.332":"2020-01-12T01:02:33.517Z","1.3.331":"2020-01-11T01:02:31.833Z","1.3.330":"2020-01-10T01:02:31.927Z","1.3.329":"2020-01-09T01:02:34.733Z","1.3.328":"2020-01-07T01:02:32.997Z","1.3.327":"2020-01-06T13:02:24.518Z","1.3.326":"2020-01-05T21:02:28.482Z","1.3.325":"2020-01-05T09:02:26.584Z","1.3.324":"2020-01-05T01:02:33.296Z","1.3.323":"2020-01-04T01:02:33.647Z","1.3.322":"2019-12-02T21:02:40.165Z","1.3.321":"2019-12-02T01:02:35.927Z","1.3.320":"2019-12-01T21:02:26.728Z","1.3.319":"2019-12-01T01:02:28.160Z","1.3.318":"2019-11-30T21:02:32.945Z","1.3.317":"2019-11-30T05:02:26.386Z","1.3.316":"2019-11-30T01:02:28.401Z","1.3.315":"2019-11-29T21:02:29.263Z","1.3.314":"2019-11-25T01:02:35.160Z","1.3.313":"2019-11-24T21:02:25.886Z","1.3.312":"2019-11-23T21:02:33.773Z","1.3.311":"2019-11-22T21:03:43.037Z","1.3.310":"2019-11-21T21:02:31.800Z","1.3.309":"2019-11-21T09:02:30.392Z","1.3.307":"2019-11-20T09:02:33.901Z","1.3.306":"2019-11-08T01:02:31.497Z","1.3.305":"2019-11-07T01:02:32.144Z","1.3.304":"2019-11-05T21:02:31.154Z","1.3.303":"2019-11-05T13:02:31.218Z","1.3.302":"2019-11-02T16:02:29.748Z","1.3.301":"2019-11-02T08:02:28.165Z","1.3.300":"2019-11-02T04:02:29.447Z","1.3.299":"2019-11-01T20:02:29.849Z","1.3.298":"2019-11-01T08:02:30.556Z","1.3.297":"2019-10-31T20:02:30.629Z","1.3.296":"2019-10-25T04:02:27.603Z","1.3.295":"2019-10-24T04:02:27.801Z","1.3.294":"2019-10-23T20:02:31.333Z","1.3.293":"2019-10-23T08:02:27.241Z","1.3.292":"2019-10-22T08:02:29.756Z","1.3.291":"2019-10-22T04:02:29.077Z","1.3.290":"2019-10-21T20:02:31.816Z","1.3.289":"2019-10-21T04:02:26.810Z","1.3.288":"2019-10-20T20:02:28.970Z","1.3.287":"2019-10-20T04:02:28.154Z","1.3.286":"2019-10-19T20:02:28.450Z","1.3.285":"2019-10-17T20:02:29.408Z","1.3.284":"2019-10-17T04:02:27.234Z","1.3.283":"2019-10-16T20:02:35.964Z","1.3.282":"2019-10-12T20:02:30.735Z","1.3.281":"2019-10-11T20:02:29.525Z","1.3.280":"2019-10-09T20:02:34.590Z","1.3.279":"2019-10-09T08:02:30.073Z","1.3.278":"2019-10-09T04:02:30.022Z","1.3.277":"2019-10-07T04:02:30.984Z","1.3.276":"2019-10-06T20:02:32.727Z","1.3.275":"2019-10-05T20:02:30.827Z","1.3.274":"2019-10-04T20:02:29.975Z","1.3.273":"2019-10-02T04:02:32.870Z","1.3.272":"2019-10-01T20:02:30.039Z","1.3.271":"2019-10-01T16:02:35.920Z","1.3.270":"2019-09-30T20:02:33.831Z","1.3.269":"2019-09-30T04:02:32.418Z","1.3.268":"2019-09-29T20:02:34.741Z","1.3.267":"2019-09-26T20:02:34.069Z","1.3.266":"2019-09-25T04:02:35.397Z","1.3.265":"2019-09-24T04:02:36.102Z","1.3.264":"2019-09-21T04:02:32.314Z","1.3.263":"2019-09-20T04:02:31.026Z","1.3.262":"2019-09-19T08:02:36.400Z","1.3.261":"2019-09-18T04:02:35.172Z","1.3.260":"2019-09-16T04:02:33.402Z","1.3.259":"2019-09-15T04:02:36.461Z","1.3.258":"2019-09-14T04:02:30.531Z","1.3.257":"2019-09-12T20:02:29.701Z","1.3.256":"2019-09-12T04:02:31.377Z","1.3.255":"2019-09-11T04:02:30.082Z","1.3.254":"2019-09-10T04:02:31.160Z","1.3.253":"2019-09-08T16:02:30.748Z","1.3.252":"2019-09-03T20:02:30.561Z","1.3.251":"2019-09-03T04:02:33.268Z","1.3.250":"2019-09-02T04:02:29.989Z","1.3.249":"2019-09-01T20:02:31.178Z","1.3.248":"2019-08-31T08:02:31.666Z","1.3.247":"2019-08-30T20:02:31.474Z","1.3.246":"2019-08-30T16:02:33.650Z","1.3.245":"2019-08-30T04:02:32.393Z","1.3.244":"2019-08-29T04:02:30.168Z","1.3.243":"2019-08-28T08:02:32.381Z","1.3.242":"2019-08-28T04:02:29.307Z","1.3.241":"2019-08-26T04:02:35.680Z","1.3.240":"2019-08-25T08:02:31.984Z","1.3.239":"2019-08-25T04:02:38.792Z","1.3.238":"2019-08-24T04:02:32.156Z","1.3.237":"2019-08-21T04:02:33.128Z","1.3.236":"2019-08-20T08:02:39.892Z","1.3.235":"2019-08-19T04:02:42.559Z","1.3.234":"2019-08-18T12:02:29.641Z","1.3.233":"2019-08-18T04:02:25.888Z","1.3.232":"2019-08-17T08:02:27.471Z","1.3.231":"2019-08-17T04:02:25.418Z","1.3.230":"2019-08-16T04:02:41.963Z","1.3.229":"2019-08-15T12:02:25.859Z","1.3.228":"2019-08-15T08:02:25.254Z","1.3.227":"2019-08-15T04:02:25.235Z","1.3.226":"2019-08-14T20:02:28.298Z","1.3.225":"2019-08-13T04:02:33.700Z","1.3.224":"2019-08-12T08:02:31.148Z","1.3.223":"2019-08-11T08:02:31.378Z","1.3.222":"2019-08-10T04:02:30.589Z","1.3.221":"2019-08-09T04:02:30.953Z","1.3.220":"2019-08-08T04:02:31.191Z","1.3.219":"2019-08-07T16:02:30.480Z","1.3.218":"2019-08-07T08:02:32.124Z","1.3.217":"2019-08-07T04:02:32.189Z","1.3.216":"2019-08-06T20:02:31.111Z","1.3.215":"2019-08-06T08:02:32.685Z","1.3.214":"2019-08-04T16:02:32.368Z","1.3.213":"2019-08-04T12:02:20.615Z","1.3.212":"2019-08-03T04:02:30.021Z","1.3.211":"2019-08-02T04:02:30.571Z","1.3.210":"2019-08-01T16:02:31.358Z","1.3.209":"2019-08-01T04:02:29.400Z","1.3.208":"2019-07-31T20:02:31.042Z","1.3.207":"2019-07-31T04:02:29.941Z","1.3.206":"2019-07-30T20:02:28.904Z","1.3.205":"2019-07-30T08:02:31.869Z","1.3.204":"2019-07-29T20:02:29.181Z","1.3.203":"2019-07-29T04:02:30.912Z","1.3.202":"2019-07-28T04:02:30.325Z","1.3.201":"2019-07-26T20:02:29.040Z","1.3.200":"2019-07-24T04:02:30.990Z","1.3.199":"2019-07-22T04:02:29.435Z","1.3.198":"2019-07-21T20:02:28.880Z","1.3.197":"2019-07-21T04:02:29.972Z","1.3.196":"2019-07-20T08:02:32.513Z","1.3.195":"2019-07-20T04:02:30.042Z","1.3.194":"2019-07-18T04:02:29.490Z","1.3.193":"2019-07-17T04:02:28.809Z","1.3.192":"2019-07-16T20:02:28.820Z","1.3.191":"2019-07-12T20:02:29.965Z","1.3.190":"2019-07-11T20:02:30.935Z","1.3.189":"2019-07-11T04:02:29.601Z","1.3.188":"2019-07-06T04:02:29.392Z","1.3.187":"2019-07-04T20:02:34.592Z","1.3.186":"2019-07-04T08:02:32.231Z","1.3.185":"2019-07-03T04:02:34.734Z","1.3.184":"2019-07-02T20:02:31.508Z","1.3.183":"2019-07-02T08:02:37.521Z","1.3.182":"2019-07-01T20:02:30.662Z","1.3.181":"2019-07-01T16:02:28.200Z","1.3.180":"2019-07-01T08:02:38.170Z","1.3.179":"2019-06-30T04:02:35.879Z","1.3.178":"2019-06-29T20:02:36.197Z","1.3.177":"2019-06-29T04:02:31.612Z","1.3.176":"2019-06-28T04:02:30.289Z","1.3.175":"2019-06-27T04:02:37.010Z","1.3.174":"2019-06-26T08:02:38.547Z","1.3.173":"2019-06-25T04:02:37.252Z","1.3.172":"2019-06-24T08:02:33.001Z","1.3.171":"2019-06-24T04:02:36.209Z","1.3.170":"2019-06-23T04:02:34.990Z","1.3.169":"2019-06-22T08:02:37.897Z","1.3.168":"2019-06-22T04:02:36.041Z","1.3.167":"2019-06-21T16:02:34.319Z","1.3.166":"2019-06-20T04:02:35.569Z","1.3.165":"2019-06-19T04:02:30.923Z","1.3.164":"2019-06-17T08:02:38.926Z","1.3.163":"2019-06-16T20:02:29.289Z","1.3.162":"2019-06-16T04:02:37.376Z","1.3.161":"2019-06-15T08:02:38.654Z","1.3.160":"2019-06-15T04:02:36.588Z","1.3.159":"2019-06-14T04:02:33.775Z","1.3.158":"2019-06-12T20:02:34.780Z","1.3.157":"2019-06-12T00:02:35.698Z","1.3.156":"2019-06-11T20:02:31.748Z","1.3.155":"2019-06-09T20:02:33.696Z","1.3.154":"2019-06-09T04:02:33.723Z","1.3.153":"2019-06-09T00:02:35.806Z","1.3.152":"2019-06-08T00:02:33.618Z","1.3.151":"2019-06-07T20:02:39.879Z","1.3.150":"2019-06-07T00:02:32.446Z","1.3.149":"2019-06-06T20:02:33.000Z","1.3.148":"2019-06-06T00:02:33.239Z","1.3.147":"2019-06-05T20:02:31.112Z","1.3.146":"2019-06-05T04:02:31.445Z","1.3.145":"2019-06-05T00:02:31.186Z","1.3.144":"2019-06-03T20:02:30.482Z","1.3.143":"2019-06-02T20:02:31.699Z","1.3.142":"2019-05-31T20:02:29.526Z","1.3.141":"2019-05-31T08:02:32.035Z","1.3.140":"2019-05-30T20:02:29.071Z","1.3.139":"2019-05-30T00:02:30.561Z","1.3.138":"2019-05-29T20:02:31.433Z","1.3.129":"2019-05-01T20:02:31.462Z","1.3.128":"2019-05-01T08:02:33.300Z","1.3.126":"2019-04-24T20:02:40.750Z","1.3.125":"2019-04-20T04:02:33.350Z","1.3.124":"2019-04-05T08:55:30.613Z","1.3.122":"2019-03-29T20:02:34.471Z","1.3.121":"2019-03-29T00:02:39.254Z","1.3.120":"2019-03-28T04:02:30.692Z","1.3.119":"2019-03-22T00:02:32.656Z","1.3.118":"2019-03-21T00:02:39.035Z","1.3.117":"2019-03-20T20:02:38.937Z","1.3.116":"2019-03-14T04:02:31.711Z","1.3.113":"2019-02-04T01:02:32.117Z","1.3.112":"2019-02-02T17:02:33.936Z","1.3.111":"2019-02-01T01:02:30.735Z","1.3.110":"2019-01-31T21:02:35.181Z","1.3.108":"2019-01-25T09:02:30.936Z","1.3.107":"2019-01-25T01:02:30.607Z","1.3.106":"2019-01-23T01:02:29.178Z","1.3.105":"2019-01-22T21:02:31.117Z","1.3.103":"2019-01-15T01:02:24.313Z","1.3.102":"2019-01-12T01:02:21.660Z","1.3.100":"2019-01-08T01:02:27.484Z","1.3.99":"2019-01-07T21:02:25.505Z","1.3.97":"2019-01-04T21:02:25.509Z","1.3.96":"2018-12-21T01:02:23.492Z","1.3.95":"2018-12-19T01:02:26.973Z","1.3.94":"2018-12-18T01:02:24.501Z","1.3.93":"2018-12-17T21:02:24.956Z","1.3.92":"2018-12-15T01:02:24.445Z","1.3.91":"2018-12-13T21:02:28.527Z","1.3.90":"2018-12-11T05:02:25.736Z","1.3.89":"2018-12-11T01:02:24.547Z","1.3.88":"2018-12-04T05:02:35.524Z","1.3.87":"2018-12-02T21:02:36.657Z","1.3.86":"2018-11-30T17:02:36.590Z","1.3.85":"2018-11-27T10:49:21.290Z","1.3.84":"2018-11-09T09:02:20.962Z","1.3.81":"2018-10-23T16:02:27.760Z","1.3.80":"2018-10-19T04:02:24.937Z","1.3.79":"2018-10-13T00:02:25.142Z","1.3.78":"2018-10-12T04:02:29.198Z","1.3.77":"2018-10-11T08:02:24.785Z","1.3.76":"2018-10-10T16:02:24.776Z","1.3.75":"2018-10-07T04:02:24.008Z","1.3.74":"2018-10-06T12:02:26.692Z","1.3.73":"2018-10-01T20:02:24.149Z","1.3.72":"2018-09-28T00:02:25.082Z","1.3.71":"2018-09-27T04:02:26.161Z","1.3.70":"2018-09-19T12:02:26.131Z","1.3.69":"2018-09-18T20:02:26.270Z","1.3.68":"2018-09-17T20:02:24.201Z","1.3.67":"2018-09-13T00:02:24.005Z","1.3.66":"2018-09-12T12:02:26.642Z","1.3.65":"2018-09-10T20:02:25.857Z","1.3.64":"2018-09-08T08:02:26.175Z","1.3.63":"2018-09-06T04:02:23.352Z","1.3.62":"2018-08-29T08:02:23.036Z","1.3.61":"2018-08-23T00:02:24.532Z","1.3.60":"2018-08-22T20:02:25.346Z","1.3.59":"2018-08-20T20:02:24.046Z","1.3.58":"2018-08-13T20:02:24.066Z","1.3.57":"2018-08-10T00:02:25.005Z","1.3.56":"2018-08-09T00:02:23.970Z","1.3.55":"2018-08-02T00:02:22.386Z","1.3.54":"2018-08-01T14:41:12.368Z","1.3.52":"2018-07-11T00:02:21.374Z","1.3.51":"2018-07-03T20:02:23.182Z","1.3.50":"2018-06-21T20:02:21.312Z","1.3.49":"2018-06-21T04:02:22.184Z","1.3.48":"2018-05-23T00:02:24.325Z","1.3.47":"2018-05-16T20:02:24.781Z","1.3.46":"2018-05-15T20:02:24.768Z","1.3.45":"2018-05-02T00:02:23.521Z","1.3.44":"2018-04-27T04:02:22.525Z","1.3.43":"2018-04-26T20:02:23.093Z","1.3.42":"2018-04-04T00:02:21.575Z","1.3.41":"2018-03-28T00:02:21.014Z","1.3.40":"2018-03-21T00:02:21.114Z","1.3.39":"2018-03-16T20:02:20.205Z","1.3.38":"2018-03-15T20:02:21.383Z","1.3.37":"2018-03-09T17:02:21.436Z","1.3.36":"2018-03-06T05:02:22.461Z","1.3.35":"2018-03-05T21:02:23.044Z","1.3.34":"2018-02-22T21:02:22.119Z","1.3.33":"2018-02-07T05:02:22.823Z","1.3.32":"2018-02-01T01:02:19.042Z","1.3.31":"2018-01-17T11:34:33.417Z","1.3.30":"2017-12-20T21:01:16.790Z","1.3.29":"2017-12-19T09:02:17.706Z","1.3.28":"2017-12-05T09:02:18.254Z","1.3.27":"2017-10-20T08:02:27.516Z","1.3.26":"2017-10-12T08:02:27.312Z","1.3.25":"2017-10-11T08:02:30.087Z","1.3.24":"2017-09-29T08:02:24.533Z","1.3.23":"2017-09-28T08:02:25.853Z","1.3.22":"2017-09-24T08:02:23.059Z","1.3.21":"2017-09-07T08:02:35.658Z","1.3.20":"2017-09-01T08:02:25.562Z","1.3.19":"2017-08-31T08:02:28.168Z","1.3.18":"2017-08-10T08:02:24.089Z","1.3.17":"2017-08-04T08:02:26.426Z","1.3.16":"2017-07-18T08:02:23.723Z","1.3.15":"2017-06-29T08:02:25.887Z","1.3.14":"2017-06-09T08:02:22.298Z","1.3.13":"2017-05-27T08:02:22.851Z","1.3.12":"2017-05-26T08:02:25.319Z","1.3.11":"2017-05-17T08:02:24.464Z","1.3.10":"2017-05-11T08:02:25.430Z","1.3.9":"2017-05-02T08:02:28.660Z","1.3.8":"2017-04-23T08:02:22.988Z","1.3.7":"2017-04-22T08:02:29.179Z","1.3.6":"2017-04-21T08:02:26.934Z","1.3.5":"2017-04-20T08:02:21.892Z","1.3.4":"2017-04-19T08:02:23.923Z","1.3.3":"2017-04-08T19:35:27.609Z","1.3.2":"2017-03-28T19:21:15.244Z","1.3.1":"2017-03-28T18:58:12.384Z","1.3.0":"2017-03-28T18:36:44.995Z","1.2.8":"2017-03-23T08:02:19.911Z","1.2.7":"2017-03-15T08:02:18.837Z","1.2.6":"2017-03-08T09:02:19.067Z","1.2.5":"2017-03-02T09:02:16.287Z","1.2.4":"2017-02-25T19:43:31.604Z","1.2.3":"2017-02-22T09:02:16.227Z","1.2.2":"2017-02-07T09:02:16.441Z","1.2.1":"2017-01-25T09:02:16.839Z","1.2.0":"2017-01-20T22:18:26.305Z","1.1.1":"2017-01-20T09:02:17.351Z","1.1.0":"2017-01-16T21:48:22.997Z","1.0.1":"2017-01-16T17:00:29.381Z","1.0.0":"2017-01-15T16:40:50.100Z","1.4.20":"2021-12-16T07:02:28.639Z","1.3.308":"2019-11-21T01:02:33.684Z","1.4.21":"2021-12-16T19:02:29.498Z","1.4.22":"2021-12-17T03:02:25.406Z","1.4.23":"2021-12-17T07:02:27.544Z","1.4.24":"2021-12-17T19:02:30.012Z","1.4.25":"2021-12-21T03:02:26.593Z","1.4.26":"2021-12-21T19:02:29.097Z","1.4.27":"2021-12-22T19:02:33.400Z","1.4.28":"2021-12-24T07:02:30.360Z","1.4.29":"2021-12-28T19:02:30.570Z","1.4.30":"2021-12-29T19:02:32.231Z","1.4.31":"2021-12-31T19:02:33.635Z","1.4.32":"2022-01-03T19:02:30.805Z","1.4.33":"2022-01-04T03:02:30.511Z","1.4.34":"2022-01-04T15:02:31.550Z","1.4.35":"2022-01-05T03:02:29.804Z","1.4.36":"2022-01-05T19:02:31.841Z","1.4.37":"2022-01-06T19:02:30.774Z","1.4.38":"2022-01-07T19:02:33.297Z","1.4.39":"2022-01-10T19:02:36.140Z","1.4.40":"2022-01-11T03:02:30.833Z","1.4.41":"2022-01-11T19:02:34.152Z","1.4.42":"2022-01-12T03:02:34.393Z","1.4.43":"2022-01-12T07:02:33.836Z","1.4.44":"2022-01-12T19:02:38.200Z","1.4.45":"2022-01-13T19:02:32.662Z","1.4.46":"2022-01-14T19:02:34.247Z","1.4.47":"2022-01-17T19:02:33.679Z","1.4.48":"2022-01-18T19:02:32.903Z","1.4.49":"2022-01-19T19:02:34.709Z","1.4.50":"2022-01-21T19:02:34.341Z","1.4.51":"2022-01-22T03:02:30.344Z","1.4.52":"2022-01-24T19:02:31.509Z","1.4.53":"2022-01-25T19:02:29.277Z","1.4.66":"2022-02-07T19:02:31.082Z","1.4.67":"2022-02-08T19:02:32.295Z","1.4.68":"2022-02-09T19:02:32.548Z","1.4.69":"2022-02-14T19:02:29.327Z","1.4.70":"2022-02-15T03:02:28.708Z","1.4.71":"2022-02-15T07:02:30.117Z","1.4.72":"2022-02-24T03:02:28.171Z","1.4.73":"2022-02-25T03:02:27.621Z","1.4.74":"2022-02-28T19:02:28.235Z","1.4.75":"2022-03-01T07:02:29.656Z","1.4.76":"2022-03-05T03:02:27.616Z","1.4.77":"2022-03-08T03:02:29.665Z","1.4.78":"2022-03-09T03:02:28.168Z","1.4.79":"2022-03-09T19:02:28.568Z","1.4.80":"2022-03-10T03:02:29.700Z","1.4.81":"2022-03-10T19:02:27.819Z","1.4.82":"2022-03-11T19:02:29.958Z","1.4.83":"2022-03-14T19:02:27.776Z","1.4.84":"2022-03-15T03:02:30.087Z","1.4.85":"2022-03-15T19:02:30.160Z","1.4.86":"2022-03-16T19:02:30.103Z","1.4.87":"2022-03-18T03:02:27.923Z","1.4.88":"2022-03-18T19:02:29.499Z","1.4.89":"2022-03-21T19:02:28.965Z","1.4.90":"2022-03-23T07:02:30.477Z","1.4.91":"2022-03-23T19:02:35.058Z","1.4.92":"2022-03-24T03:02:29.471Z","1.4.93":"2022-03-25T03:02:25.671Z","1.4.94":"2022-03-25T19:02:29.088Z","1.4.95":"2022-03-26T19:02:29.676Z","1.4.96":"2022-03-27T14:02:27.922Z","1.4.97":"2022-03-29T02:02:29.160Z","1.4.98":"2022-03-29T10:02:28.014Z","1.4.99":"2022-03-29T14:02:32.122Z","1.4.100":"2022-03-29T22:02:33.571Z","1.4.101":"2022-03-30T10:02:30.753Z","1.4.102":"2022-03-30T22:02:30.504Z","1.4.103":"2022-03-31T02:02:27.927Z","1.4.104":"2022-04-06T02:02:29.947Z","1.4.105":"2022-04-07T02:02:32.240Z","1.4.106":"2022-04-07T10:02:29.685Z","1.4.107":"2022-04-12T02:02:32.602Z","1.4.108":"2022-04-14T22:02:31.030Z","1.4.109":"2022-04-15T10:02:29.471Z","1.4.110":"2022-04-15T14:02:28.322Z","1.4.111":"2022-04-16T02:02:28.972Z","1.4.112":"2022-04-18T22:02:30.316Z","1.4.113":"2022-04-19T02:02:27.520Z","1.4.114":"2022-04-20T02:02:29.665Z","1.4.115":"2022-04-20T22:02:31.620Z","1.4.116":"2022-04-21T02:02:28.252Z","1.4.117":"2022-04-21T10:02:26.728Z","1.4.118":"2022-04-22T02:02:29.818Z","1.4.119":"2022-04-25T14:02:31.129Z","1.4.120":"2022-04-25T22:02:32.997Z","1.4.121":"2022-04-26T02:02:28.302Z","1.4.122":"2022-04-26T14:02:32.695Z","1.4.123":"2022-04-27T02:02:33.931Z","1.4.124":"2022-04-27T22:02:34.196Z","1.4.125":"2022-04-28T22:02:33.363Z","1.4.126":"2022-04-29T02:02:46.074Z","1.4.127":"2022-04-29T10:02:36.588Z","1.4.128":"2022-04-29T22:02:30.564Z","1.4.129":"2022-04-30T02:02:31.468Z","1.4.130":"2022-05-02T22:02:31.938Z","1.4.131":"2022-05-03T02:02:35.445Z","1.4.132":"2022-05-03T22:02:35.102Z","1.4.133":"2022-05-04T22:02:39.257Z","1.4.134":"2022-05-05T02:02:38.966Z","1.4.135":"2022-05-05T22:02:52.923Z","1.4.136":"2022-05-06T02:02:35.996Z","1.4.137":"2022-05-07T10:02:33.754Z","1.4.138":"2022-05-25T02:02:35.173Z","1.4.139":"2022-05-26T02:02:32.209Z","1.4.140":"2022-05-26T22:02:32.841Z","1.4.141":"2022-05-27T22:02:30.320Z","1.4.142":"2022-05-30T22:02:33.824Z","1.4.143":"2022-05-31T22:02:31.035Z","1.4.144":"2022-06-02T02:02:30.940Z","1.4.145":"2022-06-03T10:02:28.814Z","1.4.146":"2022-06-03T22:02:29.612Z","1.4.147":"2022-06-06T22:02:30.742Z","1.4.148":"2022-06-07T22:02:29.263Z","1.4.149":"2022-06-08T22:02:31.200Z","1.4.150":"2022-06-09T02:02:31.858Z","1.4.151":"2022-06-09T22:02:33.713Z","1.4.152":"2022-06-10T22:02:33.584Z","1.4.153":"2022-06-13T22:02:39.879Z","1.4.154":"2022-06-14T02:02:33.119Z","1.4.155":"2022-06-14T22:02:33.803Z","1.4.156":"2022-06-15T10:02:31.263Z","1.4.157":"2022-06-15T22:02:34.342Z","1.4.158":"2022-06-16T02:02:32.525Z","1.4.159":"2022-06-16T22:02:35.471Z","1.4.160":"2022-06-17T02:02:31.824Z","1.4.161":"2022-06-17T22:02:31.871Z","1.4.162":"2022-06-20T22:02:32.055Z","1.4.163":"2022-06-21T02:02:33.793Z","1.4.164":"2022-06-21T10:02:30.608Z","1.4.165":"2022-06-22T02:02:43.599Z","1.4.166":"2022-06-22T22:02:32.022Z","1.4.167":"2022-06-23T02:02:30.515Z","1.4.168":"2022-06-23T22:02:30.540Z","1.4.169":"2022-06-24T10:02:31.638Z","1.4.170":"2022-06-24T22:02:32.312Z","1.4.171":"2022-06-27T22:02:30.054Z","1.4.172":"2022-06-28T02:02:31.140Z","1.4.173":"2022-06-29T10:02:31.359Z","1.4.174":"2022-06-29T22:02:30.555Z","1.4.175":"2022-06-30T22:02:29.993Z","1.4.176":"2022-07-01T02:02:31.349Z","1.4.177":"2022-07-01T22:02:30.755Z","1.4.178":"2022-07-04T22:02:28.905Z","1.4.179":"2022-07-05T10:02:28.918Z","1.4.180":"2022-07-05T22:02:39.148Z","1.4.181":"2022-07-06T22:02:28.616Z","1.4.182":"2022-07-07T02:02:29.775Z","1.4.183":"2022-07-07T22:02:29.725Z","1.4.184":"2022-07-08T02:02:28.867Z","1.4.185":"2022-07-08T22:02:29.039Z","1.4.186":"2022-07-11T22:02:28.743Z","1.4.187":"2022-07-12T22:02:28.180Z","1.4.188":"2022-07-13T14:02:28.385Z","1.4.189":"2022-07-13T22:02:30.667Z","1.4.190":"2022-07-14T22:02:29.352Z","1.4.191":"2022-07-15T02:02:29.770Z","1.4.192":"2022-07-16T10:02:28.697Z","1.4.193":"2022-07-18T22:02:29.029Z","1.4.194":"2022-07-19T02:02:29.620Z","1.4.195":"2022-07-19T22:02:29.197Z","1.4.196":"2022-07-21T02:02:29.067Z","1.4.197":"2022-07-21T22:02:30.395Z","1.4.198":"2022-07-22T02:02:31.612Z","1.4.199":"2022-07-22T22:02:31.028Z","1.4.200":"2022-07-25T22:02:30.673Z","1.4.201":"2022-07-26T14:02:33.402Z","1.4.202":"2022-07-26T22:02:30.269Z","1.4.203":"2022-07-27T22:02:30.981Z","1.4.204":"2022-07-28T02:02:29.356Z","1.4.205":"2022-07-28T22:02:31.281Z","1.4.206":"2022-07-29T02:02:33.175Z","1.4.207":"2022-08-01T22:02:31.190Z","1.4.208":"2022-08-02T02:02:31.974Z","1.4.209":"2022-08-02T22:02:32.359Z","1.4.210":"2022-08-03T02:02:30.492Z","1.4.211":"2022-08-04T02:02:41.431Z","1.4.212":"2022-08-08T22:02:31.998Z","1.4.213":"2022-08-09T22:02:33.704Z","1.4.214":"2022-08-10T22:02:33.821Z","1.4.215":"2022-08-11T02:02:33.341Z","1.4.216":"2022-08-11T22:02:30.755Z","1.4.217":"2022-08-12T02:02:30.898Z","1.4.218":"2022-08-12T22:02:30.762Z","1.4.219":"2022-08-14T02:02:32.901Z","1.4.220":"2022-08-15T22:02:32.342Z","1.4.221":"2022-08-16T02:02:30.933Z","1.4.222":"2022-08-16T22:02:31.348Z","1.4.223":"2022-08-17T22:02:30.659Z","1.4.224":"2022-08-18T02:02:32.096Z","1.4.225":"2022-08-19T02:02:31.291Z","1.4.226":"2022-08-23T02:02:32.275Z","1.4.227":"2022-08-23T10:02:31.685Z","1.4.228":"2022-08-23T22:02:30.944Z","1.4.229":"2022-08-24T22:02:32.263Z","1.4.230":"2022-08-25T02:02:30.154Z","1.4.231":"2022-08-26T10:02:30.973Z","1.4.232":"2022-08-26T14:02:30.206Z","1.4.233":"2022-08-27T02:02:30.788Z","1.4.234":"2022-08-29T22:02:31.363Z","1.4.235":"2022-08-30T10:02:29.524Z","1.4.236":"2022-08-30T22:02:32.777Z","1.4.237":"2022-08-31T02:02:31.550Z","1.4.238":"2022-08-31T22:02:33.065Z","1.4.239":"2022-09-01T02:02:31.076Z","1.4.240":"2022-09-01T22:02:31.258Z","1.4.241":"2022-09-02T22:02:31.332Z","1.4.242":"2022-09-05T22:02:32.475Z","1.4.243":"2022-09-07T10:02:30.562Z","1.4.244":"2022-09-08T02:02:30.762Z","1.4.245":"2022-09-08T22:02:32.542Z","1.4.246":"2022-09-09T02:02:34.193Z","1.4.247":"2022-09-09T22:02:31.979Z","1.4.248":"2022-09-12T22:02:32.328Z","1.4.249":"2022-09-13T22:02:30.967Z","1.4.250":"2022-09-14T22:02:28.909Z","1.4.251":"2022-09-15T02:02:31.482Z","1.4.252":"2022-09-15T22:02:33.212Z","1.4.253":"2022-09-16T02:02:31.426Z","1.4.254":"2022-09-16T22:02:31.859Z","1.4.255":"2022-09-19T22:02:31.695Z","1.4.256":"2022-09-20T22:02:32.119Z","1.4.257":"2022-09-22T02:02:31.439Z","1.4.258":"2022-09-22T22:02:43.069Z","1.4.259":"2022-09-23T22:02:35.513Z","1.4.260":"2022-09-24T02:02:34.267Z","1.4.261":"2022-09-24T10:02:32.338Z","1.4.262":"2022-09-26T02:02:36.620Z","1.4.263":"2022-09-26T22:02:35.817Z","1.4.264":"2022-09-27T02:02:36.239Z","1.4.265":"2022-09-27T22:02:39.422Z","1.4.266":"2022-09-28T10:02:31.139Z","1.4.267":"2022-09-28T22:02:33.100Z","1.4.268":"2022-09-29T02:02:32.773Z","1.4.269":"2022-09-29T22:02:35.660Z","1.4.270":"2022-09-30T22:02:32.951Z","1.4.271":"2022-10-03T22:02:40.363Z","1.4.272":"2022-10-05T02:02:31.069Z","1.4.273":"2022-10-05T22:02:29.638Z","1.4.274":"2022-10-06T02:02:29.649Z","1.4.275":"2022-10-06T22:02:28.333Z","1.4.276":"2022-10-07T22:02:30.337Z","1.4.277":"2022-10-11T10:02:29.703Z","1.4.278":"2022-10-11T22:02:38.493Z","1.4.279":"2022-10-12T02:02:26.915Z","1.4.280":"2022-10-12T22:02:31.927Z","1.4.281":"2022-10-13T02:02:29.702Z","1.4.282":"2022-10-13T22:02:28.738Z","1.4.283":"2022-10-14T22:02:30.276Z","1.4.284":"2022-10-17T22:02:29.466Z"},"homepage":"https://github.com/kilian/electron-to-chromium#readme"}