{"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"5.0.23"},"description":"hint for best practices related to the meta viewport","readme":"# Correct viewport (`meta-viewport`)\n\n`meta-viewport` warns against not having a single `viewport` meta\ntag in the `<head>` with the proper value.\n\n## Why is this important?\n\nThe viewport meta tag is an essential part of responsive web design,\nthat may also offer some [performance improvements][gpu rasterization].\n\n> Mobile browsers render pages in a virtual \"window\" (the viewport),\n> usually wider than the screen, so they don’t need to squeeze every\n> page layout into a tiny window (which would break many\n> non-mobile-optimized sites). Users can pan and zoom to see different\n> areas of the page.\n>\n> Mobile Safari introduced the \"viewport meta tag\" to let web\n> developers control the viewport’s size and scale. Many other mobile\n> browsers now support this tag.\n>\n> In recent years, screen resolutions have risen to the size that\n> individual pixels are hard to distinguish with the human eye.\n> For example, recent smartphones generally have a 5-inch screens with\n> resolutions upwards of 1920—1080 pixels (~400 dpi). Because of this,\n> many browsers can display their pages in a smaller physical size by\n> translating multiple hardware pixels for each CSS \"pixel\". Initially\n> this caused usability and readability problems on many touch-optimized\n> web sites.\n\n*[Using the viewport meta tag to control layout on mobile devices\n(MDN)][viewport meta tag on mdn]*\n\nThe viewport related topic is very complex so if you want to dig\ndeeper, read Peter-Paul Koch’s \"A tale of two viewports\" [part\none][ppk article 1] and [part two][ppk article 2], or watch his\ntalk ['The Mobile Viewports'][ppk talk].\n\n**NOTE:** If your website is not responsive, then this meta tag\nmight not be needed.\n\nIdeally the following meta `viewport` tag should be used:\n\n```html\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n```\n\nOr, if most of your users don’t use Safari for iOS < 9:\n\n```html\n<meta name=\"viewport\" content=\"width=device-width\">\n```\n\nNotes:\n\n* It is recommended to use:\n\n  * `width=device-width`\n\n    * `device-width` will make the page match the screen’s width in\n      device-independent pixels, allowing its content to reflow to\n      match different screen sizes.\n\n      Setting the `width` property to a specific size (e.g.: `width=320`)\n      is [not recommended][fixed width problem].\n\n    * Having `width=device-width` also constitutes a performance\n      improvement, as under most circumstances, it enables fast tapping,\n      removing the 300-350 ms tap delay on [Safari for iOS 10+][ios 10\n      interaction behaviors] and [other mobile browsers][tap delay].\n\n  * `initial-scale=1`\n\n    * This is mostly needed to [work around the orientation change bug\n      from Safari for iOS < 9][ios orientation change scaling].\n\n    * Using values different then `1` (or `1.0`) are\n      [problematic](https://www.quirksmode.org/mobile/metaviewport/#link15).\n\n* `user-scalable`, `maximum-scale`, and `minimum-scale` properties\n  should not be used.\n\n  These properties can block the user from zooming on a page.\n  With such a wide range of devices available with different\n  display dimensions, screen resolutions, pixel densities, etc.,\n  it is difficult to choose an appropriate text size in a design.\n  Most of the time using these properties enable users to pick a\n  text size that is unreadable while preventing them from zooming,\n  frustrating them, or making the web site/app inaccessible in\n  some cases.\n\n  Considering the issues described, these properties are now\n  ignored by some mobile browsers such as [Safari for iOS 10+][ios\n  10 interaction behaviors].\n\n## What does the hint check?\n\nThe hint checks if the `viewport` meta tag was specified a single\ntime in the `<head>`, and if:\n\n* the `width` property is provided and its value is `device-width`\n* the `initial-scale` property is provided (note: [depends on the\n  configurations](#can-the-hint-be-configured)) and its value is\n  `1` or `1.0`\n* `user-scalable`, `maximum-scale`, or `minimum-scale` are used\n* it includes unknown properties (e.g.: `x=y`) or invalid values\n  (`width=x`)\n\n### Examples that **trigger** the hint\n\nThe `viewport` meta tag is not specified in `<head>`:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        ...\n    </head>\n    <body>\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    </body>\n</html>\n```\n\nThe `viewport` meta tag contains an unknown property:\n\n```html\n<meta name=\"viewport\" content=\"unknown-property=1, width=device-width, initial-scale=1\">\n```\n\nThe `viewport` meta tag contains an invalid value:\n\n```html\n<meta name=\"viewport\" content=\"width=invalid-value, initial-scale=1\">\n```\n\nThe `viewport` meta tag contains a disallowed property (`user-scalable`):\n\n```html\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=no\">\n```\n\nThe `viewport` meta tag contains a fixed `width` value:\n\n```html\n<meta name=\"viewport\" content=\"width=320, initial-scale=1\">\n```\n\nThe `viewport` meta tag contains `initial-scale` with a value\ndifferent than `1` or `1.0`:\n\n```html\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=5\">\n```\n\nThere are multiple `viewport` meta tags:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n        ...\n        <meta name=\"viewport\" content=\"width=device-width\">\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\n### Examples that **pass** the hint\n\nIf versions of Safari for iOS < 9 are targeted:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover\">\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\nIf versions of Safari for iOS 9+ are targeted:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        <meta name=\"viewport\" content=\"width=device-width\">\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\n## Can the hint be configured?\n\nThis hint takes into consideration the [targeted\nbrowsers][browser configuration], and if no\nversions of Safari for iOS < 9 are included, it will not\nrequire `initial-scale=1`.\n\n## How to use this hint?\n\nThis package is installed automatically by webhint:\n\n```bash\nnpm install hint --save-dev\n```\n\nTo use it, activate it via the [`.hintrc`][hintrc] configuration file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"meta-viewport\": \"error\",\n        ...\n    },\n    \"parsers\": [...],\n    ...\n}\n```\n\n**Note**: The recommended way of running webhint is as a `devDependency` of\nyour project.\n\n## Further Reading\n\n* [Peter-Paul Koch - A Tale of Two Viewports - Part 1][ppk article 1]\n* [Peter-Paul Koch - A Tale of Two Viewports - Part 2][ppk article 2]\n* [Peter-Paul Koch’s meta viewport tests][ppk tests]\n* [New Interaction Behaviors in Safari for iOS 10][ios 10 interaction behaviors]\n* [Viewport meta tag specification][spec]\n* [300ms tap delay, gone away][tap delay]\n* [Scaling in Safari for iOS][ios orientation change scaling]\n\n<!-- Link labels: -->\n\n[fixed width problem]: http://starkravingfinkle.org/blog/2010/01/perils-of-the-viewport-meta-tag/\n[gpu rasterization]: https://www.chromium.org/developers/design-documents/chromium-graphics/how-to-get-gpu-rasterization\n[ios 10 interaction behaviors]: https://webkit.org/blog/7367/new-interaction-behaviors-in-ios-10/\n[ios orientation change scaling]: https://www.quirksmode.org/blog/archives/2013/10/more_about_scal.html\n[mdn viewport meta tag]: https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag\n[ppk article 1]: https://www.quirksmode.org/mobile/viewports.html\n[ppk article 2]: https://www.quirksmode.org/mobile/viewports2.html\n[ppk initial-scale]: https://www.quirksmode.org/mobile/metaviewport/#link15\n[ppk talk]: https://www.youtube.com/watch?v=8J6EdpXdzqc\n[ppk tests]: https://www.quirksmode.org/mobile/metaviewport/\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[spec]: https://drafts.csswg.org/css-device-adapt/#viewport-meta\n[tap delay]: https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away\n[viewport meta tag on mdn]: https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag\n[browser configuration]: https://webhint.io/docs/user-guide/configuring-webhint/browser-context/\n","repository":{"directory":"packages/hint-meta-viewport","type":"git","url":"git+https://github.com/webhintio/hint.git"},"bugs":{"url":"https://github.com/webhintio/hint/issues"},"license":"Apache-2.0","versions":{"1.0.0-beta.0":{"name":"@hint/hint-meta-viewport","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","meta-viewport","meta-viewport-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@1.0.0-beta.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3c65f57a9103ad971869f860fac31cf90571116c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-CkWu6aIQ4L9FyeQqo1u5DWmUOTgOVUkAqMhjflW6OKb5hzdOfdVcDlOGdQgH2uX82xGSmGFPzB0Xm1BOMYv61A==","signatures":[{"sig":"MEUCIQDJ+Ot2N/B1Kf1XvEY8BiK5lkRpkSpcBDkVEoE75DgvgQIgYIdUg+lBUUO1ojwZE/pSwiP1yN47xp1WUTgaW7fMOpE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTlNyCRA9TVsSAnZWagAA4L0P/iBNl1QW77mlQO0kDRgt\nKVCZSnqqoP9vqy9HNkwwGoGxqAOQky5x1dHmC9lFP1fvJ9hMC5EKXYIkEM9J\nq9Z8Qj543ED91ezB63NTX2VNAeHMmOX05A0BvZY1CLjTnG67cNB38+6Ozdtu\ns0foLJcaqjOqB9MRgPug1tSeI0tpGo72Aa2q6e3tYOLiG30OGzSmcThLlsBw\n3LvNMKVx10aklrGTvZLQNFTyzttuZZk1CZ5EFEnARZQ6tb0Fodr/Z43laHix\nuAyHQedCLhBI7EZkp/9kDMgSg5x3zlQHNPLv5FTss90JBlcr4mrv5qY35orf\nNSw8vxlKlyi2b1WkrgXKocNMI4Y9SXVkLyPOeaSBQBiX9fZ1n8dF5dgJKFs4\nZv8l3eaas+Aj2kw0ZSn0elKl0Pubmlz52v3DMJU5KKnO3twr4nIK2Am6aAYx\nFOywdJ2PzAWZgyHwToOzmn/bBeqGP8SfpmKPPgEq6hcbYp4rKYILXEUmloWD\nqOGJJuPJaQDy62d4lRipXRjcQpKs/mZveQLSFGa/5+N5BaWjWQZpDWwm6sqU\nbyZgr4fP7mDHLPNBjm530MERQMMNvapnXZaIUEei+OYhKp8f0kKfrN42Zs2R\nz1I5k9rPSURQDAABQlv6kRFSir15c4oKCfNzn9EL4u8NIBAcFwZ21xnPiFhU\nbAEc\r\n=A4NO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.2.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.4.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0-beta.0","eslint":"^5.1.0","rimraf":"^2.6.2","typescript":"^2.9.2","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.11.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^16.0.1","@hint/utils-tests-helpers":"^1.0.0-beta.1"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_1.0.0-beta.0_1531859826136_0.006281970227704825","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-meta-viewport","version":"1.0.0","keywords":["webhint","webhint-hint","meta-viewport","meta-viewport-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@1.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8cffa10a22322a3e752f8f28423bb7e8b08517fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-1.0.0.tgz","fileCount":7,"integrity":"sha512-Q6Fw1J1ofos1Q9TzSP9zTh75cZaEXwM8Bzzd1NGuKcgoLyc+x+lrQ4qNGuVlTRNlq2sDsmThpaJyH/FLyNTe4g==","signatures":[{"sig":"MEYCIQDEoH60bXfrTUk0FrBuDTaxHeueeFwAnOI5LjA3ho5RlgIhAP3f33x16o4yH+2STrVlEMA6OX2pojx++3jNVY8oVQyB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27963,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaM3aCRA9TVsSAnZWagAAdP4P/3JDDLiB1w6ik4dxjiTx\nsk24R6Wcwx0tV9qWh8V8FDvDS4Ube5f2ZXJfNoe7TjacIQEJAvBW1BpyL5Wj\nrCD+EEM2mHdLj0QW179EzhnXnP17hvf5oDm53wMpmYHqlhAg8qAuJ1AG79nX\n4xlQpAe5RjUWuIorwHCHXAGxPO8wXnta3CQwg1FxAL2b8dmr3YUSytXxPN0j\n56hCtwNTOnEpT8jptJlbU8LEtwmRj448YdfQ7HmuTBgAIlY43+pbKNFLRrG2\nPqMexqBfeDnYjBYtkt5lxuZ8o0VGgC2JaUBI1ZMo6fvi+gHDu81LWpONvekk\nNmuDx57h81N0ztQ/Fng6JM8gZ4xCoPktl77mmfQx71qvvjNMzK4j48fXdMoA\nElGUhip/wTn5xcnQKEQy8rbEyqjM/je1Mx3ZMs8ZCnuD09ssJUw6TK5oqu1U\nLr2ISvKYB4HYpNVRxi0P8986JpQSE1YXuOb3JxITR4nl1zU381UpqcIpsMFk\neUReofyPPhCI/0cAzIbgjYi1pG3t9htAuYBCLARP5Q9Na4ufhfi600ah+oZ4\nb8oGViotq9xeA94p8DIGs/YWJ/5gcdv21ipvVPYUJuPT08UrdvThPqlM19vK\nenwAcewH76BlKtoEA9UXOn1EsN6DiO4NewlKBotXy13xupx/dXPrksu4gCw5\nvlo9\r\n=y6X2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.4.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_1.0.0_1533595097470_0.6249002297823794","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-meta-viewport","version":"1.0.1","keywords":["webhint","webhint-hint","meta-viewport","meta-viewport-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@1.0.1","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"77c0134a7fc5b7dedc170397e1bb490da4c5d361","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-1.0.1.tgz","fileCount":7,"integrity":"sha512-7cFkgzevrn6h/Lz2cMxR+4hqDhUStnaEaz7MDlGrKOvdkQ7x14/55jxO1g4EfPSRIggFjigPJrUU+53xDeRNfQ==","signatures":[{"sig":"MEUCIQCDIqHOJpTxguAdFqI495UB8/RMwsijU4h/iC+Kic/pIAIgG8eat6f2T8FgImmdi4r3QpZhBgbKVSlYezsIBLGpIE8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbhhCCRA9TVsSAnZWagAA3PAP/1PVMrAHRzADFLPXegxB\nrFKob8wteo4Yd2FewUtweUlI9VH6d+rXZ524lMO2h4iK+RG8EACGxVcRXfUB\nhysasQPD8sEytsecnu1JKVOTJMA8a/J/oBHLxpPLqBd4jfwk/n8gCpgMp4mi\nHXa8ntut6iJ4Fnjtlm9LF72GJJEEuhRHgjsc7ZPUTMOQFJrDIpxcG9ieDV7I\n50KDocJEUUZHv36ZW1h6rM/75DatkdWsUFkKVQZA1x2gfHjsUiYEuOSFrhna\ngv+JKeml75yNknyVrE4cmMWt/bwB3exyEwQtNUlIXQNzA/qRSgK8D1vYuCwa\njnJc5EfOW+ERfQzR9BR//WCbSgUJlHbP/BoPdutgpHyr7s8V1NJKg9XzIVga\nny59hompqAgomYfwe2lT6Dixsivtb5u54hX9opkxAxkBCQqx+Hy+35b5wo8S\nXhvwFJpmJw/OsBAzAE2bJwzwUqBpDFBghC6w629VjG+MdllMudfd1UGcznRO\neZk2n3gUTEzP/I35GJ+bZPET0idwKPMlBr0eJnmCpf7VY1ARDF3hlpFdbEbj\nXVI23NypbRS+PAudEwjtg0mNucG8fSSEkDR6VuA4/BBR0qADo0J+p336E3Ak\n5RVCTmlL9KTLutmXIu/6PmBW98b3yzzYt+swL8SgKHA0QtOBvErlLycB9hRj\nUwIn\r\n=RkdX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.4.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.1.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_1.0.1_1533941826294_0.2087121245040795","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-meta-viewport","version":"1.0.2","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@1.0.2","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ddc9be5f5ecd2a9470d490e7c5b61acf6db9d7bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-1.0.2.tgz","fileCount":6,"integrity":"sha512-SUVAhHxvBC6apR4IOtYfMd6euBKtT0mSFcrZuYBF3f5wPSB/y969v1C0lXpTF1SSyHlzmTbj9J3g2RS0tg/tSQ==","signatures":[{"sig":"MEQCIFVYYv2w/WMQeUrdfJbAAfJhMYIVsPa2g4Siu4QxtFt/AiBxKK2QA6t2dosEgptAeqcPr1YcvyJYspxYJdoKs3gPIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbka61CRA9TVsSAnZWagAAVXwP/je8wSvfG3AANU0MQl2H\niSajCiPYF0q7FLSdSO8WPgj1e597s3CTAUBUxlFiOz0g5pMb6ZCTenKhZINa\nVlBYhERQ39Dx8+K4Ywc6wvZ0enSioRmAwmL/eaiU+4VJsSWoz5cJsdzggUEq\n1ksbPp+z6exZJlM1qlewtIlXPkAyiSfQ9vb0fDxROnXKfOY/ZdpwAwCe5QZL\nLNrCqY5uGV0rFkv3pHR2Jfj6/9y3/DboFXNUbLMvHuxEGXhPkRnsu3dVk1WU\npC8cuTzvwAb3RAf+fAM0C4a+c2rwa0kxvq3tcx0Wq6WduGpXtFmntaKL8M2A\nlYxXPsbsLgspg8fejMymlQAfDUECzXVxYakWVaJIADmkQWjMDcrVnwT02Hsh\nYrry84ZvO/zzQFUEmgTbeqecyoFMen09K34etbplErunTOvGdD06Y/gBQhZf\nYpY9N5E8+sKxk/y+g9Rigw2g9ilorhbVdoaxOuHJ6cFM414Q78/eNjeNq+m+\nQmr94L2d1i3RKEpvhf1fAsY8l2nZu+20FQXUEhc0M4RdpWe/hPAaSJ3+YRn0\njW6sJq6zzh1Tohz1C3QAKsfm1cMZRAOZIqvLPnJ5iYSO9OPz91yz7SO+Sjrf\n+d05p5vYvilCFvOFeJMvYcGWmGJdVcE5YmKMHUL3lr7Ra1nyd/0qTHlGqDoj\nd3ob\r\n=s86f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.4.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.0.1","hint":"^3.3.2","eslint":"^5.5.0","rimraf":"^2.6.2","typescript":"^3.0.3","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.3.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_1.0.2_1536274100307_0.5050137652070539","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-meta-viewport","version":"1.0.3","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@1.0.3","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"7a3e3d72898aaecc3b8a44e0fe1a5b36d52cfe34","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-1.0.3.tgz","fileCount":6,"integrity":"sha512-pVl/BCgjsFR+U0wVirS5SxyxxC8JyuFNIXHftmS7Yu7UpvA1H6ZpxmPlJCOKA9LHot7tHwI/KMzJ1CSL91sSpA==","signatures":[{"sig":"MEYCIQD8WcbX/pFpc9RmNL2Vq7eym8cXVQIMfnkmvYtn+ZtJtwIhAKHKV/hVB03N5S+7zN7M0kJckDS+XEorKeRv1bGf5uHB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2j7gCRA9TVsSAnZWagAAFQoP/29Jbjf+CR50peJCcEJP\nItrVusfasQZrbNyMoMIDVkk5zHVq9/QFBCwsD+bm86D6MYlowzMFUK6rHJX0\ng9jIhCywgqnDqIogdCKhcIDOo5KHauBs0JTnOinGcf1gaDlreqAkkEQAhm7f\ny539SJJ++kNq1Q32O3+96FwExcNnC74SSC+PoGBsSLhijSlacP0h1Mx/3h1N\nKn7XeHt8cr/rFIM2Jykf/A3bIomiIDJ3hlgU6QQ45vng0VcxvH7Seg/SAiCv\nD1ACkdRC6tNCqHxSanRcqg7A5q0AqD0PHc9ANJ5DuKPMWpT+QymLvD3lrmNu\n/9xqnCdUIPN26upP7ws+WFigwsYzAGxlx+9dAeFChvQhv2utB77leWfmtcbt\nreNnEa7LQH86VFaY8iyRkAg7/HxyklkcdX7GeO0SMDB4kxBquMV8kJ1yhayC\nfzzw7lc7Ld1RrBJPTOlrZAqaLBQzmY8jw/MaTYFceZ+n+hUW0w5brlU2+7xr\n9t6yxUKv++l9l+PfU8HKufalKyzrL4KoGnJQYo2gqbQ83/5XZcnprFGV9QRL\nfX4YNMHekj8kJIbBFemSOJ8wu+iwoIObC5jberhPnDu1cv27L8A14mzBWj1f\nD3fZsmWP8+bbvxlppkxlUkmtvPk/wHpyGVdqF0nAZFxIQnrkdRaeps90tOm2\nCWac\r\n=fHsh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.12.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^3.4.14","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"20.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.4.14"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_1.0.3_1541029600049_0.9357560490063934","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-meta-viewport","version":"2.0.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@2.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"797dc3b331999d5331f8959c249a72c9c09c741f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-2.0.0.tgz","fileCount":6,"integrity":"sha512-f3WU5OOei1uSU4EEPGKfbIfKv7osfzqKcvQYvj/rwab8SwqSRNnwSdXExSk44ZFfHDFRGMMAfocEvkmZtbBw5Q==","signatures":[{"sig":"MEUCIQDS5LdEloUyZI54pXI8RJsdOwiDKJZdHMU+v4N98clAhgIgfyUjw68/210WqxFxtPBknHtuEHfSidZAh8+TDqlkvKU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4Nx3CRA9TVsSAnZWagAAKfsQAKLmyGbzC9YnaWCd7vDZ\nAIaEmakCEsQnW1L7IynNPPWKnrAhHzT9hImExHqONExb5Ck03t3s/DsfZ6pt\n8FETkBrqg506R5RAjj93O9MPLZLLtVuzDUAkkYTc4hqfG7vVsGXyYsLksrV7\nHXfXFi1LklNBaXtl83mdEoCjSN5ksC5ChwbgQN3gnm+2ynpo7UY9GpcQ3bTT\nsiWcxsjmE7U41vP5LWNOW7ppoToTBq3ZoGtt1pUIcMiViYNeHvIyviK9kHLe\n82FeHlNoJNNCpxQgAgfr2HD85YfOoJG0EypkWiQjB3P3U/xTYupG5pgr3BJ5\nCCUhAzsa7BhzAYmj+n143T2hRyALacD2UJjQvclEp4nTirR3DQHwMKK7TQVq\nA6goxnaNsjC8CbpjOF7ULWFNvGt3UfjdGp4qVss7z6F+NrV3iCa2oJ5ecoM3\n03dkjYm7l8PkfESrgvK9+OeqDQPCtHcPXJh4XpK1fF8L+1YSUsSUjvKuv1Ln\nCii9cZDHjHGTlDnevYONdN5iAxUvyBV+b4XXyUjdZ3i+hYkLizbcvt8weQub\nNeJKpU7qkXCL61akNI0r3xqOYU8bO8EBuRmfZh0x0LAQf6mM9sSaMCgfF7li\nMbcZrh3YxUjUQImSWk84rwTWrdZF8Cf/IGTHeNuMCsqjZlWcjiLJM+8dRg8p\n/JKg\r\n=t86K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"11.1.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.0.0","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.12.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.0"},"peerDependencies":{"hint":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_2.0.0_1541463158352_0.6743188437283889","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-meta-viewport","version":"2.1.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@2.1.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a4939d5d4f0573b83f87f7b5ef70ae9a1814acdb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-2.1.0.tgz","fileCount":8,"integrity":"sha512-xErr3hdfWkdFjWQTWTPVWN07GvZmv9t8Jrq2MZIJt3E5DWuYd4A/6hjsptqk4MUBo8f+sK6HYxUA6N4/iXDpUA==","signatures":[{"sig":"MEUCIQD3vhGAZ5o7ipUtvjVR18E/Q2rNs6yfbte1jz3PbtXGvgIgaHsF9eQHD2hr5Ab2DClU2RLLNMt0D4nee97okgbz3H8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/kFxCRA9TVsSAnZWagAAkCQP/R9BkV3gIKzv6sXxFqnf\nrteWwxmpWFN9h/NVLUgIPTFfqKMsQseErteq5ebsH/QoLXORcBWsPkWepKu4\n6XJN9+GMFDacmK6xKY3EsIfqujwkerFo64BHZFgO+2CwQy6k9aZyZ9b+FJxq\nwPq9yJk56OjmmBHR/gTCdmctc47fcxLeDEYlZEc2ZRHwP8nMv30dYti+JBj7\n3JPVrHAmSarOObw6An9rzkm+it9hvoXoCjrMUezOUb5VqbCkbSCo0GAk/l6m\n8+rexKdOGYglsi7+MGF0GncX7XJ7LsrBqAqbGqkGEoabQPxWt8uMHhfMMtFQ\nAeIO7oqvHWIPOA45pLmc2+R4d3RSJI6Oz/arIMLBgn31zEq1hraUjKjR+knb\n36eC10zDs3t0lwpIIUgpWzqdiMGeWJ7Bdb5OQ3NaL9+mafroBIjdJE2c5rBk\ncWqNu7j5NK6SNPGZTMjCwsb2MOYRRVGq1KwMymkbmiRD+15BUVitmZBRrbbq\ni5hiptBh8YmAi6rt1I8Izo4ehtR6wJdcKiG6f9jHofC0Y25VJL1AxfcuItVx\n5mzjchWWbZhAq+VnY5ubieUD1oWN+/hMDHacnrOguXe0feCc2FEiBK7DAcQu\nZlwovZXxAAal6LRYjg4fOckdUXteL//o63cfNEYpNpSAusF0FNOEqaGr8gX4\nqRZV\r\n=7ERu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"11.2.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.0","eslint":"^5.9.0","rimraf":"^2.6.2","typescript":"^3.1.6","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.2"},"peerDependencies":{"hint":"^4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_2.1.0_1543389552399_0.48438789649152647","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-meta-viewport","version":"2.1.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@2.1.1","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"77aec011d919053ec14b34f0bbe161bb209de79b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-2.1.1.tgz","fileCount":8,"integrity":"sha512-rqJOY/OlVQGtPFvq5ZsbVXZwHMJXV+Z0HyfcJcMw/uBd+vBXX3RsD7eQJT2AdDCxsJlk8bWZic1Du5Z6UPrQWw==","signatures":[{"sig":"MEUCIQCzT4MCDAknQZPo9SHGAIw12plPflGhXXdZwni7LJmuNAIgWMa8AD8SLPkQHT8gIMgHn+Pi3pb1V+CQW97+usZaUUc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLShuCRA9TVsSAnZWagAAjicQAInIFemb6s45wkxsOzzH\nnSB6FKumINcPMGQE1jsXmBz6yP5M5h1KGl+c2Nv/jtgId99/012PxbBZWdrE\nZiNrJeM4hEhhthY7FVjTIqJ4/HXcDm3SN3UHu2aiOOVZHDXl8vkjt9l74QgA\nZXXerxeSgQqJGGpVSUvRivu/GfY132VuTV2i1Rr6jVfzDD6fN1cC4SnImbIW\n/i65E/ZTZ2HDFdDBV4PXAcvLnQgzRsA587AzQXUxEE1s6z2a/aBU8olfBNRg\nvzcq56K0KuNzir7Rxg1+3AwBeYGJRZx2eTOBN9l1wNfrYlENqrI7pD/TZut7\nxBzZpz3DN9xRwseTA2zgcgZaVZm+jQJ6VVsRK8YQDqvPTAMnCZV3YNdTrcy5\nUtI1pRMIXUrchXpi+i1HAIFEsIRJ35CWKM/PCK+P6hWD1olBV7YYZ/XiJpJ7\nsEm8Yyix+v75Y3eRCgpV0KcUg1PP+oQPJARtKMSJG2eLwwQzpIIsHm2gXPIJ\nKQFYN4xKlFy1VlsYxM78712lPIXAXkF9WlgIgWq/aTEM8z5dUrp++cprHnZj\ntxEaZM0KuN0aSsB6Uyq8paglhIibgQIbQId5CF4le6NypCEw4IJ8Izr4NoRg\nvGDGRHqe0u+OFSNhTW57BI6T6Zf0G33KVqDmy+gfcw7XYZ0LHNtbbINSZ1Ys\nImOb\r\n=8Uap\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"11.3.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.2","eslint":"^5.11.1","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_2.1.1_1546463341716_0.8916096404110978","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-meta-viewport","version":"3.0.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@3.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c473e2397c3ad411aa8cedb367176a01f938b93b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-3.0.0.tgz","fileCount":8,"integrity":"sha512-SN0zzA/Fd7HzC+lbFCEKYSU+q7IRnPZ95mETSW+w0jPE3RvWyZdh2Q3DyuHD5PgnOD0n3RJZO/4leRYT5R+4Fw==","signatures":[{"sig":"MEQCIDGy4+TZF7WGm+m7rB1DPuq2SgTeHdH+7TB33V1s5tayAiBdQtiW3zSFOCxRoCQ3CnXDBpd474unqY6s6gcJIh5yWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPlpuCRA9TVsSAnZWagAA16AP/jYzN8YUIHCUbvW4y6Kh\nGds1cQ18SBxJ53UvjRfNoD0iqJXG5d4k5Wz0wwLTPT/L9eJXQff0V3jTx9+z\nYcnPc2RhuCrsDeMOnnj06TpOzhT5VVc5tCNob/KmcvFbeIFjnr/iIHumBTWB\nsa/Up8D6+LGD5gzt+YZ0spidxSJX9mUyPhnn7csWOH6yx1dC14FXhxErcFTE\nv4MTdoLgwvNciEmIgNlX3C83/XVjpCnxjCbbRoqF6IJGZyz6OXmk7V1ajB7K\nFeSxGXfnzTgQBu3CTBZijb4bhq4JEx7EqJU9mKADbQswHl7obvcAq09TQ4X+\ngT7xFtDgphrbwn83TjeDOV2470JkqOEgGoq+W78RqJhMEtaDHUMdZzK/Sec4\niE0h6drB5F2LvW0vVorUa7qJoOs3FQtWVD55PJqT8cWfyB7L7kgzOMVdUVRK\ngCQB1wDwTbsJmbvds7H8hegrJAX9kOvipghUWNvX8YAQE+kRB8Z7b8w+VhW+\n9sobXItQhGxXdsZ9Ru2V+gN5vO3rsSYobGt9Z927zxOi86U6Edr3czhpYsrH\nOM8rO7yS+EuesneogIgJ9CG+hssTWkWUW4DAuJfIOyDvAGDWFh5ajBoQk3hm\nDxPQqGFYQPXk8eb9/4l06WTSrYiXcp+bbVvdv34sinRwwvjNOeBeXhwC6DI+\nc5pT\r\n=BARW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"11.2.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.3.0","eslint":"^5.12.0","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_3.0.0_1547590253999_0.7818754110047756","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-meta-viewport","version":"3.0.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@3.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f0e1815eb5e2749610ca70a0e1c0f42321336b80","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-3.0.1.tgz","fileCount":10,"integrity":"sha512-aIu65QO7wMfwst3F7dtMjeCNO2uI7ZspWk9L+3CGqAEmrrY0+6h8Cii0U648Wlj6J4Z1phOPWjfJ7LJv2Y2rrw==","signatures":[{"sig":"MEUCIH33aVjR4Rdf850Zj67G4K+/uhlbro5q81t19jmzGcjdAiEAjtuEVSXe1iVusiwedalorDTn0s9kVhAGsL7PAcsv5Hw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccDHeCRA9TVsSAnZWagAAiM0P/2ehSfsz3QWOzuEvLorq\nZgu8j9i0Rrq6PED41IKns8ErzK6nUcxbNk6tNsmr27Xk2VcKhhKJjNI8THIg\nji0L+OZc1J2dH1FI0w+zXBfL4S63HV/Wts1Rsbm5izPo0zma3mb04a8IJ7Z2\n6/ZPwLAecxvn0/N2BDQDUw5J2r1F593UzpiCkjf/Q+kA6vybxiGj/hy/MUNr\n/WOGNVJkbNXGp12GJ7zmBRiLQoOKfwA5TchwZ2O2Ytf9vcMIpop/sllvoi1Y\nRMct0RusRMAUy1FxBJSQY77bBdGZ6oRQ4wWc10E2+/UB2arjxm+1ltHtsXbq\nQUVmd2OQJkfmKcYXS1aWOfmQkuabCdDvqxDrpuf0s04eX146jQrxFCyXXrfm\nafhw1Si13GP1rDBJJqMm7fOt56aKJRZXtflTz++RpvlGjRyZMtNhRBLLdg+4\nW/bbmoPhRJQxUKRpEGxPyNFI5l6Vgpc7A597OiqWIRtV9XqL3raA4DuAvApT\n927jdfIJCj0shpTpkQzqh17AM5BAi7p9eGdv4ivHLvGHAtTLuvkY2s/A+Hm7\nL3lLPlkQzwF4W7HuubqnGFufDL0rAmHXv2LMYk8iPU7iKSXjojvl+oSApR/s\ntsan4qzQwGI//hQE+nXv6xsEKy1j/ODM1u6aia+ENPG/G5B1q5EIKbylblXY\nHDHt\r\n=KWas\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"11.9.0","dependencies":{"metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.2.1","cpx":"^1.5.0","nyc":"^13.3.0","hint":"^4.4.1","eslint":"^5.14.1","rimraf":"^2.6.3","typescript":"^3.3.3333","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.16.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^3.0.0","@typescript-eslint/parser":"1.4.0","@typescript-eslint/eslint-plugin":"^1.4.0"},"peerDependencies":{"hint":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_3.0.1_1550856670011_0.3935301790403041","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-meta-viewport","version":"4.0.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ea87b5dca33addbddc808654fd06d11a01403575","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.0.0.tgz","fileCount":10,"integrity":"sha512-J5q3VPHX6D1+nBityIWhLCZfKTPy8jo131GZ026IBBSqP5LL8ppJRhXdTHCibZXWXmBqE7ks3PWv6GLFNZBj1g==","signatures":[{"sig":"MEUCIQCoHruzZ/NsN3YC2rP0ad7RehAJHN1kVKU7RTy8TR+TEAIgYWMl6GeUibQSRUHt4wEykIN1GdXAb2T5v1p7Bh643Wg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc239eCRA9TVsSAnZWagAAuwQP/AoqTT8MCMiSmct8sgox\nNlhR/1L6oOoojdu9jpGqX2vU/0/yRhjHAuXVt9Ozxgn8IrBgIy6yTX86S27I\n+aq45Qj8XjzFvcG7NaEgtP+rHWyuAIPcciFpq7w2wURr4Ea7fwJQhh9LlYdi\nXVo9poLG7wWeIubvvvJDjHO0OJWBG83XHZGDkvfz9qsROchDWZ6J4VPGVMDR\nrYf9jmII4Y28pPzaR71VvIWNNYU1nkbPuvilaXdiqi5GRTJlgnixKdQ9hVZ0\ns02HnPzWifgXfBMCBsfSgAYNyLePcVKgiJStKA8qoEsK7aRCUdvvrjGTTDsc\ncCfgJbgthPZ+xDfQF54neC/W3kXnfgEJf/VnfJ5FkEJnlptWOhCqggEKbwOj\nvHo2ht1M3N1futFbu8y730V9XyQniEhpRokU5/TqPz+ZdCUwc59MNX+uObIA\n1pBPBLfychDnqn5SQgnpKIl0m5GECKIFYZYuHbyIsvY+VkiVD8/9Rs0hoZp0\naXIy7lEM08RhaRwFVILQl+tApn9j1hYA7dRc7jnN3AEM1ofPtMkm1Di7ZGUv\nx3MSnNtlt/phpR2sQWU3JNeqRy3jSh82sqxd++JiLftJQHbsSlQtHUm9VkF2\ndbjHpGWrSf/d+xnBXUXDOc4mEyoxX9QgZMIczxyQ2pqgefXIypxZiDb3afqZ\niTIV\r\n=1ffL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^1.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^4.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.7.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.0.0_1557888862037_0.521640070533391","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-meta-viewport","version":"4.0.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"968ba9a90e435000a5eea17492aa7b12e004a57c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.0.1.tgz","fileCount":10,"integrity":"sha512-ORxoPVOplISGCwWlovHCiPtJJvNqJMt11FjOeMUFQwyAzt69HoT6wYR72vD7H2iApte6PaM1wdIycWTkPsZuoA==","signatures":[{"sig":"MEQCICa6//mY5tswKvuEEcfWOBzP1Kr3Gu/Ieea4lITKGf9aAiAWxG97fJd9r9RHEPBSTfW2F8l/WGD2HGK7W4dXHegCAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25SOCRA9TVsSAnZWagAApMsQAJIe/emV3yexZebERNYZ\n5AfrCVH0mnuoLC2YGAVWhLx/fKPwa/NzyURT+dAHzKbNm0F7exXyg36waHpx\n5/YZKYQt86eB5OdCqJhkwpF1B/h/5go80tYdTJ/5KL2cD+JR3yZom6Ilpv4X\nQlCFAQ+tIcw7sMOviChbVmsb7aYkWCbPuJdBYoKuzaBvVMwJSOc12WAaz/fw\nezXL2Rn60qu+kWOvYCDNaO8Y630BL7mzu2Iyz5wwuGDah1KypilbT+ol92yR\nOkAd+Z8yn/mB5aLFumihGBWTO5li8zZcv+H3Q3RmM422YhVRdWr6MbQyUtFX\n/Z+DV49W9YpoRn0TcJQPgWRgsV/NHQd+Fm/16Sq0dfo9MOqbb3jfo99djHdt\nQAR7c+aUBkppHdGFVSPyBieJUO9sPX7+f8zlXLLYPfgbtUZJFl3jLQ0NgS6G\n5djar4SODKOecSE/xSy+WfvOlwCea/Y1WKgEOKUVYu/a7rxc0/dgX3V5VlhU\n6l/3w4qBe6sLFrVJxZGXKxsKHZz9G1OuqSxgXJ65ot6y3E0BN/hmQA/TuNLk\ndGOH70chcA+H7GlKQeDEMPgE8TGEnkg/M8Dn11Ik7slys0YAeffMtOCHGAL0\njFc2nFRRXVdvfwUw81fzF8ZXwkZ8CvTYyOJrayxBT8s9w8DjyBdoe865v7Ae\nIUgp\r\n=g75h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^2.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^4.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.7.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.0.1_1557894286192_0.19964311924878664","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-meta-viewport","version":"4.0.2","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"515fed663988d8a14aca7aaeb35e88d17895d539","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.0.2.tgz","fileCount":10,"integrity":"sha512-fs2bbivIReolSB5NYX4myE8X1+GPz8IU9iedyY6dld0Kq0nvejhRq55COvhVK6WwkCLI1n1HiXoz+RYkdBd1bg==","signatures":[{"sig":"MEYCIQDfg3yUksbYLn4CCRCPDz84hq4KiCeRBdjhXzLwfMFh1wIhAJMlpFimk7NIu5JnzKiNAGQA1rE820dc6fusiYpdzajH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sEfCRA9TVsSAnZWagAA/YoP/0F9K1xYOj/ieBjp8MkH\n/rer6/+EMqk1UpAt3YARwhWpKySj8/nJ593vg+o0W5PyO01GM57dm3tjCLS0\nYywaFGmeIXnisn9lue8/ksQwav+GGaVTv92dHpf85bwh5GBFO3TH9UcasN69\nUQSPucHwVTGx5CvMvSC10X+Yw0tMBOQytEEeYSQEWOQM+e5L5H4fAGOHPiGv\n18BttZRQaEhZxhS8123BvyD+KaEdWP7FL9zrKICVUN9JWpRogJY1WZ1l8VAi\naiLizqpU0eZIxKtE+RWe7q+UqE3l0bMYUsblWqNoFuTfitiqH9+7LINcYdsF\nmuNA/uwdd310aePrUvvQ9gYh8sso/Fr3fFwcyg5r3He2gEsD1Cvk2t6iMFCh\nE1xTlZ9BwipiAni/VqIh5aoddXthdQo6zk4Eor6S4xUOPWE3rmjFtKuJnF3P\ngRYj9dwFgFZBqI9EVsTH8tZx7Th9DJqwkKsDDGsR90YARFZIJxwxsvk4Mawq\n+5PIxkOrhA0ZF/mab77GXq9CIbN+KmchgPTjnLaBJeut8lowEQ2tR2y4Lxbl\nCVrAeA2hWfYEDrtXBy2lEEyqXF1/YUYiKJDm/3RL5jxs71gn3z09L7qpXsgt\n4pBitL0U7L1p++pRnbwh9mOrkeFcdrzViLObUg9oWMfj9zVeuFhvFHUxe3uV\n023G\r\n=HIzl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.15.1","dependencies":{"@hint/utils":"^2.1.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.9.0"},"peerDependencies":{"hint":"^5.0.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.0.2_1558626590698_0.19301311333221416","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@hint/hint-meta-viewport","version":"4.1.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8d1e06409a28cca4d8fcac24000ceae7ad87f60c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.0.tgz","fileCount":14,"integrity":"sha512-bpry8zThUW/qMnxNYEVHJEtAozkksmlseQ4t8m/uVTffYRQ+K/Kb8HE1GIA3IeCAd6Zb+Rm79DHW7Wc1VnxFog==","signatures":[{"sig":"MEQCIEsMKW22XBh3UxvTXcCwkRqyIOu4J58lSBUzecS+bRbwAiB4bzerLR0VcEIeWlGx6H4hNAIi2MUGhG4jBH8DBKJuUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzagCRA9TVsSAnZWagAAwJgQAJItzmZDLDI47dWKmzb2\nSbk8iyjIAY6nKi7uxkQN08dgjIcr0OXA9wSDvTJupe6wrMjgji0cjlGqT2QG\nw5aMM4bJXcyhbXp3PqhgbYYGtXT26KQuOg8XEQTE/x34hQ9eGtOnAtpy62t+\nSG7b3o0jqTPRnEzxddBko203VnxVJJNXBKWVeBQIgtMs/Yqd0tgf+7AiQiZg\nyQAV91Tr31EZVqKYgjvzuNtTGMRsvCYJoaDko1XrXt3YhhrkbUdZsgZNTAcE\nzjkgcABu4Xr90TOAGSA0NjRORJz+ZjGp4IlcDq9KuZgnCtz1gX1V5icbqRQc\nm0Xnybffw8Nl9hC+A2InTFvi+mNufZBo5AAqYSqoa/8nj5UGZzds13dHK/yu\nFZE/ByoH8Uc7O4NePooxENduNYI5fLp21O9QUIqHhm34hHpP9fAjN5Ao/hKN\nFnxkiDePE2uIDnGp0MrFI80VBHtQ65p7+VR6Y6kZYPDVi8puav1ToeVXGC2p\nju4qMHe9ISjHxOgiY94G0vEiOugb4brROettbpctMsjzpQ84hpLb2sU3INuS\nglDx9ymFC+EK2GlCNm7qwHmzvH3PJIJlEuk9Sq6S7vGuUbH5rP35SiIwBmf0\n+eWt2FnmyUDgzSRpVNeYxfFU5wN8dHPboi1lml/o8AUaDccQ4uddaOivPBcU\njL80\r\n=Ma/B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.0_1563899552072_0.8805010130497859","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"@hint/hint-meta-viewport","version":"4.1.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"18abd61e6ad119c8976b016f50fd1e691d11266c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.1.tgz","fileCount":14,"integrity":"sha512-xRCmEZOu2yjdWCdSKQylVXZEqjDP0t+SYgICQQxE2mXmpOhOPTmTLraWp6uMWP1Y/2fxzjiyRz9OAWkfKNSSbw==","signatures":[{"sig":"MEUCIQC+mli+Wzwh1yGoEaz+/LsO+v/+Gm2huW+f0CKBANI68gIgRxRWePrwhHgs7bqkC7nUsoNye4fofJsXmf9XCKpddck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMtYCRA9TVsSAnZWagAAY7YP+gMlfZqjhPSBFETUv4gz\nkThGaBhCbCaD88GiO1PGOVjbV87aulPycjWz34jS7b1309CPgYrGjyVh863n\nrQMVeUcsMICugPqkhfxGzRsZG0igip6Q+ZmTT3xQftPTqM96w6QPt10r38jU\nuQ8tkpBqdl8lw9ZDdyoU7lE8+3GBikykKe5eYNGiV+E3NHEoQ0IcswpbTHh/\nort9nOgsQK9dPxd5QFlw62o0PRea67uBL5mIaF00CVw1tRi7CssG/mBB/JJZ\nmXe9eW3V+gRvodkb82Dnrh8hg/ZVNCoOcdJsRPVJ8BpC7jQunr1sQQFpwalI\n2cxz3TqeAB2OqtJ5KXAe/qSbMcga8IdcnDNZSoKnI+/JS9ePPbunnDSeEAik\n7nJBYrW/nhD0QvhCdGpeQy6bwOAxb6+yqm8mEct+O15Bzfn0cBfMMIdzQ2Hy\n3+y99cuK24YDRHA5+eQi4b10QMk41aVlSNDNCBHpM5f+iw7lh87Z1JBW2RyQ\nTHJNQSGUwUPAFKnI0xnTepTTo1kEvMIxgHjdlCWFQpS1RKKAEOen0AE7PN7m\nSZb4FQbIuqoKEIIGBreThwEnu+XI1iisX4HSjLuPwCHn963coxTdbDQgvivx\nTvwoEOL3AO9tZ9HpEO7SodBAiPI45po3brYUJEx0qrv9msr3o59AkXUXBn+4\n4gZH\r\n=MJq5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.1_1564003159343_0.19954335822298508","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@hint/hint-meta-viewport","version":"4.1.2","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f62b13df42c426d2001a79204fc9c6d18c56e67b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.2.tgz","fileCount":14,"integrity":"sha512-oA7HpcjqWeQvx0AHbTQKPBmn5czJJf9DZsnr/qX6uE5HBK8jIWqX2WpM9l4pdgsg7DPfOGU+pypp6elQSxKxKw==","signatures":[{"sig":"MEUCIQD+QaT2CerVUdCJ/HstO/vNkOUWg9ow4eYQshkSTJpT9gIgMbBl+sruDIqFXNvwtK4bJGFJUHIpD7PJKwrLByBuSrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJrfCRA9TVsSAnZWagAAFRgP/i7wl6dn86GbhOOJC0PR\nzwnhYnzsC7onSLrT0YC8ADUyXHUzkHSm6cosCENGAFhc+VmQTmKrIiJ5GChC\nW6wIZRE2ky/0GjVXKfT/LTMWWHJl4PzXbvkv1Lg0Bfyb0AIgQug/O2RekRyM\nfM1yAwz2wJ5BNlzzINPslPlDxUALNB/RLYfVsewfGaGFz94/iv2WUUiPXWau\nkG+tkj2mPia0Mkamx33vODRNp9n9vv7ugFjYbtpR3vPSpnHWEjTTyvVJ4JRG\no2Ax/aSpi7f1YytZbkmABqBIAyIX4gkHFFNpHno+QmT/CkiOSSdJEp2k1DnQ\n111B/9Wl6p1tfTJ/3+2zTEI+dI9EEChOaxib2QpEZuvhIO6IJUBzKkmjLRbV\n0soksIrnut6JUgGjjl0Kja83Dt7R45YSriqX/R7o99CgZgl6n+syQUI8jyyY\nNqzAmsWbjyrVsZAXJGiYaUgbMPHJ3GCHjbBndGEvJ7WiMpzB9wilp89SOOFp\nldBZ2N5bLFtyeQjc5fFx/+Ctl3iDZPzZqvvh5GxfREHo0GKAu0t3atfg1Jy/\nFezDXaGRouyTKdkEfWG8XsXSspE5sQ8wmMoP2dnze8X1wyjqTs6wqppAyuWO\n9+k/SyQz+syXncBs+P5wfNeIDwausmQpGZZo2xiat0jLRLVay05qI17SdnPG\n99Jv\r\n=ZCq2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.1","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.3","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.2_1564515038869_0.08362128546004044","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"@hint/hint-meta-viewport","version":"4.1.3","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c387e696619f35ed27ea8427642e24f5edbfbd88","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.3.tgz","fileCount":14,"integrity":"sha512-W6IehfDM3+QJd3rCT46qMwLL6r8leuA9G1JJNNSCqR4HlQNRFJF81ldEoKx/snQXeKx3mit0OMVp12O2yrufDw==","signatures":[{"sig":"MEUCIQD8aA/yncmGqNScBztwCu5hnEAorAmcM8EnYVRNKJZsqwIgers5lFWfKk9QTHd3feC08AyWfXFkL689ezFKOS1d0v0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeYUCRA9TVsSAnZWagAAtygP/iCjBoDF5KrEmnvwgJ0b\n2Ds6yVqVZpwtDILk6vn3dILW1ZVIsZUO4JLr7mP71AjwujomRVbSpToJ7REJ\n1TK6uKGb3qSsmnm7bOPXuCzvHTQcfJUdovAblIN/XdvGEwPL/BlmKH58iJvP\n2ZWFIrMFwAr5IrUayws5R6N4FICRnQ3jVtc1cODcw8nhrujBH2+rRAaS/jAW\nDmJi37z9e7GkSOnwzsk/2DH3EyNCw8UfZNE38UXWGY5gMjQhV+dJZC7ZauEe\nVnshItgLpr33RIC7G+37n9pY2khNoEqpA2DO6hc8lRYsridwxS7R/cYg/NUq\nNwbzF6IP5jvTJzoixRFHpDpnLcmeqklUJ9AED+9oz65DX2wxuEuHXMJbDM95\n71YH9bHfAQCXRJR0dXnrwZSdKjoYvMQqd6niofBQDMDrW3NwIGzJbYDLK6Yk\nieTZtGUIulyQpPF0U/6azzpkAahjjBAutUvPq/u6lYqdFUFzuzrd/V82Q90r\niOHD5cKDVDBzXK3+WL6VbVDTsWCizA5dtxtzN0FT64+Fyv1ila3jodpwdNYS\naL3btObLrhVEUH7KVcSI2Xe4mQovj3vAVxv+j5RSd72jNXaS++QZxVjXEXqf\nuCSmctHxoYfBFkUP/HN94MX+JXm8UPnc5OvCvA7CKT207M1ZgvV4rJkKoT9E\nkdTt\r\n=hLBw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.2","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.3_1565124115676_0.7568098605558036","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"@hint/hint-meta-viewport","version":"4.1.4","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"637a51e8171664f299bd73674e3030a5d5b7b9ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.4.tgz","fileCount":14,"integrity":"sha512-vtJmpzvQG19elbUBgBVqsTsmKIGq7yedEpdagHFi36kx7a0bzO5dUQUpsu7cv8c+8F009tWHbQLSXfMXZtvtbg==","signatures":[{"sig":"MEQCIFULkkZTVcckkUpNIbvI0k7rKm1xXCnIyG2aNZEM6r8HAiB9d8z8bbHMxFxilzQKf3TQAQtBhEpHgqwoSu2ITftXyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhdcCRA9TVsSAnZWagAAIzoP/jSqCSAk95m4kSpoAWlk\nTh9WcviVNcRZm3who5t1HyNaGhXkcYGRzJNyqRuhFqCFfVR4Vm1HIPSnEL3c\nl+bFBL8D6/J6LcZCUdGi0zQQl74QmOfqh/ZQ05mivRjVsjUQpHtQ1g1ixmBg\nLu9Z9uQmgpXcYFry2ToeTnKAugf1VgV8uXj5C4kX7HJHaEWHQCvcY7U7ZJrB\nI5DGAh/uORZGLTTEvELJ2Kz+sRE/hrjjg/yuyWfxkDeM/q8fBREtSLD+IU1U\nA0L01PSFcEBhAXu1S04TEMIOxswJZ5xEidyo83LbjbRwWjrGtR4N9qFJlO+m\nWzQ3Po8OZ4tQi5+r0cxeA4yLIOqw3cDKIRoiPE7eXGnDNGShtBkigXz2b0Xx\nFyMQspeEv1P+A7bcNvF5pt/1ioJEJvafQgQNAlGmH7EIe5QUeTf9u+/Iq2Yn\nEune9kUIveNeiCvt67GlDZ3A1/4fAjVl4ZOeojrbqvc2kh0kkLPMEaqTWPA1\n6jMXkK3bzw+njp+2Xza7Gm66zAlXsyGP9yYZQb+z7w5RaaVXu7b+uTu1Dvqk\n/+JMy9HfhdQUnReHFy1oJlsam3WvB8jPYc1OmQn6F1Hs0YRnVSXC2AsPgaTw\n5c5p59Zsni9JEmqJvMspOcssUhbR55RI8w27knLN8PFxdVCZM4qadK9TZtiQ\nwGB4\r\n=FGEm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.1","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.4_1565923164061_0.8645239928329007","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"@hint/hint-meta-viewport","version":"4.1.5","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9644eb7d7ba4ddccba0c242ab258c2b7c71a71f7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.5.tgz","fileCount":14,"integrity":"sha512-0/AwICqKzbtIObbgaL8qISSG3RLDcdXg0oszHE/Zp7ie0zblruMrd4rlPTx5uQlrEIx6VQzU95ieZlv7uuUhvA==","signatures":[{"sig":"MEUCIQDmRtbJrO4ySExR32bmz4aOfuHoHAHODClORNfaHJNgewIgHPufOO9Eo0k9O5doWwiDdu4YnW5vy4yCIuLrQ/f/e7Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46828,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/UkCRA9TVsSAnZWagAATSsP/1gnksGtKUGnt6M1x+vq\nCtkYB8dmPbGwD2zK9oM4nl5Wmdmn6S4N9rxscTdu8YGswiO9GjjQSxj81+ts\nWHgRaRTk+HWs8OOvWid0hv0nUmxONlHNI6BSNJ8gEhrmC9WzKYWER4zh0o3N\nkoW1dz9K6Se/7A4SNUD0wVx3aK4KV0BXqU22pOKl1kmWDI9GAcynhDq4gh3Z\nsHpCrkDqddBVNbyzYsn9sNHDTDGy/KwACJ/dP3kERIExCVdNk7yLYAaHlUJG\nkAVPL7gUx/MZAFMzfiy98y7FreYAnQAVynEWJ8hR/WhceGIe5QibnJtfXZyv\nj3ZsPfg8ly/9/lrgDZE4YTupx6val0o9SlVJ/lUKMYUXA8jvh0dCbaYUovYh\n06A0F9iXhZeeP/dUxeWW8mltOZ5OGBmcaIfm2DU9A3rp9zw+3SQbCkI9pKsc\nk3fG9i9GBCRmAAUuvI+snWRpSYDYQ6b6kqAzD/F8T+tNtOtqERhwKkbt4cyp\naYF5NCm5/N3hm45Q9SyF4xbtym0rSscA3jHxlKLnkghGFzW1+CC8Xr6ALNju\neVsucoKwObSFfOUrbViizPTyjXWWI8rvcGgfuMfZ4tvNuekXnVmpa4qH5WcU\nM9jyi/4OKuBkTiH+VsXKGkjLzh9kshIKUhrOpEFPONIXxK5pYhUgzb8Dxjok\nIqco\r\n=QSFa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.1.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.6","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.5_1567094051282_0.6538674088669985","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"@hint/hint-meta-viewport","version":"4.1.6","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5276eed7427aa203e6146a2b1a998be1348693fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.6.tgz","fileCount":14,"integrity":"sha512-wCPjSOUsZ7BzSG+XiXD74m5rY3fTHvcv6CszgqyffYVfIlDC7KN6qchOCFsNX8ucS5fi3epLLPcN6CaJgeCy/w==","signatures":[{"sig":"MEUCIESfyUM5lzqAQO+Ij/PSUk2zPazxVj18Wx4oYlz7SzgyAiEAplRcRk18dECcXnS+GfWexKgXneTynWFoNtKnSHE6eMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXW/CRA9TVsSAnZWagAA1YAP/2v5eFsPp4qLcnb0xY5L\nV052E54Q0z3H91mHWMYVeAD9RJaJuZcGrgrc3vEEYTF/c/ZuXfwPqEPlB9Pp\ngO2qqlEqXqRG14GQTpNBX/7AIOpTHMr6UGZCNgQiJgVY3FsK47sT9At/ZBid\n9lMK8dcN11qerFjKRgZOc1dviPCkLeqZKepRtgn0lpWotNNrpYNIY0I1qaFK\nD/En82d/hmW6bztEqqG+Qz7U+7420wclGltBIfaHQn6Fr/bm1U8U0EDINp0i\noQWZtYOjsOjtx/BS/2Rd/VDeyNE+FnzzDMUT24c0cWjySwDUtw/Nl3dyCYwR\nS+MgTIMMOA/ZaRzLwlk4gBj0MV3zbL9Sl1mD2bHkgqZAQQSDj1l/WZl5yeWJ\nfGVtSLCDzGWoX7X8ZGIcu7uEAKvPbUtcYoMurYLJu4ROOVvC7115ztC+xVzr\nA2giAX2a8vWOAU7DcVW6J4lpJVdXNOUw//iAeCJ92mkN2d+ZsDuKuuKh0Sg/\niZM4Gg8Xj9hnZQXP98kSfbLMIphbcHjsQdiswDNCVrGAwKQq/5e8yPtE2wbb\nmdyocLKdr1FBBAsUl95sWR2qL9hR6ceN+HkVFSiPaiO+ML0oXSMjLjHvPN6o\nLYAkCRyY2RBJSmTK3yZ5q0T6AGGYuHXaR14uJ0wWQGJ7PuH7TdwZlstnPAnH\ny8aV\r\n=NlS4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^4.1.1","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.3","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.7","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.3"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.6_1568241086605_0.6040648960993504","host":"s3://npm-registry-packages"}},"4.1.7":{"name":"@hint/hint-meta-viewport","version":"4.1.7","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.7","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"029e99456facf3cabf91b7c0d875da068897b9ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.7.tgz","fileCount":14,"integrity":"sha512-uXjR8yzVoPpms1hnWb9HwBfeYl5QDdxYXNcA+FZxw9Vbr3Gh/0DmSrM1iab3Ctf72yL7ed0bRdMiW5zpv++HCg==","signatures":[{"sig":"MEUCIBM2+4h1/796qlQZ+H9SFL7rCzsTMrUlH8cUvlTszPXrAiEAkLniPA1AQyIXNhZx5P/zVH0RhRmjmakty/MUp75kIF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48649,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8nACRA9TVsSAnZWagAApJsP/jVSH8zdROAfGZAy8YNF\nzllNZDL4RU2GSkip1+xUtpUNwzG1KZXnVQWHsWojv4bwVfJl1Snbh5fJE1dm\n7vUAiUucm7hb/GtxKsljzJGM2M4Y0j3kZ9TMSQnAKMzt0pOw//DcvcFl3cMm\nJrOcVRTWsYAAwO2IMHOiN50ZJ1eJ8DEx0AI9RYUMO2Vs6WR1/05fBmc1BuZO\nNvaZmq4PnxE67WhVYkD+27xaGWSdOC6Q1ItgP+QfC3+cHNCr+Fz+is46qeM1\nmG2Xtbb6VpR3RkFkC8igSNys5H4Unf2HQ+6ujOe3TIBeCSsTjPQcDQlMVbdU\nghYfid0dnbZAADSB6C6zfM1A+K8V3sQndBLJAPfWeG8mleYca4jT8sxGHcLr\n+GL5VeqTKsCLwnBK5Wg1lKuARJxcsZPS+ZGRDIps96ziCoThdCgKkWyY0Q26\nfu8M4i2MB6MDqZDfmFHngQd/+kUsIg5iQ9ASu6D4AXfJroidgiDj9O9ZOFfe\nwwA5N0mtj9FDyPt3sDwLEvda6SiHUWUI5vrD/sI+6KYrpZI2MhwYTsODYG8L\nyxp/2V0w+YqNgNMve3qva0mHc3oykOPMQKxn0cTE3hTsiqh9jxmyZT3bgxS2\n5CdmWnu96GIzmGCTZZsKQcH4SGBz6u9ZHxQKYWr9IxGGxGX4d908+n3Qn9vu\nPoe+\r\n=nbgS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.4","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.8","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.4"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.7_1568917951576_0.8981145991149078","host":"s3://npm-registry-packages"}},"4.1.8":{"name":"@hint/hint-meta-viewport","version":"4.1.8","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.8","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8aa118f5321c1994196a788ca5f4fe87cd7edb5b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.8.tgz","fileCount":14,"integrity":"sha512-Q5uicj9QwIiPRyPrCwoYHzsMYjSWmP7bZ78ThRuFupUmSwsfn3A+eqiUFbYsC1PxtBSxjXkVHhWa0r0AfxJ9XQ==","signatures":[{"sig":"MEQCIAojHQB9itdKALuqQ0QXcIfa8WEkn/6PZqBRMWCFk7r0AiAmOs/YpPFz/GCuS9KRLY1HTmVCf7RENkbhXlZ2RgE9Gg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49050,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim73CRA9TVsSAnZWagAAF+wP/ReuRjyjvEHhnIXibpXN\ny5c/xYdpW0q+Og7Xrq09KoOr7ruBDV82YjWEkPOa8dQ93sxuGqkhdvwF4wsh\ng0d8A6yMX3YrIXp4UlZ/xLjnX1fOp5+EvL30G96tgoBS0Qvo6S2bnmgF8Ur3\nUAyC4y7UpeHPkrJWSPgThH/CQ2GowCDpq4DpMROE9Km9N2eLKLXJG0lVYrBt\nxoNKGuE4kqsvobi/PWrljeEzbJfbN6q0nchwG51EPEPo+wwtqD8bFxB1iBis\nN/XJcNkE93j0ue68xF5jSoTxbX24EUScxLRbv+DyxykbW/t5JN05EHLXEcFV\nHhaji6d3p7N2GypgtL8olFL9/XrJdpceh9oDFYCwEGdf45Zt3EBJOK2P8y0p\nRMn2jqw9dpe3p1rATpz6NzHes6HEEyLTbDobf3E36DzrP8VXPMj9tY8/nKIJ\n5tG0SgVS6w0BvetolYlOeNs0FnqzqzW3eiqvhFVKe2eDvKoryGHpd13ONn7T\n0vOsvr2oiQGID8XoCThcyYX0r0R3nOrb/C7HmaKyJKPNJ10R46gkeNyxlKuT\nkCu+x573+rFhgP6154eRbsnRK2NOFyALHtvd0unbiMWqfZw2zlXjM4oJydl8\nWJ4b5v9FJKVfybSm73IJwEco7ex1v8LkA5vc/jcEtJIz01KjqyB5bHWnyTsH\nc2AR\r\n=uqyA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.1","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.9","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.8_1569353462764_0.980774369250607","host":"s3://npm-registry-packages"}},"4.1.9":{"name":"@hint/hint-meta-viewport","version":"4.1.9","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.9","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b480d934a0769d58e34bdfee162c71cf9fd79476","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.9.tgz","fileCount":14,"integrity":"sha512-//5XRFzVgWMOTf5rDvM0i5o3Ph2QYVp14ALcrLGnJ41U3mUb7lm+qzHHCiH0waEO0poORLVUyx6TSW2y2ObiVw==","signatures":[{"sig":"MEYCIQDUrezVUb/jebvHbWEgJgxdpIMIUGel9vYCpn3nLnXMmAIhAIlXn1Z5G+iJeNPoZ3sGIrzbXHInaBUuglpOn/pWC5wj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjStrCRA9TVsSAnZWagAAdBsQAJkMROiG1zFp29+4wJ/9\n4EWd3lgLenV93ZtEHS+pdV8ztovKsCEiAO39CqaSDuaUqGDWRwN6Xj2PaG8+\nd17XD2MnbtMH1MVnSxyVqnP0PN040lQ0wr/oWyuQ742kbv1Y0jEBEl6KoXJq\ngVm58fyzoTC9pDkQQu7IJ1ZabDp1Qp7hBtTzodnV4xu/a/TI6YibfUqq6hz8\n0Ol+KFRdJykVKwE0B5fin74U3uZZUVw+qheI5rE7Bz+Ow6eeSFOdyOneu2Xj\nYQf8bc1gaAPqGL3OGeeOLb9/u0wCnz18Uj60w4Y9lL85QFDzfgWfBAq5aUku\nDt21ChIt+mUU1bwZ31yk6Vpdjcad/hKWB7JZsPg13LNOBHzjVQxan0ZCFDve\n4pOZOtQGGBi+FfirTMBxVJ/6CotDIBPLHm/xoqGVdRMHqjg8sacRWUTobqC2\nuABIaPXfO+dCQrQ02VCHiLrQexn2fkBpC6GkahnsUJPXxqIr+udCANTKYU+V\nWAWBIjjnXxFQbzHGpvSQtk6JeiHEQf2ZlXX613x2x1NZF6u0VmNgcgT1AWhE\nLXe2gFhjqHkIC6YzsktakFardbD720zilLnoSyKOoNISjrE3Gb+2nrkZKbnS\nHmlc8RzZFXBq9GzXgJ+x99BoO0bQYQjGYrdbJ2mg2dwetMQ1FBsEYmZBzU2a\n8quO\r\n=v3C2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.2","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.10","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.9_1569532778459_0.8786619922893655","host":"s3://npm-registry-packages"}},"4.1.10":{"name":"@hint/hint-meta-viewport","version":"4.1.10","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.10","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b057574b4945ac0e37097228091fdf2fd48dc817","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.10.tgz","fileCount":14,"integrity":"sha512-jSSCRWXi72IduR9QyrMuxCp/JieWiTR/oO9mQZ8uavwUzfhxl1TB7h9OvnTwcLY5dEQMbFpao5p/BWaepRonsQ==","signatures":[{"sig":"MEYCIQCB8AKSrWIIURrxMF60VJHes6y6FjOlxXDjg5xM2NpdXAIhAKVYZ2XDfNnw2A4yhq3wj2ut+k8vMr7GJTwowzwGjDqs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3M5CRA9TVsSAnZWagAA/O0P/ijMh5IGzpaH6u51IUUY\nXDax2ETFlzNztHfF5xPH+uAse89NqrkOIjg6+yaK4Nagoz20T2M0EUei/Ydb\nt/xEdtZzpxqdP8uTAKiqJv9AtZ1vMa1JzbDGluULbavnoUtZAjq2LwNz2Iwu\ntF6X7K1WZE3Z/bbEp80HA40BQy/TOm0UwhkoOd0Lhe1xyObN4+1rzPpCfSXl\n3lNmlMD3bfmc5M0zEENi2IIZgprlauPrswoGwhUsjenSfBL3ktGWmOgJQQdZ\nTuNnryuzkpPZj6Td4Ftno4K34YM+huyYZ9Pln4eQkV3ivO6Dd/zNlbjasMHn\nHQJbSWeN/odNsNWLhQ0KdoANkXPl313G6x6Bn7LvWFUy7inrS09BqQ+KiObX\noCbwcf4ek0mLirfr25Y61zWRbCx9gokCkDrdyKQzWm/wF9NMxSgix5KiMPxt\nLeYTv763HTLxFTgLplaNNf9X2yGPnd119vO+erGpHF+0Cbedb25aNg00voVc\n4LFWuK1UTIZmRLfCT45Y5vhhjPuWxe5Q4m7iim0xw6LEEppuhtsSslu/6nyg\n0lCR4PFv5QLwXns2lJhI5UEJkS/rvqSJ2lXHGRq4t9Tp4mwRdmvHHMx2laMR\nIk5ekYIX575tQDNQiqGfuLRX0dlzbjNqgqacfErPyl1htly+dyA7fFKXByds\nYuTD\r\n=jMyG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.11","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.10_1571255096560_0.3366533490607915","host":"s3://npm-registry-packages"}},"4.1.11":{"name":"@hint/hint-meta-viewport","version":"4.1.11","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.1.11","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"bd2e5f0dee5a6d4ee374d1b3148863f3c877c88b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.11.tgz","fileCount":14,"integrity":"sha512-N4IhdaRA56LEXavYAFIl4wFhtb5MgO6S6IIAahGVymLLrsWX6nj/fGQ1C+NMcrmmgSwPOSkrCnOkZplWscHUsQ==","signatures":[{"sig":"MEUCIHqaXKVWzWlJ+Qw1VNcvKESeiZg8pLUdMWTf9c0NQ9IOAiEAu2dXGUzh+ioQ2zwxvz8Cm+JpjatBQiJg8MUNAx51pf4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL1jCRA9TVsSAnZWagAAe3oP/0sD8tKtjsgYpQ8mLL8D\n7Qq3aVAymtESAjZCMhOLrz1DbyCCMrZ4ZXwacbjF3pYel2WNvzGF06DvsTb2\nLUl+a7WeXuQq2e6cANxz8jMLLPB7dxbzlRkAQan6CDpbz7N3lUuN1WaNJHr8\niFGvDpMmXJS5rEf/k2z3m6upvQcjBM6ku4GQjEetmhASRNRbwtODbLc/Zuq4\nGAjNzfulD00obEU1JTQQr9hhmkwHO5r1bgnPaJwM0PBdcEVUL+/tJlrO4rx/\n6IrFNT3mUNHLYin7rJBUZNjZUexqm1+6vlwFWiCzD0OyDpPsvRE/qcrKNESg\nWvL+6IyTjiRApcp5OIrt8tRZWM3kkYOmNUnxvXSKuFBir9bRZg0HqlTWNNlP\nqfS2kpEzev1LjNOlXpCF5zA00v9CtFjnEbJLPTvl4E9c4bN9gSc/2fJ0CTBI\n4VtUVmPHJL5Zm6yscNbp5xPhnHWri+D1ienOga2/IZsbSr0JqbIqbbrviJxB\nhXf94qAX+TqO+xRF52gGDpOo+EkeD02I8PSw7g569vRymKeXySihu51GeUQm\nyZM4gKz2LBVXymRLs0gu+ZOYbn1v+o9GIkBznyO8TFp5fHUnhvjn5YCObzjy\nIxUzbtF3mm19SHV+rA3RO6EHm/zSFLpzsyEd6V9G2Dp5nxph29HOQ1QHJAlu\nXvs7\r\n=CbK3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.1.11_1572388194769_0.7651752055895169","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@hint/hint-meta-viewport","version":"4.2.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8a877570948fc5cdb9ba7039eb036a32be3a20d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.2.0.tgz","fileCount":14,"integrity":"sha512-k/erh+t3dvDp5ft/do6L7Ysln/rbQ+JZRHguingB/BBwCzdl2PEA6yEd1jHpHQAS66cuwIGWuYiLoyl4MVG9ww==","signatures":[{"sig":"MEQCIH/C9xmTn/4NBv77bVZRNzBJ/Z6Z51PfkGm9tLuSvH8HAiAqtai+Wiewg+1DnJ1VVnrSDPf0/IFdOJjDkVHlt4HYUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bQZCRA9TVsSAnZWagAAySQP/j9jrFH1rgoTACKiih2P\nqlEe7QYizKHO60TwgkM5Hw6RbQUK5PQ0m+Ts+ijMxHWnM+D+TvmE5amBo+v4\nQ0ePhgeLX7uC2L0lWtplyPuIeQamRz2rrhBTjmV/H4EDIEvRtWJGhWuYyl1M\nxzcak0Q53AzgsfVtBRnQwkJ04ulX/Kl5DrUXfduX6zXLPOMStounwvvBlbp0\nu/O2qeNxhSYDvjdDsPVt371RLNmg+8JOZosknjwZAc5VVvl9mbx0dp55GzEa\nJ6dHRakS7jkanJDZjkrw57GccA/yBwEh78djC53Gqu9avPiKnPmGb4iwI0iu\nram1rwgZSVUqPK2xm4Gp/MNUyLpHwbL77xjyFWtwJV6ivqj/06FPTYBWlzyM\nq1JGjsoCr7bbuzOh0Cq6w3grgSdmQhIiqcwb16vnyToAQWCN948sadf2dQVd\nsLPQYwVTYIpvNSPB4vl8xcCQsaN09C+nDJ2Ql5sZAXdkJVn96MXLmDQQXZjt\nUegEoNJhRzScHITG1QgnOsNI7mKjQVfI4gKmz2K4fMxMNnOw7TXvZpvDwkt5\n9VF3pSuLwkWgcA16/bnXr6mtQ935GjkOr3IPDvMCg9WrrkFF2a6E5ZlKTGm2\nyjiBAhd2H043Db5OunWjkmv2VLLSlN7FFH48A2LWk8iQwcbMGJnQ6c4W8lFW\nt+zT\r\n=ooYS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/utils-dom":"^1.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@hint/utils-tests-helpers":"^6.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.2.0_1575334936681_0.8008760828803845","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"@hint/hint-meta-viewport","version":"4.2.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"69c9863a816a7bbab83f86c28b6097a455718c71","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.2.1.tgz","fileCount":14,"integrity":"sha512-uwHVJOBF3q0SBYHujuy3Pl6DQkOylvUo2gHOh+yPuchM6ZZXnJy59FD99l+xNCj9CPCMfbPGtj20sR+gXIyutw==","signatures":[{"sig":"MEYCIQCb0k5wRwNtcHIye7wlBUFanTAettA3TGuTySy/xfl/0AIhANEQf1PyRDv4HRlaA9cEEoMce+HvomKC5x4CrVDTIhJS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E7zCRA9TVsSAnZWagAAVlgP/j9fv3jMJLVTP2olwRFX\nERdbnoMkdU/6GEH6x3gwPy/HWNMdqs4hLyTztKOqb/cPhKqKwy9UNu8GSnJR\nluDJRLBHbk14Rj01pqzxlMEE/vE1hTjg757sBeQhPOlasFyXo6m6vesk4i0L\nUhJTbPg0b9wd+76V4teqY3LWe666E0M08dVj2hwpZGRGVXLtHsrt4tAuTgJ8\nZnjw8XXH7pUFz4tReelf/x1MwYnHljfUKXtuG+RcjEVZIhCq84ONmMh5hREs\n7Pbn1J8STdi9ERi0zHGHsJImKmuLzx4iCSF0P1rBqfkvC1zRT1fZiT1w9Dxv\n6zO8vkjRIaHuaMXfl1iDq//apCiFjsMsPLQk4Eu9Y4Q4S42RhbQ+eGXg8Hvb\npR6gF7uaE8az5y5S7qkbAR2gam/q62CnWwclMsqc++o8t3fbV9Wc4s8OjmfY\ndrQEoqbI1eyfC/uXJJQfoAIGqs6ZipBWIUpiuFzM88kbGN3NujbWM1cSzmLn\nx6GkUhhhkWyIjVgHANt3bsSBG8WbCxSic8ubI1KOwPGHjq19mgm+3F4pQjxY\nij2bXAol0GcekqC5uT0UIJnqvx8du9B7JzfZe77+E4hgDU1SnTfFLNTihaeZ\nr/NAWYBwF9ApKym8CSrHPa+PEAsTbw9opmUHStgJvLACmCPBG/Otdc+Pxhcz\n511R\r\n=w0Ff\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/utils-dom":"^1.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.1","@hint/utils-tests-helpers":"^6.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.2.1_1575505650755_0.6160338568430233","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"@hint/hint-meta-viewport","version":"4.2.2","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f6dd86842eb08c9fee682d1e4249a57694e6738c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.2.2.tgz","fileCount":14,"integrity":"sha512-WLULdX4Ph9+CeALAs0Jt+gGBGbCuSEe0X2rGw7hht+I3v1749gdwSwTaknIN+gHjlQkoUCP3Q57yJccdDmi03w==","signatures":[{"sig":"MEYCIQC72ArLCV2lU2qg5/2JalPCY34/+xO1WHrtXkdWtFp6MwIhAJ+voRwufqgrwNUj/xpIYMDgSKB7w/SpSMKKCRbf5IPM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpj3CRA9TVsSAnZWagAAb8cQAJvyalAx7ODzPl4bcMnB\nWtX6hXbalKlEJh528s5pI8CWGaQdNB7Pm2UyE1R5yPscUYt+pCb/nHfEfRdr\n5ItCoZkI8ZxMChyCxsJjYdXC6ty0dKR3sI4zAmfZNOKQgcr3LIJUnI8RtXP0\nz7fJRvvjJczWydYEtulqdwQDVd6/1dKuSV0HcG+chmKNBQop90nHSQbNLPqp\nSX9lZbdLm6Z59T+PoW5d0uDfdTgffMOfGDBDWKT2BeiZ+/76WQnnG1HW8ghA\n/i+Tpa+GI5Mm7d9PzsLGN+SnZmoXnGUG/+x//Oe2dIgU41hAhtCAuY3blX7Q\n6v/bCWqqWbD1eA8j51Bq4X/h83AAbPkmVPz3pktQ9jz9bTY/5rtg6DqZmy54\neYgztOoAgq9/LTI2X3cL5x0jL1aKMd8iSdcmCAZVjNgsyGC0BsFUy4iuNi5+\nUBZDf2R1LUhTeVIexx2ANcuCiG3JgZN6y4WWS4ugHU0URiVWFvJTF/bSMnHX\nOrgmHkzMN/4hSoFEW1BK1LY+wz92/1YZOCrxva0she8JZ0i/Vlh/+eY+Ay5b\n/TaZ0EdOdnlgeT67n/mIVggT656wZNL/Uir2fP0P5TxiCCnfBNdaN2iAd9u1\n1lF2s5lLt6O9bMqCcg/D9Q8csbDp9WbNZQOi6y11wyUfUl3tUpW+b5XBujrI\nYP04\r\n=otv4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.13.4","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"12.16.1","dependencies":{"@hint/utils-i18n":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.1","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.2","@hint/utils-tests-helpers":"^6.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.2.2_1584568566811_0.7308198895993472","host":"s3://npm-registry-packages"}},"4.2.3":{"name":"@hint/hint-meta-viewport","version":"4.2.3","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@4.2.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"977826d03869be1f65b7b048f31885404f713830","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-4.2.3.tgz","fileCount":14,"integrity":"sha512-j4vuWovLcvlvkpbOKsJTjnuVzx+l/JCuL0d/2lcHg3Oujc3CI58/xzoHei2gW/WHWaDUfUhTD/7m1jVJLd0HCQ==","signatures":[{"sig":"MEYCIQDI5vFibB4e+gPNMAYnqHTouuWtm8NZdVhIHOuET1jZ4AIhAMYsmTBPbzUmkLL8QFo11wb6k8oiI4EIfy3W8OU91B5q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel14xCRA9TVsSAnZWagAADrEQAJxvuC0bGPNDVC6iNib9\n1vCV8cR/k/dpR2UjL6JWcoC0/bd5fA0Y/mjS7pWKMo9eWEMsuebiEGJ+DVqT\nbBTxGsDI3pkT4XKTie7O81tnuBpx26CnwHwo3RY2yQke5eatiXKcLpK/Gq2c\nIy0yIP1xU74JJtnfnQA7gk/ergQOCRmHKo69WsPkOr1Aeo/8A/BYKm+ApGG1\nXQnm9qJqVmd9slApvLjTKEnJZ8e8OOkEIqaQvYxRVu1GJo9SBPTaAzwN2v7K\nHzBNjhcMcgqLxdqjouH+ymboS0TNlV4t5bHwvtwtApeY8GcIYGdX/V/LIo5g\n8rNmaceqD+2cvRCstvDrkr3N3NcpW342YOnGKTGwrD/IcBqzRL75cGknKEh8\n1DGbPm6oP6LJdI5uzR0QCSSbNc+GL2CiNB2HhnkeREL9W19VXC4HW4GQFqrv\nb77Nq4NeMf7sDumjc5J1eBoL7aJlAvGvOPPcSAgeEJe908jLLuXnYzhI+Bxl\nyp1WWvcWwrnQ24J98X7aU/1EkFICtJeZp/zIQl6hMTVkSjCIoX15B9m+vFJN\nEMSRSV9kQI+jER6Up+ZDg6YynQWs54bgpC6XtgKtlWJ+bdN0zF52WsceX0/h\nhIwRZ8rD6aGoJkefqBQwbbSGXCFk+AXbGCO4Y6J0Y4mpWRKFWMKWw++FCG5I\n0y+J\r\n=ExKw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"12.16.2","dependencies":{"@hint/utils-i18n":"^1.0.2","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.2","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.3","@hint/utils-tests-helpers":"^6.1.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_4.2.3_1586978352709_0.34907636897957706","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@hint/hint-meta-viewport","version":"5.0.0","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"116bc6901078638280d6362b783980a44837f087","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.0.tgz","fileCount":14,"integrity":"sha512-qWJToHkQL1Tt6CdN/CpikDHyJ0u2tVNDSveLZi20MwnMeto2kHIc5zpc79qBh2ElKfIkIkLY1j9BDmyZmfTgKA==","signatures":[{"sig":"MEUCIQDTgR80XRpTylgADJTLB26wFjeb7LQWW3op/tK5IiSbqgIgQCiEuWeA2uUcmxDFnpnTlW6zJ1mv7yV/ExJ77NH6GrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57862,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwkxCRA9TVsSAnZWagAAcYoP/RI2ct+U5nV7DmD4MhAj\n4DEKbUqc9RousqYP47V6Do8L9/Yr9NDNCmTimffZ8qn/NZ9/Abs1dDFiNR62\nMKMCUsHTyeE21Ws2lPlmo6ALIyepFO4j+pta4WxJEBQAXHcIVFKgO2P9tkdU\n5FabH+hQNAKGNG8Z+HUGwKCMRfQ6x+EFe9ZLGo2C6DS9avECVNNDZdG9jlI5\nJo2PqjwXF5zd6ntENNX6IQw/GrrYfUQyoxa23tAm14AmFmoW+eKrvPH/0ueq\n5IlEFe0tzHnghbcjgfAulvXO7IUwNuICVBXbi6CutHHRZiq1e19GBKJcaHGU\nOO4VEviJDs4V99pFXXuIG/tXf8AtcyCpGrbsBz/MYgCl130FJF88sE0dVHFL\nYnA3MtRvDGqKQ/MWql5I679leSo8W2D/qTgjvPOdUKHClQnSltGppAUSGO3s\nGxrvFyPxhKJBTQzzrpL2eX87/S+22ItnSDbPA/qQJ7u3vwb9zoIAmPqXnzYC\nmi5ZoOm47h/Qjno6SjcDnTzXbtyYvbV1VBiu5e7Fn89ikHy1X+RJk/Bc4sSt\nOTziTz3F+kstghXvSrcCdKTUJEp4opX4OMWlc8bUaXPhVu0n828DdZlry7FO\npHWl1P5MjzGxQNY4vKRomOLlOCzSg+MbHKreALiMxBAiZ7xYzZIJsskT0nXN\nR7t8\r\n=c55E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"John.Emau@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-i18n":"^1.0.3","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.3","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.1","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.4","@hint/utils-tests-helpers":"^6.1.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.0_1589840177263_0.9762240991465201","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"@hint/hint-meta-viewport","version":"5.0.1","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a9cedfa31fb01ffb6de85ab78de9e21d4bcfc4f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.1.tgz","fileCount":14,"integrity":"sha512-IhrZza8YMhsyZeI5V3RwPFeQPprjjyUjUw+bWClUIij7BGicCuEFdsjU7ReTxfm2KgMIJt5GPwwA5S/vrD3u0A==","signatures":[{"sig":"MEUCIEty1ACVkjzG8A5OWT4RFY8KrfB5LqK/nNBPqVlZCkjIAiEAvhPsR7leOxSAtSbGa4J9TH7A9eNxZh7hghMFr7vwROI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzsWCRA9TVsSAnZWagAAHm0P+gN3FcCzikeK3MyEchPc\nXt6uVbqnF1ZQJqLUhQpTmYtjnc3l4wUK2/tptM1tk1VUWcBWj3FNMkQcBrrr\nmzbstE03Fk2K8SRFS7NXHg5cZBNGmLvGIFDMe2Jz1QwT1DhF6g/BBxiqqMhJ\nOss7+wf9/oCIjFwQhl4P5ruECajJ7D6iOCHd3TqOgJU3woLLIwVHHJ0E99rh\n+x4PB7TXwBBTcid+R2abxIkCd/WpYjjtgSQBDoDW2E2TJDpeHJ3xjlPoiTaQ\nt3OI0UqWmmLVIIy0T6/SudlmqZOlUnOe0dIZkS174O+ocwSQhvsWtnVujIIa\nzmLpIplWkhp3248trxOUNffm9IzXKw/me9Fy9Wc5Lr5b1NQQPWUETqw0XVEd\n00VjFYePaIQe2JkI/tmSm5vwbjv2aspa/nzhk6h2eqsbqQAh2qM526K9Tcz/\nAHR/hH08BAGbkkGk4v3uMouw9I8e5QE0e6s0Dr6oR4xPdKY3SEc50QNs1N4C\nu8kTcsLTGHFY3pwUbcJEUFKGnb7aqdCTxKPE5MD6BqK/77/ZgCvr5zccai2w\nI2Sy/1VqugJLE/sctloyqqQMu2Ajo4BlQIKQc/gv1nE5+Jg3SAqJz95zBUq5\nN5K38mWyGlN+cbpzxLbi1yyK8uLb10itgf6CIK83uhtY5ehyFtd+NNoqgM9w\nUnia\r\n=77Jq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-i18n":"^1.0.4","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.4","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.2","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.5","@hint/utils-tests-helpers":"^6.2.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.1_1595882262233_0.6976599256033629","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"@hint/hint-meta-viewport","version":"5.0.2","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a47bc39af3f849d6d2b76fded8a9451609d89dc8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.2.tgz","fileCount":14,"integrity":"sha512-Ilsqmpg4VCAJ6r2RSlKn+rzd9htjXYJJ0fJ6pu2vwK/CbGvGFzIKMOpp+U4KMA4GC7vEj3Mhl45Zp7ek8P/0zw==","signatures":[{"sig":"MEQCIGlMjw5TKF7GXh/vQLrI2lLUxGpS+I1MExFFMLe1cTW3AiAM5vUV4YmMGfnsCoo+0Z8P/B8wX7dem50FmkYRvmyYsQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDd6CRA9TVsSAnZWagAA83cP/RI9+EyozMqPC0suVaqY\nfI0L46wDQBPPf8vHz3zIJeCtEH51YaILq40nD9aXL7//LPRPFbtUpcg+gN8Y\nxQLHn7nVM5fyj7CKHnwFMHlfxc/y1DAecU4v/iwcvAPVIDQCquDqEY6Y8tUe\nfwPTxtBFA4E862heLyqjabTAM1Tmvv16jYG4j9Dw/BCxoHv+Sp0+bSBfCUZE\n9sDp3I0joeldT0Fszw8Tl+vxcJ+j+0nQzfLFcKeavqsxrQQLzJnntQ9r/inY\noAqH3tfPwMqbUyfY4o70SCpws1Xbq7JJ+MXbYXZunTOdzMUo59ywRbsv1Tmw\nnv3yec9wjRm7yiXalGxSZnL7piC4o29Fy7UjshmyXAJr75H1BsQcrfmSYsy3\nut6gN/r4kU0bgxkrz0Qy00D/85w6LmyNKF678OoH757B9PPwv63V0ep5wPQw\nRdyNy8qlcJtummX5yVjfM57fsVR6NIIe/1xjmdtitg0O9rxmKJJs7wKWbTdk\nhms+r07a2tRsEJOWJhQ4prpLXkJ4D42p2bLGHmF5/V1NLFDtIys4+JznlS5V\nrbqxSl9q+vb8XhUAAoV7fbprKrwaGNaUP1lW4BMjys38YaqWoGEVOs5tEp4H\nwKS7mtDsztqZWZTrfah9NUKsn4HxDclDY1ys1obk/gsX82FIjC6N6Zr6UqQJ\nGxRk\r\n=hVr/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.5","@hint/utils-types":"^1.1.0","@hint/utils-string":"^1.0.5","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.6.0","rimraf":"^3.0.2","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.3","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.6","@hint/utils-tests-helpers":"^6.3.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.2_1598306169708_0.9049473479886494","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"@hint/hint-meta-viewport","version":"5.0.3","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.3","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3b7232f1ff5e43b38d9a08490f830d6af83054de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.3.tgz","fileCount":14,"integrity":"sha512-8IkP12TIQYRM1/VCEfEYyapoyCRUHn5jH72a1WNhsRUQJcgvwGXNcX1M017KLK8xJSkrm3xe6XtN1m39KxOJrw==","signatures":[{"sig":"MEQCIARIZqem/ab5h8T+adu44vmkChCxpedjw/3biQ8KReWZAiA1NGNTmfDRkpOCSb6XKg7nD/ITN7JihpCYGm6TDXH+Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEy5CRA9TVsSAnZWagAA6JEP/AyC6XISCURU4gI5hUZD\nIrtMb+L6VUAskhujAitgVn6PhzUbVmK9h1aGQlV8gl3U3AqMUJTKeK0aR3Sc\nscAAt1sCuY7TFxWNoVHmDAC7xJLgb1u+5yX8TJ7oLQ0grme2/gIJ0/jg0A1s\nVaUjY+gV2sFEMJMABqDwqk3eXxy56AUWGPiXIHMqATGZso4ZZ1UEBs8EfKtF\n5QgGjtogOh3mE7XArvGPwPBG169NNmKlPxHhO6R06sgPd2etaUmz8DhK2d3D\nHkRPSEwt5iFBUJJLSaN9FHBAjds/jKRtMeVrTaN8id6MXqRnr7zWYWUWn/F4\nxnyf9kcg0lUztSiasCPzIauvdmzHoZZb0xvVmmLDr1IxMhJhAArQcac+C3sC\nuLxaEfB1VO4rkhyzzXOlouLmEJaqXeOeDEVewX/P4RYv04iqTFVR3CQRVHJK\nDhFs2V23QdgkSrDUcE+F2/4wxOD918uumtK2dtDRI36JPsFL5tFEobYWzcl9\nPcV8VbMimwuj5vjiFQxG0fUlqvGrg59pKaFxNdFeaDKxQCZcge6eskEO0tTS\na+xmfzvIIygfTZH11x0G95VIlWO7fIM2z3EAwdJ3ut7h2Q6bCxQm1k/phRZx\nZ80ZQraJ0g9tyab0vtkkh8FqkTp5CzUMqW94VbgSHsbUAS5f5s6mbp+Ob7Jv\nKnYO\r\n=nQu7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.6","@hint/utils-types":"^1.1.1","@hint/utils-string":"^1.0.6","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.8.1","rimraf":"^3.0.2","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.4","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.7","@hint/utils-tests-helpers":"^6.3.1","@typescript-eslint/parser":"^4.0.1","@typescript-eslint/eslint-plugin":"^4.0.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.3_1605127352897_0.5132408719569237","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"@hint/hint-meta-viewport","version":"5.0.4","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.4","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2d8024aff54e648401dd899afc89b3775cd23b41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.4.tgz","fileCount":14,"integrity":"sha512-N81PcW0hsoB5+vh4K7wwBjkEN+BtPywN30Buaxsa50DLgFXmdkhfUrlUZrqFVOowLCV6Tu2DtfzlBDfGpAUw8g==","signatures":[{"sig":"MEQCIHKj6xywH6WZdlxGGUUba4O7Fl2eLo8ZMqRY5dyoMSPbAiAzHMjI1gx+fqVkOOqN37/Rob3NftXVvmQ7bu9yYALTPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEtaCRA9TVsSAnZWagAAPK0P/iUX9/azXnmabfcIEHHn\n0QqSe/RBjA/Ks8aeMXQb55ThHa5GORLvaVedIG7XZrp0/NV7vHLCzzJR7Jqn\nO6dyvh1sgZY+p75gBJF3Xa4qUffKaaGB3UhAL9Dq1xvCYK0UKlEpWsl2wt4F\nwWJ25YE33qehwsNe4ID1EW3xTSv1OEr5CTP5FM/h+7utTjEZGpxVrRDRR6uk\nSxBqBhc9XJgzl8uN/hEsJaaX6xvAslmwpVHI1GKN+/VCbCSf8PgXV4oUiWNt\nbbj1Eo9cjL57rvOmEncnBAL0MjcXed18IXxBl7qREowgnZdPiY0S+D2wM8C8\nhyd0h281yqT1dUK76cNJQMp0PWk81v/4l3Mi41ZQSFDNCUGqkVtvMjebYX6Q\nOla13O+pIfAs0Vy/vV8VD11hkkq0ijErdMlPQJa7JGD2HpviiVCYMbG5bin0\n8252SomWDgiAJfJaTD2Hz2w0nQ2K6QtbC7OAu07d5ONRgWqS8OQlpNEwAs/z\nPOaEVr8Zf3Ffn53lA8E77DRnK9g3V/ZNFyUg2hH1sA0rcOevFFVdjOXwc7ro\nRP2NWw7cDhxGN3SfVCtQbboY3cdtNVfZ5eYnvGWXfXevS5x4Dzl1BwwIo89s\nreKJqKAmHJAcoJ3I6+x9IPm5KGUd976QZ6QHiJdDYQ0zrupEfhRCBe1RF86s\n9X07\r\n=s/dJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.5","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.8","@hint/utils-tests-helpers":"^6.3.2","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.4_1612467034435_0.7491154472083146","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"@hint/hint-meta-viewport","version":"5.0.5","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.5","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e389bd98aeebdb6ed3d5d644767d97066976653d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.5.tgz","fileCount":14,"integrity":"sha512-kD5yu+Rd1i9aZJQua7W9VeYau8MlRMj/qKi05jP2cAPuSx+NB0WerFh2vRMHmd4cYFSsKgRvEJdc/rgeHgxiyA==","signatures":[{"sig":"MEUCIHBTDPbRdUSi8my5pZoFNji6PgUCh18F5ZE6NiK52Oa0AiEAkuNvoAvz52lbREG1aKINPrqNNnnNVquQXG49/uBKw+o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeX+CRA9TVsSAnZWagAAGncP/01cz6sUtP9jQvc/d/T+\n/IFjZiVxOU7wRrByiWOqhMTntPcqUztEaQCEC5Nq/yPkqVT6EYtFhW1uCo48\nRrSr6kuTJ6TIzPlRUcAmlB5oW0IQfZAdsWVq2Rlsi9E9RYBrFJkWBLqBh2dI\nf8YexmJiVetGeH/e3WPktyt+D0lRAHHK+VDqPAuvj49TLruWms/azhScv2bx\nU3yJBN4oCstPD6jcYBSDAWY1y+fjiKRfXDPJr09HWj0QpJOg917gTD+MHsBq\n0s0HFoz6gsXoGOP9L+LDEIIkU3KqmT7kXPez50B/6yKouh/9QZn9gygmSU96\nqTe+ou3+ZU7RG67L9T2Vlg3SZdKqcLvn+tyXKrYn7jLRm1ZNppE96PWwSfQb\nUvDFXWNI5L3xhCg5lCYyDeUly0dns1vTKWQPDF0+bY4qPMwRcfb4KwvuNyWp\nJaQSN5Q/GcmghWJLAIBm2fEcly+pQ4n743fCeKFlFchtO0AFMJpcuaka7HBl\nR4RdjufEaf7n/MXTugIOjHk11+QSTeowVL6X0I0ZRJiEL82h3YiIasDdCiSG\nutUSAh7GXCTHs8VzmznZdfTOpCZSTu8lfev7/py6p0yTBbvrxz0jjMKXRLfu\nTtSuNiK2XqetQkfBF+vr1UQsYYTjYpRQ3X065EM61U/DZR07f2yTskJ+vP5Z\naX+e\r\n=GnDG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.5","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.9","@hint/utils-tests-helpers":"^6.3.3","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.5_1612572157668_0.611746901300622","host":"s3://npm-registry-packages"}},"5.0.6":{"name":"@hint/hint-meta-viewport","version":"5.0.6","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.6","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c14849c0ccbf7f38f033a9657a652affb79d1349","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.6.tgz","fileCount":14,"integrity":"sha512-4d+8ElBA8I96qdOZKg7X4lJh7sK5xvufgASr8qVVpRo5S9Q/hVq/yRi7Fmj1aQ8hLP7IXophhIylSCXv8l6Ktw==","signatures":[{"sig":"MEUCIGYnp0TN505ar0AHYmf029/lgTeTtQnUQM+dzQPy0OceAiEAyyuVieEm5OYDGqc7xEnjPtPEzTP6dTRXDZEDT795xP0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRJICRA9TVsSAnZWagAApzEP/jT3qjUHzb8GRyK/uzME\nHmX+J/GeRWRKGUNRSvsK30pT8zq0FCOXipdB66fOVfT8htWLcHY6AYjwGaPb\n6krA/ZZWU6qylMGqnf+OZluB2FslYhblbZ3T+KVpjdo9e1KRiABz5hbYOicN\nARILXoRv6vr2ZzTTOL3qeKCEj7maQQkJy2z6bVx6hk3693+9W1VUnxs+ckqs\nrI60DbQDIx6ZbwH1+XFSSOlDFtoMab+YVQ8oAhMh0Z6DfOrydBbN9jAlBC7r\nLBwh9ZW/zhUNutuG3c3Gx7JRf1OPdiAT86FzCyma0RGrOMXWHyLmOATMpBZp\nY4QwJ+VbNNWjeDO53eQpMRAKnXN3Ky3+sC58ryYQ1i8rCEXD+pX/CXx/2pzA\nn/eMgnRn+Q2Wn1cEbYzBRPCQaG8fBaTQIllAcqa3VYrIVAmMT/fwYli7eo1w\nEOJCd5t3eYrmX4yJWbPBrNgJcwCpAfdRRPyn1LFozddpj5BQ55tpGPDlqRif\n1wKwgRk1Z8rNMz4+X6gxnjYCh9oOHcXSGvdU7ZtbyiaBDSHd4JLBZACAg0G7\n5kVEA6WoClpLd8E4OV9bljFHKUy/zWpRH8PCpgOGV6WdFIjcLAJhpUBRa9Xu\nHs1geHjPSdKuNDMNJJzlqey7SkM0KfsfPZOIxeEYxnN3PnIjGcl0QtKkLBji\nzGFc\r\n=O/GI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.12","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"12.22.1","dependencies":{"@hint/utils-i18n":"^1.0.8","@hint/utils-types":"^1.1.3","@hint/utils-string":"^1.0.8","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.27.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.6","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^2.2.0","@hint/utils-create-server":"^3.4.10","@hint/utils-tests-helpers":"^6.3.4","@typescript-eslint/parser":"^4.26.0","@typescript-eslint/eslint-plugin":"^4.22.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.6_1623265864780_0.7164070186097278","host":"s3://npm-registry-packages"}},"5.0.7":{"name":"@hint/hint-meta-viewport","version":"5.0.7","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.7","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b71c496c84816f2b559afc9bdac0c6b5a6470745","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.7.tgz","fileCount":14,"integrity":"sha512-SdGNQzoQv3DlRMN8KWVkL9Idxf9k75d3+BY4MeDTXI2MJCnkg/xq/xBWUbMdX+AXKf2ruuAxFTj+av1rGsLh8g==","signatures":[{"sig":"MEYCIQDQIVcD9mmN6StTYs9YTq0pCM5llxi882MDk+lFKGopngIhAOeRcU5jSmnhqwyEjsFUylTpY3oQVm0at1+dLzfn00Tc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72090},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.7","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.11","@hint/utils-tests-helpers":"^6.3.5","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.7_1634833195042_0.3988942648876017","host":"s3://npm-registry-packages"}},"5.0.8":{"name":"@hint/hint-meta-viewport","version":"5.0.8","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.8","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e6b26827f9021fe6307285cccb5062518dbb1acc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.8.tgz","fileCount":14,"integrity":"sha512-i9MyCIaEglipz5yy5EE3xDELZQZ0W0fI905dKld/jN1lprnwk/G1Kombb4jHPWIzhF8DXOV9Z1gkp7vfzN/HGA==","signatures":[{"sig":"MEUCIGRoqAA+Ze5bQijh6Jd6IGXemBq0HfvzJWi2eIDc7MLkAiEAgthhsTTZQPMmLcy6x2J+CCRitU9pEJGPZQgqzQ1kWYg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72090},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.7","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.12","@hint/utils-tests-helpers":"^6.3.6","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.8_1635537412571_0.756083156626528","host":"s3://npm-registry-packages"}},"5.0.9":{"name":"@hint/hint-meta-viewport","version":"5.0.9","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.9","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2cd4b5922b4b9b3cc35df95b235f154d310d525a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.9.tgz","fileCount":14,"integrity":"sha512-Q9knewMgY15NLCFMEUbkOFHCU4gOPbCp0fvlW0JRp5LPRySS8LuwdIbruA3k+LH3PYs3o1JqEBMyboYovLJPwg==","signatures":[{"sig":"MEQCIBOFq8zkg317Mk8/hr/ZDv9h30N1RgI3mO34dpLN3237AiBBZLz3QuSOPMRGBI0eAkTYj6H/n7CmlpVJzzE7oObIVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72356},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"7.5.2","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.18.0","dependencies":{"@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.8","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.13","@hint/utils-tests-helpers":"^6.3.7","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.9_1636050582879_0.6551100335687665","host":"s3://npm-registry-packages"}},"5.0.10":{"name":"@hint/hint-meta-viewport","version":"5.0.10","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"bbc362d23e9909bb96758d806b12be297495f201","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.10.tgz","fileCount":14,"integrity":"sha512-OEZ5iBsIc8qSyypzKr4zGGfUeOroKnNQwHgdHSYJpc6gKGC4cxu8veNpGAjMpZ8rjoymu4MVVtrMrV5tnu01FQ==","signatures":[{"sig":"MEUCIQDrnEsbphICYAr6b81CWJ8QK3tjHqsmOrEd7oo0u9eZGgIgGqjk0DsyKXbxk6kpVx59ra59QhyOr8VM8axU1O0nRus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72635,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KSSCRA9TVsSAnZWagAAMxoP/00uuNJwTdatN6Vj/pH5\nYekB4gn8IpuYEdCxFC9laQAaIA8qr78h/Oz6Hc28916WhuL1YupLs9RvVyKh\nUyg+LtPC0eOZtSk265m/+pDvBCSz22ufyqIxRbJNRlxh+rg60WEQSY2XfIOp\n/9NgXtl64ruOStCRQvpzn8mfLliIOG4OIthrHVXLrTIqf9vhCjDP/BkoS1aZ\nFwjwVB4LOlzx5AlyDX+jf5Z9cv/Os7xavDNgmA33apw+3wpiY89Fn7TiMYxg\nMRVd6fvxAQGllKT/AmacN5zon1xYHpB+WY4P40EwQGEg35IYKe5xkSdPdaWi\nfd5Wiv7wGi0vJa8N4sySVKxr8IkYYObxcL1tJXJBncjUZSl4b3cSmBAH2Rg/\nJisoRjLAuVAezrC8hKxvW6B6bMu5k0uEp+T0FZBgENNPNO4NprL4a1793Lrx\nLfUTGXi/Naohg2TrzNw4H8cdvPo07Yho9bHmvuFW7E45U9KmA98hhv5k+Ff/\nwO1DbtPbz3NrQ6WhhzaFsd2P6O/2/VdMfA9ovdCvjDbso4czqihd2YyHccVY\n28vUgvbXzUOC6A2wkT7TQkqqsy7nSF/3h0PGq0DAoqqETt1wZ7ifbeV50Ugu\ndb87Zef7Et2CUl6xWmJOQFKJuCiZ/D8lupmFrMlE7Kg2xn1iGEnIjTjwkPz7\nCIhw\r\n=COy7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.9","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.14","@hint/utils-tests-helpers":"^6.3.8","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.10_1637006989859_0.18945080254772284","host":"s3://npm-registry-packages"}},"5.0.11":{"name":"@hint/hint-meta-viewport","version":"5.0.11","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.11","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"95706fbf75de8c74b1c49d07cd95c2a05028b330","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.11.tgz","fileCount":13,"integrity":"sha512-htz+6qmaN37WmoRA8+8a33Y6yeU9L7MMQ9tQyj6cp1XvGvPlc3x+U01dnnIK5qBBejcyqYAlHWZaOTPMOyvQGg==","signatures":[{"sig":"MEUCIHeBSpMJkhZF2LmVmKaxM7SLK1w4O2snOWFG0lnb8GeLAiEA2JDk63Yd57FeoHV5YuPKJ0LkEywsfnj7466vJyPcpHI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkh3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8sQ/9G/2Jiz01lGngeHwAWMaXFO0mifpLL9s1FzGA4h4L8ZhaXITn\r\nE5vffJMQC1m4EUiGtwjM5zaEUJxqrgrCXPUMNLlbo8xuQT0LsPlRXH+XsYSC\r\n/gBqhTblPFKX5x+jvX9QmdZx2Mqp5zjskiZn0Fokeb6jkPxiYFlsIguk9owY\r\np8nx7i8BlVF2lJvitui8TIbbY65eIGBvMgMhimkVdCV0ElaC6dSSxFtYMwkJ\r\njIVoumpbKta6Ie80u8E2nAmWooqdeSl1nzdXwVCvF8zi9jjkhyqoYs76H/Y6\r\nJJsJ3f7Vs1M3/TsxQy2Rwaqr249c6IcBSzB1mY14agXDhEfzMYmCHcKTiJyE\r\ndYRT/ffFKg7bocQMu5Dzougpb9QUZa6hNZnu6zi8YbbJTzWM7xEeBewLk+1q\r\ni0j+BeccVNWErq6PYvNhvwa46RSFex3JYzOcysIUa3u3kaptvMxkCFYZKtZ1\r\nkG+lMv+lAKAQm31kS26Jp3/WEvSkgWdkTEglGM736kMpLf5huV+sM8CUmrrg\r\nB7ZC0bgw/T2XrwAI2IbvpO0dMbhmE2uVZwoSJtejsogZHX2TU/xLD4LRZWBo\r\nfz8justLRrHJF1cTR0ze8X9jOPixyc2+hTyS9cwIDTzDt+u/y2OTwRpu2yuq\r\n1nrSHZfJyVlTnFVizaCAnowc0gILtR1lBVI=\r\n=XaKp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"958c5ae10b0cdfebd292c67584ef5b99de8deb14","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.3.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"16.14.0","dependencies":{"@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.10","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.15","@hint/utils-tests-helpers":"^6.3.9","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.11_1646938230917_0.49233204632469985","host":"s3://npm-registry-packages"}},"5.0.12":{"name":"@hint/hint-meta-viewport","version":"5.0.12","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.12","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"48ec06b8f1c4c0fabb3f23ce1c421afe7fc9300c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.12.tgz","fileCount":13,"integrity":"sha512-NvtBRMXzUix6eJ+Diu3bgcspEPofEV5qX4yo6KyOzZDeQ+4vJl8Lhjy3qkXu3bB0xNi7mY3yAX+fnloSaM5xyw==","signatures":[{"sig":"MEQCIHDyB01sokGJ8G7ObufXrC4lM7eJYJh1qhMa+83I4zphAiBfm48y5QQFezZ9CF3AdmmKnQ76exo4ucRimcWBLKj9KA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG3/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLpA/5AfJw6aGL4AU3hUv1seiRZuXdx+ovZqD6Py2cnVG1e5aUXuSL\r\ntUZlwGQLaIIEpZAfGvTfOPsCRteMgTJD//HbEacRByCfAkPKHyeR0ntwtLxZ\r\nirgs+V0PWjLGbnWYFAVeliAe9tZ3JKwRXWPP6TORtKXf3Fbzo6VKKWOkHZMc\r\ns1wVBfbHzhCFxcLm/DCP+pnE9D28q6kyI5M8ljkvHk9JwzWs3tlFjvy5PTzI\r\n2mUhFXaIEIjLrr2rUfAqsd3vqcVeqjyYimO5g+BekdzeqohzDrE2oTwSxUf/\r\nWHsZmqCQ0pmTsiAVgzbfibtaBZ9tPjKuQJe4rgyHJ/J3H5h3Odzj5cJAdyWR\r\nq1v7OcPgOQzSyWonqD06+7U7DLGcteQnR9+uJiPGCh+CQgwzH7IPU5+COO4S\r\nu5xONYkOFI6dVT40sF0sPyyxoBkWlIRmu0WOA4zKRQeS75+o73zNb1eJycf6\r\nGL/WLJGY7aWRCpOwTmKc42LH06srEuoq66VuT+pkJSvP0h5zGDCdFm9GbeSC\r\nnweDTQ9qgTzg6y29GJk7hPpi0skA3WShDWWcsgQe0GxxctWBdXIhJfN09Oz5\r\nDd1xilxbkKXIJKW9HeyNoxCXir2rNeSmFQRpoI5dw5GMnJXqGW6B5MVtNkRd\r\nBky//o0r4N83c7DC7avNPRwYilVsrUkrXjE=\r\n=Xost\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"ed090aaf89fa89e6575bca6c116251a40266ae8c","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.5.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.11","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.16","@hint/utils-tests-helpers":"^6.3.10","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.12_1651011071576_0.9496995464994986","host":"s3://npm-registry-packages"}},"5.0.13":{"name":"@hint/hint-meta-viewport","version":"5.0.13","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.13","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2f5b4d37de3e42d30a220e1bf2f791f07ffbc5d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.13.tgz","fileCount":13,"integrity":"sha512-Dw7BRwXJo1nJRotgqIJNeB1G+MzZRZigDdIzf+tpOaXIigBl+ECcjSpm4j50Xsqjh8IJksBub1d56maEwUdGVg==","signatures":[{"sig":"MEQCIFXFDSwwpIYB7e6x0quMjR97D0lrnE4mqRpP37HZysIeAiB5MREeUI5LLmAkY7rifTCCYIj9MVaBUKqqnUKOZJe4XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdpSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogSg//ZZ9M9khHNZTB718Of38kbXrMk3MMJsEHXwg5KA7J49r77kIA\r\nPL6ETArgospO5ioAZ/XVcXbvLhGCWfLUJCXXIDg76QbCtBHkmW3H0vUyKmFi\r\nztNIRJ7JvYk7asgMYaDpasYPPnKHaHh1Bgg+pAahMkii2/Tmxz7kukGWOusS\r\nfrMUS6wRO2sXUeIjs239WdSwqTpYy/2vVLHi0Mfm+ldcxivdIUJc4ua5k5EZ\r\nYfdBuAHp7Z52NYiWdAPK1vzEESNgu8VOIaTTQ+7terpBbcpcISVNp8KzhIRp\r\nlcgqzPK+JvIL3gQrZNqwaQLMPwHuZFzjEhXLd2u/h9WTZQD6DXcxGJQnh9si\r\nFcOitCTqLd03o7LnUxZVLnlPLKEniEtD4ocMFR3NsALbUsz68Ub7N2t+1vg7\r\n2Zx+tCHYBp/JeutMZdB1S+pJeYOBHVZO1fWtN+OzHJaSxmTCToCvSGqyS7sp\r\n7oUhbPTgJAZt0oafGHxpZmvAUApQvWDvi/moGkN/h61xDUeTBNvWqryhJpCZ\r\n1PWqW4g+c7fr6ODg7p3eK3J+yblvdpuFvIIvLqLClW6G9pFEryf2LDUHpte4\r\nP8k5yV04YoVL2p+rPNIh8407ZZgXVfAd5KgOrlbOO19vFRM3hFJZmggnif4j\r\nnD89lfzx668OaRpr36Y/nuGdiJjXsXPcQms=\r\n=2aTi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"86a21f9d09e2e0c824fff06081f329f0382af256","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.5.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.12","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.17","@hint/utils-tests-helpers":"^6.3.11","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.13_1651628626489_0.41113656150873323","host":"s3://npm-registry-packages"}},"5.0.14":{"name":"@hint/hint-meta-viewport","version":"5.0.14","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.14","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"53900f0307e17c7ac8466503bad09b8e46239a8c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.14.tgz","fileCount":14,"integrity":"sha512-ZydT4eHGZhg0iLHYvhnpX81/CwOXc4Uh7sMXXc1oTzHBxKnhCBLD54e4vnVKwxM2ImeZHbuEzilpfBcZJDidOw==","signatures":[{"sig":"MEUCIQDtBnt2L5+Qo4WEKiHcke0l9YG3yqNBdl5t8SwJ5DVF8wIgSCQst7TavXppkkCgG4lf6lJKVRPEbD99bOIKEdmKiH8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn9XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSjBAAlPACqs3Z8Yj1FaEM2kj82zIVMxAFGw0vd1C7Np3TuFI2TjWu\r\nQ9xwRY1rRHIC6fIv/T7GqeP05cwfw80h9s/+bt6h7lass3J1wh20RJmXVg9M\r\nhE1NoCQvTC+9Pu64/bbHqQl78mSgCtqS0m+zjP7z1fHLsiVrs4gaz3MBWAxo\r\nhYPYnLK1fLFsuglxUAJjZwTNFVb7WRGiZll/nQb53AR6YLsIL6qY10ebEzQ6\r\n9XmuoYpTeDwt/5o/pJnwb8A1N0jBpvWDntPD87O0deyjCNNdnfLCQyOJdD1v\r\ncHBrV8YyI+8UmPwt8xQAr+ztj/Hjz925Yh53Gr/6PzEx1c+heGECMbe3yEUI\r\nXuqVBW1vzznwrqhTlCKGb7vdRFec/yxyi6DUrelSBRc9pppxY2QcfRa3NaJw\r\ng8im5Xjqn3XZUoan+S0CEgBQINgHyGq0YFCCJdNKWY3Top4tcUU+qkXWckV6\r\n7sptnG5V9RMs1l6Go0PtRh2UKIW2X7HEcopr/2x/iVD9TJEGH909YuBguZqm\r\nq05vEUjVgSXhT4PnG+VrsLCSEZx7R/lfxV5Z539Hn3ZONDOv/kz4CYGexDUr\r\nC1wxctycaIDDcJCMW5PahhjBboOv2rVCLwARVaAklGZ+o3EiHi0yZsscqvAr\r\nT3eI0MhTtN79RgKKKSs5POMYY2nD8PZit2g=\r\n=6PJO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"6.14.17","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.13","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.18","@hint/utils-tests-helpers":"^6.4.0","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.14_1654554455564_0.3671162523525273","host":"s3://npm-registry-packages"}},"5.0.15":{"name":"@hint/hint-meta-viewport","version":"5.0.15","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.15","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6a59c1542e3286bade7fab97a56350b0bc147f35","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.15.tgz","fileCount":13,"integrity":"sha512-G8OOY/1Y1FJaC/It5Mxz7CqsE5IOEEzoiSKGRJ3jq9DeFd6i+yUO5CtIPCdO/pR1+GKA5VBYBF2iwylwiWC+lw==","signatures":[{"sig":"MEUCIQCf/X/8pRYiKx3RKd/DJlxW6hv3xSyd9muwVDLFrqqBJAIgFNfmWTAFQCdpGBLYnyHRZHknauRX+zYKUR9+yb84cdk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6CHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHNg//cNwqcB/8tIi26Q1sc2AGXWw1P8tuPXnSmbEknqWBSDmXblEJ\r\n3mWJ+A2FU70nh3Dfd5Jvp7wk/WgDX1yd7xx4Tp60YT/0RQf7AzX+BZQ3O3R3\r\nrU49m9Pt5e9LQib9ijVhThRxyANETpfIlw2h8qICubjdQAzfpGmyHZqw+UtS\r\nfoeV9iKUYD32KB82DCk+scFyn8skG7SPqEhjMqfgJBkKJmul8r+Z3mUMuoc4\r\nfWDUYzOdkCAkbuE3pT/XfPH3+tiMHGMA+lbCu2hW/os8vyfozfeA3l7YIcFI\r\n6L1jPscCKUI2Ljk8BAmvq5hhuh/xWjpd1TTaoAPwPYVYnN50Yn9B+ucyr8DD\r\n+viEcw4l6J31t0+mPgzZYkHmivQNtWZz3EQnK8uWgRRuP9Cy/Sw1cpB5SmEk\r\n9Ye4M74cp8R3qYFY4VTRz3escoFJBfOVj8rF8lmPHw66tO8xSAjqDKRLpks/\r\naHJlJHMECRBEC0HGG6yuSr9WOsTWHvPxQNp274g/BZeYIQyXPfcQ00mv+rbj\r\nvRkozrqXwzZ2Pi5zbvhze/p4y/0UYnEcFV5QawuCA430oZ8+xdPhqcOg6/+G\r\n0pMRC3jygc5kV/BBJ9OtjrcjL2I8PshwLHc6dgmHGZEfkkFZka3kxx/kNwAg\r\n7TXV4ZYeH7lYIbMt+Juteqn41lB3e1Iw6JY=\r\n=Vl88\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"8162e2a7a04d31bb7e79e09b1e0b9a2b9365148a","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.12.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.13","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.19","@hint/utils-tests-helpers":"^6.4.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.15_1655152775117_0.08256816362592301","host":"s3://npm-registry-packages"}},"5.0.16":{"name":"@hint/hint-meta-viewport","version":"5.0.16","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.16","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d1bb6194c9a264a615be12befc39469b042dd780","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.16.tgz","fileCount":13,"integrity":"sha512-hCqNVIjMLiNiW5m1+YkKPNPXv9BypHfa4N7BE13cgeRWdcQ3wSqjalNyJKcc996VGjHJh7ZQqxERXNn/Xo27LA==","signatures":[{"sig":"MEUCIQC55dRAwIapbUEu7l+Pljba4UEOQW9iRZ2l1iofbj/FLgIgASbRXrTt5i1EKLx+ITVcUmJg8OavqaxcZmVk/bsMLIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFRIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2vQ/+OsT4g4RE/D3QA0b4t2bUYaBBRbBax1cnUkVo3QKXV+WkVB4m\r\nmiI3q/jHR7JUgFQCwDxCEN0X+ymUyhzfrQ4T4011cJ1TalxDRglQcY3gN/e3\r\n5LcCYVgJrUYjsZ8VBJvceXkjfa8MO+E9mS5XDWgT8wO9jggI/hIQY5Zm7JDg\r\n0IVuLW7uj2rlOfmV5PueHPKxdypHsY6J21o/X8un5PAd8z2nPhgNY6QGCxWH\r\nNvXw8UxHw1AbkXtKJN8Gqr51T0xk8GxJ2a2vYglYIiO9EXCe/jqjx996nROY\r\no0IqeH99DA3ebDvKV/XAYMIAKAREB3hfsSclmxU7R1GVaPNJH5wfd1b6Przx\r\nyDr3h/wzjLTTVGBwPL22mRxUO/4ZvkTMYzmAmvrNnofHj6oES4BaX+B2X8CE\r\n36rHsWdkBIeWIrGOkZ7rvPNTLNAkzpKyg38Uedd6XVZv7yMqg3rrVjhrBcmv\r\nFYnrW5u+H42KsiAer4Xrangn/ZfiPWD1hg9VklPSwOomtv7m2dj92YXqNUpp\r\nEwJHg8Ecmw9r8WrJ19rxO8zgCDYwBFr4wWo3c0HusJ8iiGxj9Ber0gQ6DbIt\r\nKbbb+T5aQx6shSN8ZiCS0vHlqlnzReEza/eDO7XvXTccnbzvhAFSCzstjf+E\r\nxqc+Vx2z5c6ja1NNMRd9NbdJ71oiinoaPR4=\r\n=/cgj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"50e8485324a6c885c736d0b4d1ac8513d875f5c4","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.12.1","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.0","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.20","@hint/utils-tests-helpers":"^6.5.0","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.16_1657295944359_0.74846167167759","host":"s3://npm-registry-packages"}},"5.0.17":{"name":"@hint/hint-meta-viewport","version":"5.0.17","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.17","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c9334a390983fe913b4f15181b17fa9d326a01cf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.17.tgz","fileCount":13,"integrity":"sha512-8265mtCWwok19SqOQye+4jx3MhdIhczTUW0rpQj3+dvPzQ6nBo8ejar4RUspuR+zSGnvVLAK0wt0fY5gqrwAAw==","signatures":[{"sig":"MEUCIQDrHsbQ3wkU5rvHLWFyNzHCsYaGzY4o5UKgrQxtHOYOTAIgTrkz5VPM/lrPeFVPniA/PTgfqVIBffaru6rC5Px9aEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdUQ//duvUYJSdcFK3A6nK6Q+8G2PBxU55Atyj9Q3EgVb21JbfEzln\r\nZkWXi1w6R4i20+04b3oNalWaVilrCNGEDENrHnn3XVkDjKHJjq1SmrWgDyl6\r\nRBItEds9XpAsLjzy6eI42mFG1vEwcjatuv9XGari+tQ8sXrxpQR4GU2Br/rs\r\neNQyS55KGSZEYKa6Zo8vudXj7OLHgx6zS3PmES8AK0yhEQMiEhw+htUfJtnn\r\ncDYz2f1bKbHse9KHEFKuXUKADDl08J1mUZWIFEbp+x+OfK4ThKBCpJNMuatU\r\nT9MvCr8IiJaWuVHR14RHuo+mTmaf2kz72WIZ/i2nWLacwDZhAcVM1koXKVdi\r\nGw93oHkq7Fdllq62NfPAYaHN24kb5Naqc60nUnT4Tknane7Gtwybd2zaOoWF\r\nzOX/zlbyhD/bUY+zBGZ8LjsD7RKgJGhEykYX0wmeQfBGxiJngYAlpA9BxAEk\r\nLj29yrVysac4DINijjY6CaJNaj+3hnEYpPbP/IAQsIVc/JJ5MhZmstJSk2ay\r\nZCoP0OXHoWUsiGmEPGvnJJeDNn6nQWM9fnonfnaZkQBtlBeiZXXSbH5waP7x\r\nRW6cQmegUScpyjZkv/9LS1zoi8un3TrFtkRSgdl1JOmw+5dPpvKZP/s+dt44\r\nzGZnTUQ7ngw4UqDaPvnihksIYWIkmxDUaeM=\r\n=SvCh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"3747703aad67205d4aaac4b74e7f78ed86402c0d","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.0","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.21","@hint/utils-tests-helpers":"^6.5.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.17_1658530783318_0.522124866371994","host":"s3://npm-registry-packages"}},"5.0.18":{"name":"@hint/hint-meta-viewport","version":"5.0.18","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.18","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"003f41849d12d631d9e205ea550a4081d635c326","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.18.tgz","fileCount":13,"integrity":"sha512-KEZLGJZ2LGHohcrt6nx+8UKrCbjYB2BfqFpiBNXslz/Ao8enOB9KTdbQCKuPXVmIC3k1Paw1tCoCvT5iTyBM+w==","signatures":[{"sig":"MEUCIEDe1EGj9BXluq01TO/teux/mehC6HlkrK08NV/pNxcqAiEAllIYP5/DVkBvm/DHaIDY6uOvJpjQ+PMXzAjEoS/Anrc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3gVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmprKhAAl+rcCqEhjTtHrr+cQTr/Jmae/SZ3a3crJnnArBL7eBo8BMd6\r\nHAQj+7J9/fDur9E12u7qJujr4rkJX2CfvSTU7TksE5WIUfCmpBk5ZlrQlM7h\r\n5+L+0CJo9kQD8s6vox4RoncPQcmU5dFBqk/pE9OBnQGeqzwzf8Qeh6RLwcjj\r\nWhWj5q3iPQrw2moPGz2vrmJna6B9qQ1QrjGwQuejkPPS/Q+UUJYYdu/APS+K\r\nIaEIahM3FJK46qlo/0CHovQntbkUVgvGpjiA1a9xvUGXJYpn6hyR13fJV8JT\r\n/vrYM5q9iix7JtIvX2dsgSXgXBKePHLYkB4zaCWxGQ335j0xAyNGeDCHLxph\r\ntyENtVpPl0njQ14MzDTAXLMXP2Q1p5B7X3P5tyXfCQysdIkK0vRE57xBTt/7\r\nm/TL9Z0wu9FDHhBaRBzcQCM5LFKxnMD1pmVHlp2E6h0kOveKLqY53A2CKmlK\r\nsWkQ1aCGKGEkCsuFrhQPDiAnXJnoX/FCHRU2A/t1KMHhEfoLIvrCVPflihFZ\r\nFsncZThmqDiugSuf2Mqw0TE7DYLPWUvDBksmnPE4L8JYxIwJV9mvbBI3bmxv\r\nvMGjh/s/TY1fhGn4mRLnNjtl8O5LuPcjdcNRrZ9/lIdUKsiTcTDUYxIVMnyJ\r\n5r+UYWURZcTrhS4T30l6V7CokJJLRXYOxqI=\r\n=FtA8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"64f0d5cf033aa97b12ef161d91e00bd2f750da6f","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.1","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.22","@hint/utils-tests-helpers":"^6.5.2","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.18_1662482453002_0.26387699630840933","host":"s3://npm-registry-packages"}},"5.0.19":{"name":"@hint/hint-meta-viewport","version":"5.0.19","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.19","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"01ff1f4a72ad359213b9020c1d0bbeb273001f65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.19.tgz","fileCount":13,"integrity":"sha512-L8G67B40Qig9bN4yf7ITYyMODajaDNZ2/9mavzRPQwlPF3M3Hkzqmp1WB2KkUlMR1JCBaaIH44biQSfy7LEzmQ==","signatures":[{"sig":"MEQCIEXvMIgoM6IICbX36b5nQtpjF2Z3t9jh+PfCp+MnkSxbAiA16AfB43IuiO3odGGCMlJa2Ra3Gtq8CSRGTsp81SDTNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzAOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolsA//SdEodc5sd9Ys/uNsadD1DAM4B+oMHvsSwegSVr9VGOq+cP1a\r\ntpb4a9Ts0guUrmXkutCHgqvAuMn0wweLKZJ3Bphj9FeEgSWIGP1Yk3U3BnWQ\r\nlmiTa1vtTX6APnZA8azSUj0OSB5XYIjaEhhAHl8xfSifS33HVVxdFy2urGEf\r\nF73JFaWxpQ+6gSHYlibaGKMHLm/6PpaXQ/xsmNvgpGaOR386/Zaxm7DEf0Q+\r\nXIT6N6bcNSXnlNFHXI48WLcH/1+uKJx47MJJCgkztHY13fonUSxP9owfwnG3\r\nW1Gn8obae4JRUc0M9SYEh5a9zu5UtP0NTl4z/o51oMw6yxnWVDm6DU/IiHEK\r\n44/TVXv1xblASwwcv/BJuKVTBN74o6CCNC9jY6sVYmRR3m4hU/8MNpECSMHV\r\nTvNDC5TErLvtj1uamrPZZrHmFVp2Mt7BTI8MjzYDssMSykYFMSmb2+LueSuu\r\nt0QZgZ50yaQ18d86IXVcn5exUBtq2KMwc8QCGef4vgKC9mKNG/LXN6RHiihS\r\nN9JiD8WAs5iUYogvfW3iUn5CsWQo7LAgaFVm2KLvHB/hQiVKo4jKzVnfji0m\r\n2NmdlGy2jtxoEfjrl3L2BpoYjh2OD2oNbZPzkFcqRnxzVBDabhVCeeNen38h\r\nJZx93YURLDNsXQhNdEkKZEkIj+RXYhrMSwc=\r\n=+XKa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"8869f1b823276a7cf0417925b78b6aba21d4ee2b","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","metaviewport-parser":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.2","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.23","@hint/utils-tests-helpers":"^6.5.3","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.19_1665085454642_0.8428660152681868","host":"s3://npm-registry-packages"}},"5.0.20":{"name":"@hint/hint-meta-viewport","version":"5.0.20","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6f7499efffccd2410f85d6b98cb42acefb6561e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.20.tgz","fileCount":13,"integrity":"sha512-LjLyQK7nToFX4lQgGfwW9neJamoKhesX0Yw25dYoEsefXE8tsbTopqlzWlQAW/DmWRYbaWbzmXHerlFsBfffoA==","signatures":[{"sig":"MEUCIQCfwYfN2BHVTrJ/pW44wHNg9sEtvNg74/qmLsk3X6cIGgIgYRzOsuRL4CWJ1S2f9vDiRfNw8E9S+Vb0eI1Fcb+QClg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroIg//epKMoyWKjiqwhbnJo7TvUCdszZthMUzi/kJni+uOo1u6sdzs\r\n2ycwCzgiSxJO4s0Yhsk8rK9g+oIVJa6Y1dNI4/1MDR7Y60jFFf9wj4n6tDdm\r\nhbZ9PwkM6nae6cPSCmvcpu0qPYWbK+e44K78KrTxCtuiQtSP3VyitGkeD27Y\r\nIej6OjKfJmGjF5TDhW6djVjrRZbU5iiONQqUq8gFoGUjYbIbPRkpftLYkYnf\r\nCD8f7Y7WXXZo8X0TNc1hb2dyIWXsWBneecB6dVJwInt27YI+BRH5n9ZNyTTR\r\nz5ievvBb6bvraq1kxc+DSi1AKBhx3kGvMCdU8RjjHpw00ZIphFPk0PkSgxUf\r\nAPtLyO1K/yVYS3zJBtkoNjrIzeBN2gBXVA5ggu+Pt49znH5DyOVhkUIBNxtW\r\nAfYu47bzCllkCLI+QZ4CwSwwuWKtfkfwXujBYACwAfWpRqzufzlqJzb7vW3W\r\nbJ/CHHFpX6cTyY9/aJk132Kqk5oF9cftG8t4PcrdUHLcWIfxBKu3e/rgKoTT\r\nllt5efXExQ2kWlLnoiJf7EmnQLwQkmen6414zDY7W0gdjCKWx87sNPdMBsNl\r\nHQ0696ojclPG/wiX9N2IAHdT4adMqRNx5w/5cQ6Tj2+eedSJJOy9GcBQzIO5\r\nRaA+T8sAfpHqOHfi2kxsU8l66t2LtuOGUWA=\r\n=izxL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"722be1b4c0836d5c0adacfb00c8c4f6bc5d1e707","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","metaviewport-parser":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^18.13.0","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.3","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.24","@hint/utils-tests-helpers":"^6.5.4","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.20_1679007019796_0.33211776170278906","host":"s3://npm-registry-packages"}},"5.0.21":{"name":"@hint/hint-meta-viewport","version":"5.0.21","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9f6f11c35b98a0688a13b0a3ddec89d927c720a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.21.tgz","fileCount":13,"integrity":"sha512-O9iVXosMf/YC1iMWvXVKu1zcSZhtgExzAEPCPdhDLikQ6nwzTSoZEHd+2oY8CFfqkyQ0ZrNgLzfqO0PMdRLVtw==","signatures":[{"sig":"MEYCIQCqKV0yL0PmGJ+PcoNBNc738vudIAuFaJX6Vj4T15OAXwIhAP0l6SG7WytsrQ++8MyU1vgnyRKrw3hwuNMzag5nvJ6z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33851},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"fe6feadb1f77798203ea9d75edd88cf2fcfd1b61","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","metaviewport-parser":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.4","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.25","@hint/utils-tests-helpers":"^6.5.5","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.21_1686328179307_0.19787331639644545","host":"s3://npm-registry-packages"}},"5.0.22":{"name":"@hint/hint-meta-viewport","version":"5.0.22","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-viewport@5.0.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"0b036ccd242dcbf44ccc66cec714ce3c5f681d14","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.22.tgz","fileCount":13,"integrity":"sha512-/JteJeZinUmCQizI6xFjSeaZ1toAChf6uj9zH3sIj/QFWAwbs7nMdGHdmk+D+1E3ML+6e2eKj0rVT4fHkFT7bA==","signatures":[{"sig":"MEUCIQCgXBXNKov6OK1wBxIqqIWHIyNB99oJvkZDa9k/xhMYnAIgce6B9DxbDBF+6s53SJRNK9tHseKzD4PWCMGXvCp+GQs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33851},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"89eff1633735f4669156dd0b2d093697f458aea7","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-viewport"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta viewport","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","metaviewport-parser":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.2.4","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.26","@hint/utils-tests-helpers":"^6.5.6","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-viewport_5.0.22_1687907350601_0.6644509747653398","host":"s3://npm-registry-packages"}},"5.0.23":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-string":"^1.0.14","@hint/utils-types":"^1.2.1","metaviewport-parser":"^0.3.0"},"description":"hint for best practices related to the meta viewport","devDependencies":{"@hint/utils-create-server":"^3.4.27","@hint/utils-dom":"^2.2.4","@hint/utils-tests-helpers":"^6.5.7","@types/node":"^20.1.1","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","copyfiles":"^2.4.1","eslint":"^7.32.0","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","npm-run-all":"^4.1.5","nyc":"^15.1.0","rimraf":"^5.0.0","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["meta-viewport","meta-viewport-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-meta-viewport","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-meta-viewport","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm run i18n && npm-run-all build:*","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","build:ts":"tsc -b","clean":"rimraf dist","i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:dependencies":"node ../../scripts/lint-dependencies.js","lint:md":"node ../../scripts/lint-markdown.js","test":"npm run i18n && npm run lint && npm run build && npm run test-only","test-only":"nyc ava","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch":"npm run build && npm-run-all --parallel -c watch:*","watch:assets":"npm run build:assets -- -w --no-initial","watch:test":"ava --watch","watch:ts":"npm run build:ts -- --watch"},"version":"5.0.23","_id":"@hint/hint-meta-viewport@5.0.23","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/hint.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-XWMP7KDgCch/6v122T95tU9wNWSMF7jd6vpF0nPA38Sn9s0Vpjhcpp2dbEnkMe1NuKrVoakrnDoXoEzmVJ7f2w==","shasum":"e05784ca95ace55d981ffa2f500f346807f0035f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.23.tgz","fileCount":13,"unpackedSize":33851,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDcrZoIVAj/pf5+291gMgfdPJFhoJ+B6IBJKcEaB8gC3AiEA5U0LZGf5wZbnvJRweY43ubx/Kfwq2o3Yw2mI+5Wh8b8="}]},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hint-meta-viewport_5.0.23_1724949377877_0.7309508166355918"},"_hasShrinkwrap":false}},"name":"@hint/hint-meta-viewport","time":{"created":"2018-07-17T20:37:06.009Z","modified":"2024-08-29T16:36:18.457Z","1.0.0-beta.0":"2018-07-17T20:37:06.254Z","1.0.0":"2018-08-06T22:38:17.550Z","1.0.1":"2018-08-10T22:57:06.425Z","1.0.2":"2018-09-06T22:48:20.578Z","1.0.3":"2018-10-31T23:46:40.183Z","2.0.0":"2018-11-06T00:12:38.595Z","2.1.0":"2018-11-28T07:19:12.513Z","2.1.1":"2019-01-02T21:09:01.844Z","3.0.0":"2019-01-15T22:10:54.172Z","3.0.1":"2019-02-22T17:31:10.165Z","4.0.0":"2019-05-15T02:54:22.213Z","4.0.1":"2019-05-15T04:24:46.344Z","4.0.2":"2019-05-23T15:49:50.901Z","4.1.0":"2019-07-23T16:32:32.231Z","4.1.1":"2019-07-24T21:19:19.505Z","4.1.2":"2019-07-30T19:30:39.108Z","4.1.3":"2019-08-06T20:41:55.790Z","4.1.4":"2019-08-16T02:39:24.178Z","4.1.5":"2019-08-29T15:54:11.394Z","4.1.6":"2019-09-11T22:31:26.746Z","4.1.7":"2019-09-19T18:32:31.699Z","4.1.8":"2019-09-24T19:31:02.997Z","4.1.9":"2019-09-26T21:19:38.713Z","4.1.10":"2019-10-16T19:44:56.711Z","4.1.11":"2019-10-29T22:29:54.870Z","4.2.0":"2019-12-03T01:02:17.097Z","4.2.1":"2019-12-05T00:27:30.955Z","4.2.2":"2020-03-18T21:56:06.917Z","4.2.3":"2020-04-15T19:19:13.018Z","5.0.0":"2020-05-18T22:16:17.389Z","5.0.1":"2020-07-27T20:37:42.560Z","5.0.2":"2020-08-24T21:56:09.830Z","5.0.3":"2020-11-11T20:42:33.008Z","5.0.4":"2021-02-04T19:30:34.550Z","5.0.5":"2021-02-06T00:42:37.785Z","5.0.6":"2021-06-09T19:11:04.939Z","5.0.7":"2021-10-21T16:19:55.205Z","5.0.8":"2021-10-29T19:56:52.775Z","5.0.9":"2021-11-04T18:29:43.024Z","5.0.10":"2021-11-15T20:09:50.033Z","5.0.11":"2022-03-10T18:50:31.061Z","5.0.12":"2022-04-26T22:11:11.754Z","5.0.13":"2022-05-04T01:43:46.652Z","5.0.14":"2022-06-06T22:27:35.809Z","5.0.15":"2022-06-13T20:39:35.286Z","5.0.16":"2022-07-08T15:59:04.553Z","5.0.17":"2022-07-22T22:59:43.465Z","5.0.18":"2022-09-06T16:40:53.217Z","5.0.19":"2022-10-06T19:44:14.827Z","5.0.20":"2023-03-16T22:50:19.975Z","5.0.21":"2023-06-09T16:29:39.507Z","5.0.22":"2023-06-27T23:09:10.833Z","5.0.23":"2024-08-29T16:36:18.170Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}