{"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":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"4.0.23"},"description":"hint for best practices related to the apple-touch-icons","readme":"# Use Apple touch icon (`apple-touch-icons`)\n\n`apple-touch-icons` requires that at least one Apple touch icon is present and\nof a standard size.\n\n## Why is this important?\n\nSince `iOS 1.1.3`, Safari for iOS has supported a way for developers\nto specify an image that will be used to represent the web site or app\non the home screen. The image is known as the [touch icon][touch icons].\n\n```html\n<link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">\n```\n\nPer Apple's [current guidance][apple icon sizes], default touch icon sizes\nare as follows:\n\nDevice or context | Icon size\n-- | --\niPhone | 180px × 180px (60pt × 60pt @3x)\niPhone (X/Plus) | 120px × 120px (60pt × 60pt @2x)\niPad Pro | 167px × 167px (83.5pt × 83.5pt @2x)\niPad, iPad mini | 152px × 152px (76pt × 76pt @2x)\n\nOther notes:\n\n* Not declaring the touch icon in the page and having it in the\n  root of the site is not recommended, as [Apple may change what is\n  requested by default][h5bp issue 1622].\n\n* In older versions of Safari for iOS, the [`precomposed` keyword][icon\n  effects] could be used to prevent iOS from adding different visual\n  effects to the touch icon (*i.e.,* rounded corners, drop shadow,\n  reflective shine). Starting with iOS 7, no special effects are applied\n  to touch icons, so there is no need to use the `precomposed`\n  keyword anymore.\n\n* When using one image, there is no need to use the `sizes` attribute.\n\n* As of `iOS 11.1.0`, Safari for iOS\n  [supports the web app manifest file][safari 11.1] which provides a standard,\n  cross-browser way of defining, among other, the icons browsers can use in\n  various contexts (home screen, application menu, *etc.*). However, Safari\n  ignores the icons defined in the web app manifest and still uses the\n  non-standard `apple-touch-icon`.\n\n## What does the hint check?\n\nThe hint checks if one or more `apple-touch-icon` declarations exist in\nthe `<head>`, and:\n\n* each has `rel=\"apple-touch-icon\"`\n* each declared image is accessible (*e.g.,* doesn’t result in a `404`),\n* each declared image is a `PNG` of one of the resolutions specified above\n\n### Examples that **trigger** the hint\n\nNo `apple-touch-icon` was specified:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        ...\n\n    </head>\n    <body>...</body>\n</html>\n```\n\nThe `apple-touch-icon` 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\n    </head>\n    <body>\n        <link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">\n        ...\n    </body>\n</html>\n```\n\nThe `apple-touch-icon` has a `rel` attribute different than\n`apple-touch-icon`:\n\n```html\n<link rel=\"apple-touch-icon-precomposed\" sizes=\"180x180\" href=\"apple-touch-icon-precomposed.png\">\n```\n\nThe `apple-touch-icon` is not accessible:\n\n```html\n<link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">\n```\n\nResponse for `apple-touch-icon.png`:\n\n```text\n\nHTTP/... 404 Not Found\n...\n```\n\n```text\n\nHTTP/... 500 Internal Server Error\n...\n```\n\nThe `apple-touch-icon` is not a `PNG` file:\n\n```html\n<link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">\n```\n\n```bash\n$ file apple-touch-icon.png\n\napple-touch-icon.png: JPEG image data, ...\n```\n\nOne or more `apple-touch-icon` files is not a recommended size:\n\n```html\n<link rel=\"apple-touch-icon\" href=\"apple-touch-icon.png\">\n```\n\n```bash\n$ file apple-touch-icon.png\n\napple-touch-icon.png: PNG image data, 16 x 16, ...\n```\n\n### Examples that **pass** the hint\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        ...\n        <link rel=\"apple-touch-icon\" href=\"/apple-touch-icon.png\">\n        ...\n\n    </head>\n    <body>...</body>\n</html>\n```\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        \"apple-touch-icons\": \"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* [Everything you always wanted to know about touch\n  icons][touch icons]\n* [Is there a need for multiple touch icons when one will work?][h5bp\n  issue 1367]\n\n<!-- Link labels: -->\n[apple icon sizes]: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/app-icon/\n[h5bp issue 1367]: https://github.com/h5bp/html5-boilerplate/issues/1367\n[h5bp issue 1622]: https://github.com/h5bp/html5-boilerplate/pull/1622\n[icon effects]: https://mathiasbynens.be/notes/touch-icons#effects\n[icon scaling]: https://realfavicongenerator.net/blog/how-ios-scales-the-apple-touch-icon/\n[safari 11.1]: https://developer.apple.com/library/content/releasenotes/General/WhatsNewInSafari/Articles/Safari_11_1.html#//apple_ref/doc/uid/TP40014305-CH14-SW6\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[touch icons]: https://mathiasbynens.be/notes/touch-icons\n[web app manifest spec]: https://w3c.github.io/manifest/\n","repository":{"directory":"packages/hint-apple-touch-icons","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-apple-touch-icons","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","apple-touch-icons","apple-touch-icons-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"261190a40c20e0a41f4fd056cc6934864f396440","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-NdPbUk40gs8ETeEr9q9EHK1VgfSD6FGyOBM4jN21DE/kCf5dPgcw5L3w5XmChJVD/3/rlkpd6rqMlALP5wRBqA==","signatures":[{"sig":"MEQCIGfWUuvf3Xz7ZT75/E4OudpZmW19OhfPHKLWWIlhUpkaAiBf3/PKDRftgwbJdrNmX4xH9SPO+9VdlXry4bZafCuZCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTSjtCRA9TVsSAnZWagAAOssP/1eEm3QRIwjb7y+OwgZV\nYFeaLh51sY+MMtBB2cSprbX14c7qtKx9OCu4iXEZfBlHAuGFS4a27HNUtsr5\nuS2uofhaLNh7exwWMPsVDiLdHzcgx/iQQ1BqqRX0GuDvLuuo8udm/142bqdq\n9M4xD1sBu+FtNJgUtcVjjf2MHa+mt3fNpKXyHVPrI9XhQEeHEivgui5BjZxD\nPLAIsKaABDfF55ITOgnjSe9hGc4dXmuJfUv4kjGJgmjzUZe0fBip0uieIgHo\nW/Z1btr16LmQEH6RxDs80hUwklCPhOwDb8HuoxcqO+RfHQjPs0RQFPVHQiDa\n0lua/MxNZZJs0qemi0EP5UIrMmbVjtMiAQCM07CSty/Ilg1Ys8bdTaraBBgX\nXKh5OixNWx/KjThq3BvIni5Q1mmzXUvBNjBi5B5n/43aFChPgx9CO0yy7eEQ\n+xbt4ZFKyWEe/ObH//0/ngPnbJbdn4Z2eDdg5xdtueiDjeAVEic3KnNgbpG2\n+Zn1ONReigch1Y7asjmB4tjuyi1PV8JDXRQj72EcZD2oilWobx4LLp96UWiB\nIdS0l5RwLms7J1ixCfUqkB12imW+6X98eIu7qjR8DaqHy8Ntv/93RSIxZmm8\nZsOCORfor4y4C8cEpVhiXw0+I2jAeuEP+h/3Iwm3KB2Lr5Or9aEyhDEUP3DP\ns914\r\n=3a1j\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 apple-touch-icons","directories":{},"_nodeVersion":"10.4.0","dependencies":{"image-size":"^0.6.3"},"_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.0"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-apple-touch-icons_1.0.0-beta.0_1531783404955_0.9551855198248964","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-apple-touch-icons","version":"1.0.0","keywords":["webhint","webhint-hint","apple-touch-icons","apple-touch-icons-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"3cc1421e81b2d1e76a68f962618c0528f78b7c85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-1.0.0.tgz","fileCount":7,"integrity":"sha512-oL/IqBXMznJpkZcc6+ZTrq901i4yMRAcEpIFU7QdjRda4U5C3z42/QH9RsFJYZ0YF49KkynzxPXzfmfAI2Q8fg==","signatures":[{"sig":"MEQCIE0luwG3FeT02uqGjLzL4PpXzcGlsfuoxVuy+NTJDC8VAiAEZQsvGlxnyT4Nj3uYV7ghuiOecv5MoG4u4JdCLqrdfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaLjaCRA9TVsSAnZWagAAv+4P/1gz8bHGorJ6Wx8vd78F\ndu/nJ9+kaCIMYDPAYgq4GHY6J4Va3AI58uIbuDWO6ULIQie7SZg7T/jGSens\nj0JHItsREWPfL77tlJIL5XN9EU4U76KUfgNzHjlCzd6kXN09w1SNNXEF/1BX\nJUvuOPmaZN8LRLf2rul/vCgVWnIROgno0EZaD9/ZDQy9aYK1fnrOINIdSEiT\nEcdZ1lGpAleb+jkPZklniNmGgwag4xFttrJO4LhZdP2vxMykQY+dlsNC1TBA\nJPzvB4/NGqJgaZezk2B0VBJOGy69FldY61c1UU74CzsQsGZpM03/pK5GdGLr\neaBD0JwWap6LYQ6Ob0E62EUKZ5xFuzF4LjqvFKJuNAcopagjH/GkH6CWxahI\n8BNdikf6pd8pQp43PT5MrzKvYr739g2e4yJqPzetABPuqzq5wh2DO03PeRWA\ntQ1ItZ4xVm/mQbEbQrJUz7NhZcm6+Cpa4pY4eRtbk/kw03XibDGO/Mp13Z49\nNXutXTmcH3AMBFNQfL6grGeU73KejC7kEJ9mZZPLq3PfUfsJvTuSmu3VtlL9\nKhrbCJNTxJwObGW4Xy9WFd7jgIGxZnzxW16BiKN8wW+3tA/w8b7mDjlqX1VO\nHW3evEGu/wboaTumttL/aKhMfQtXXs1HH+hifN8yxw3F0ywru3GTABQIN0ab\nHxyH\r\n=luvr\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 apple-touch-icons","directories":{},"_nodeVersion":"10.4.0","dependencies":{"image-size":"^0.6.3"},"_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":"^17.0.1","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-apple-touch-icons_1.0.0_1533589722308_0.919298532583082","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-apple-touch-icons","version":"1.0.1","keywords":["webhint","webhint-hint","apple-touch-icons","apple-touch-icons-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"cb338bb8b41988abefbdc85bb790cb638d0eefbf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-1.0.1.tgz","fileCount":7,"integrity":"sha512-YRq2eNbTNv2MMFWKvFnz/evFQM5JLMwmH2qyxxvYfYo5iBQ7XyC7mSig0wG27kpsr+JFUQ4ahZQaaLBvuPud5w==","signatures":[{"sig":"MEQCIDHAn8Lv124zVK2aT1W83b85VI21OfzBAlp357BzPiFdAiAXzPTgCBq5fv9HwAQOCbjXsEdA/iIi3tk1CdVP35lfAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbgNfCRA9TVsSAnZWagAAUhwP/jkB0gR7p8t0o7PF+a9d\nHeSbxLzB0xHxjYoREYEY0dFLtTTfbU0jPFqd/vkVtCop4Tkc3PJ1iCg8ETl4\nLYAV/LvDW8Jl+JG+fEwHXE2a7QTGSRy/pzwpnAV4CdHahzOzdVWGNStxZj5G\nwiZfdNUWIJOhNVAsTjsEELusK/HG0GMgcIXTe9MMBOH7oqIYIhWI8XJE6e7R\nlvytEilT9ZeaabY7J1PUfvJOW4cBytieUsgpkYfldhBA7GjeVGYwJEw9Wc/W\nrm3R9yTQvv9ioqJDyUS3ZzyYnyXQxonOghDbDKcYy2POQ2n6gWDd5Qqg7xKd\nCZxOAXp2ZP9u+H0QylzGGKVLexSndb4h/5/hhqE2gi1sx8KOed5MPq91dAXg\nyud9I53YFFUvVrWSeKEZtKzppnU7r3nNELWn5A+6iLofe798KsxYCeLtbQRR\nO5MaHYP2xklRKi+aWQJYJc2qKW3bTHUnx+jW0ZFplu1MqBxTSHab/mlC2KoY\nurh4sYg0lPr/jPXJZdpfTdX80FSNrMgCOGqGDtOFpA9KeDbZregwMqtofvah\nF9jbm6N1DYNpVPhGcC0NO9Hn6as16JyqP0FfGeuEqr7aLfK2QlMIg2FJWStA\nUoczkLgDO4AJAL6kEggPV2eAb2x1/yhxsdT5XbLGJKoEtaFAUOCT4Oi4PVCX\n/lwD\r\n=Zckq\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 apple-touch-icons","directories":{},"_nodeVersion":"10.4.0","dependencies":{"image-size":"^0.6.3"},"_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-apple-touch-icons_1.0.1_1533936478949_0.06442579305201424","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-apple-touch-icons","version":"1.0.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"ca05bcc60d35bf849963e54ae550abba9dff7653","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-1.0.2.tgz","fileCount":6,"integrity":"sha512-FPtcWAhs646NEX9U9COXwNx0W6E4kOC+61hWa6dh+ncyXNGE4tVXYKOcVrOoNBZCUvY237GIA9ovKSooICsnRw==","signatures":[{"sig":"MEUCIQDrOAB1g+k5tJYZjo1dTEUmTVCkWXCKDr/KpKyqHt1uhwIgEFFtuUTgn+UW/ifghMYtSAdjE5ZR+MjJtsz3hrIHobE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZQvCRA9TVsSAnZWagAAd/QP/1+r/kvZmqiMeGtF2Nod\nZdicJIy0UGPA47Vdt8Phw44lBhvS1wjouc3lD1RNlEmZ1wRez0o62bxPxrtZ\nDa/7cN36YM/xZD64mYHC17F5fkF3ixybKu6XUvjyxuay/abG/ZJg8l0AnBiJ\n+nZ5z2hz5SgjDJFZ5pJegJBaVcxxmZgBS7KcQKZQMhwEVnvL8rdN/54tCfgZ\n6RJ0DpEhMlrBM8kqTbcZCBMQhDqrAkVJ4gEOboPAmnji30fMiHL9aMttf96d\n8Ybzgjl0blCfEPPUmE8VCqsUnXHi2Vkbc734WDY4OnALzYgklF5MeUEVTjX7\nSQe8VoTUue90IcosA/e0KoyG4P+EY0Zyd5E4lBoMzM8BXK/6YfyB4wpXoKBM\nh6lD983SJZQTzfyX8pvLIaOee5OAh7F4KMz7TEbAKsqF7wV/xxRnOUtWl9t6\nlfsGRDmnAqayS4mWvqjxfmSOntMQ9FJtmnem0Cax9gpcRd8pQEUFMESiFqH2\nrN9P0i3YhmPHs93Ui6Fakmnns4c0Ho1/8yHCCVK4dCs+PLOxc8WBP1InDZWb\nPZAke24Yzk8FPa2R9LK8eDvHyulf6T5JPt1+AxavVfS6vMx++JXBN0QuWCqc\n1+IOhhWKmOFju7UVnipZRH/XR1zTjxphdeue/ZR0OimrMczCU4YxpRCjnzcq\n87uD\r\n=wGGs\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 apple-touch-icons","directories":{},"_nodeVersion":"10.4.0","dependencies":{"image-size":"^0.6.3"},"_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-apple-touch-icons_1.0.2_1536267310974_0.5998019109435002","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-apple-touch-icons","version":"1.0.3","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"d0cfe105aaa85a7453eb9acacba30de33eacbdd4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-1.0.3.tgz","fileCount":6,"integrity":"sha512-0dGVT7gSiVH+QOQlz0N3J/2DTvUmwbzK6FFgvN+RLyW9/xpstUgYMsDkQNlvbaQXtomSO2Pm/EsFyS/WaLYTqA==","signatures":[{"sig":"MEYCIQCbG7B1yRcq9qadHae0LJ7nVBgMdvnlDqfoUMNOCHCtawIhAP7qvX+z8XuUrDaPdQpW2SZl1/wH0Z/uuR55yN/q0mTt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28456,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2i87CRA9TVsSAnZWagAAZskQAKR9BfKLZmJ0TxvZUuhg\nYwEVk4rLit38kNmCSMXR+YGm+jFxWdVOYEJOeWl2yaAj4bEM7pPlsybdmB3m\nDuWN4JMvcGxS+Dwfe029Vvz8sxjeY7oivAT4yirAERNsHoXiiL8Dj4gwKNVM\nwkRqL5OPhR/yDoYPwFFdOBy758Ot3kZjcXK7DMbLQ9h5TgHJXUv/3t/Z8b/E\npMjn+ztBGJZmFZsrgCiP0RxouhMgFnTFDFxiD/0+WRsz4dE5Y77ihvbUWkAl\n89XGkrWvWEl3Xi20acKt2Mm+Wacc/VryE4kcx2vUIaeN7+9gjshc+B1PptTh\nXlQaRilABMw/ln9rCEdTualcASGSZgQ9UpZhMlHXPCyp8XEMbhFK7QZf9dc3\nGvLJohZ9+PoMo1U7YDmFE3s303FGc2w+1TlmOwrCy+ljmgUhxPsRDBmReyZC\n4+uK/KCFRLb7veS40xllqHDb8PgvuffIpOI7gf/rMQh34k8Vmyj7C6iBNfaJ\nDYwQEJxW7QAobF2slMy1HncP++FLAG1XysK+glsel1ii7gOxXgq0lcCelpAU\nTwV0ImRhcUuLrnMqrtcXDYKAWqeWvTrO4d5Bn7+PLS5DWtwbE1rbzW608xTU\nGapBXAGlzyMpS1748aczZHkx41tRJYbXd3XXVVU487nB8xdr27YktI9ahz/1\n5/ty\r\n=8M5F\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 apple-touch-icons","directories":{},"_nodeVersion":"10.12.0","dependencies":{"image-size":"^0.6.3"},"_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","@types/image-size":"^0.0.29","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-apple-touch-icons_1.0.3_1541025594799_0.06975614051080781","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-apple-touch-icons","version":"2.0.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"930330e2b219ecdde8f554dc8fd4a4ade3190724","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-2.0.0.tgz","fileCount":6,"integrity":"sha512-bzmhD3K0dVvuhXXUquOur6NnhkiPUl1yB/45jUqJUJShK5hJWE2HZmATwOf1ZsNda172Z9fMw2edcsPHoDmdMA==","signatures":[{"sig":"MEUCIHhBJuju6zWYGV8CmLOSXrUXByW/ktN4dC+OXq1B1oh9AiEAlUuouWhunb/xP05G/IA1iI0q1XUEl3wJdCbZJ/iJe54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4NQiCRA9TVsSAnZWagAA4D4P/iJfrPbtsqjpClldEuSC\nNpcCyeyHqv16+lcAdrRn+cVuSFC2g0rbrLX+/1/ArkJkb5Hhjud4NdQ42+3R\nxLzXpBaBTXq6Zv7Xp35zWQUP8lKl070Gp2KLEQC2fSFTehE5bZGydmlwM88T\nhBXavNYJ4fUeyqHpWB5fAEv30XqKfhFahVfJNY+7acdIpXleZFxPFF3ft8sv\nL50NFrD4yJ+98CAvEbKzTdryC1dAklaQ2f3Q8TNG04mwDTUt5qKBaFQFmD0g\ndpbnByQf3x0ovlLzRV/mDUQP/+NnAORU1CK1dtr7FJo0TCAmVaC4aBdDsyst\nQiTUJVL1tqXHH3ASHRYVuAmZjI0JuujzaCjUNjNZl4+U/AnIt+JVC3IUjD2s\neZwPlJn0P6uSvZZhNoV7uuhF3biEQFCxZukkUZwjJnAwmb5IjWfgDwRbxVos\nJ+o9GxbTc8fyeoJ0Id5fCenuPpXR0gM4h3sE2GBenBnXL3zu3cjD3YE7rP9A\nFSF5UUY48DUSPvUF9qLRaXPhfYQ1V87H//45T6jrBTgOtDGJDhyHgrXqNaac\nEZK+BD929NSSBzKZOJoaymgIGvJBpeSRnbDYLpgaPGZieOvnp243rpy4M6xj\n2tBZqTvMZ5Zroutcaeu1GPiS/7J98kicm5s1HZJRb40LCG1CuHYwUyeegX9b\n+MOd\r\n=Rpsg\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 apple-touch-icons","directories":{},"_nodeVersion":"11.1.0","dependencies":{"image-size":"^0.6.3"},"_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","@types/image-size":"^0.0.29","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-apple-touch-icons_2.0.0_1541461024604_0.753409414932434","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-apple-touch-icons","version":"2.1.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"7c238264821b5fdcd10fc53d615bc8448d1a04e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-2.1.0.tgz","fileCount":8,"integrity":"sha512-/tMuD1Ykm02UQ7BYTLYdoNnRhTXBwxNAgfGlGthoYcdVdhXNyYRoYIZIGWM/q8Se/QGl4YAdu8HLjUA20Khq2A==","signatures":[{"sig":"MEQCIDMxWrRDlUZXelDFprT1J6kgQSQdsYGABJcYQfDC/Y5AAiB2bojaw7unl46ZddCaV5MaUooCIwNAaTVDtWiVNjEVPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/jDWCRA9TVsSAnZWagAAYn4P/RkMf32M9kUj3qSBZfkq\nq0hojL3QXhhC1CfNSt29XQqRZ3Akhb6Nl4+3dkQm91wugs/BTWlfFn7SbHqK\nTUp18akbkVUu1Qozdw+ftxYJReNQtQrjmcRCjG/RwhdIhjDAJ3oHCCfzNaDn\n7enSDRywJpQwBnDv43QFJoRCJy3R2u+4rHZ2keSymO489YRPL5UQIqdXKTEB\nf8mzXqih/JMX2rcgyDW/m4AlFp9qlrCAp2YhvoXUL989hAtnG08M61Uk7Xlo\nu498XoFb2X27nBbQht/TWbOi6kGfLUxKiGIryJhxUQQccA4WGbxEyhzHV0kV\nAbwzOPCcFKp2ufPzsXkBkQY3phSzG5gqM7UUAQEqNWXY/F640mjHMI/fleLW\n4rf3MBCqSa0eaAZVJrf5kmB6qqnWMJ9sMd7TrqcuRTkltk0u/XOhIKVfFT4j\nMjWc2ul3D+muiOf7i4vvGEMT1kuGrr6rbcvhKj1CC6++G1/xU0fMjuHU6/ZH\nzq2UgJEjPPerpO72RsTE3352+YV/8garV4pngoefN9BkTv48S+3tcHmiFZcq\n7Q5FqVXEQSxu10mUj6A+SfCkKmEIUoSBekuTtstJyT6BSaN+mO+kqUFpF2uc\nt7U2qf/acdoIRD51eYbWLK3yBJSgN1F8ejJyoN9rxvzb0gXPr2YIR6uYI+zl\nPfe4\r\n=yOkt\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 apple-touch-icons","directories":{},"_nodeVersion":"11.2.0","dependencies":{"image-size":"^0.6.3"},"_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","@types/image-size":"^0.0.29","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-apple-touch-icons_2.1.0_1543385301847_0.645676596691342","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-apple-touch-icons","version":"2.1.1","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"eb255a7578999c01eef4f7fecd4dc7459d78d312","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-2.1.1.tgz","fileCount":8,"integrity":"sha512-DiTu5DPe/6pl7kRgDfhZwHiqMo1jics7VjXRF+4zNLi7niiAwPltCJF3yJbM1r8YCCCEwqqSPG3mtbhXxeh/Yw==","signatures":[{"sig":"MEQCIDsz46GZ/JK0KAvUcyOXjKJaB/YEV+wD69nLxQHaMU4LAiAtH6C2JPxv971p5x3mNdcW3OwaiooPxm6XvUjubgWgAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLQtPCRA9TVsSAnZWagAAW28P/Rj7m/7LQUGSddkBbwu5\nFcUv1YhdrsiTdAiorAgA5aGNBwigBPTOWaPELC0/kP67D6N6EDdWej6ewE03\n5Oul9WxMrh/c+tuvMYCIAmPOK+5LyBf1uykMsz6kr+MsisEECSZSgGEd/CI5\nzvTWpPVoYyFCe+igDUdJMex0aaEemMTj/z1mmA6Arbu5MFi5dOVQX7MVo9yw\nimQxUPUdqUQNKAt71OnlApVOy2rNtEDjWXxu1VBfiMf2HDG0QPpKRphidSqf\n8D/lSrjgs9G5jldWDqYUnD0HwFi8s0Reans+Bap+0WtJmyT0ACbXSIMFiBgP\nOjmIcBhc1ntu38mlzB9Qcmt9z+0kSdJI4pMI9175/eVpuGp3GPaAZRbDeN8w\nRJyv0Gm9b9gZ0PdQ0A80q3ecqRmo4tuGhuTCu6kYMCY6fbOwDjqnDImlQXRG\nIlrGvk4KL+B61cSxlAq1WAPqhGwdAAVLuZcU+WWUeuICgrGaUEErnBqalObD\nOWp6K2TjUajzE01/dskkNm0l0+IRETv0KU/Y4j/AVA6h8W+6uMSYM4uVEDF3\nO3Z0UNgOTAuc8MO2WudmYP3QXGqbX0IWv5/kSJHjFfPEOQgjUWqjsTSMrkEl\nzon5ozFt/SyNQ/NmN0C/j3T4BJZ0c07Dg+HLTEwUA9BWKqr+oEVUqIXdLHM+\na+Js\r\n=zVa2\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 apple-touch-icons","directories":{},"_nodeVersion":"11.3.0","dependencies":{"image-size":"^0.6.3"},"_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.2","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/image-size":"^0.0.29","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.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-apple-touch-icons_2.1.1_1546455886431_0.7501230763772659","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@hint/hint-apple-touch-icons","version":"2.1.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@2.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":"acaf4cefa30c5263933eb383f764cc95de796773","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-2.1.2.tgz","fileCount":10,"integrity":"sha512-8CJNc4oqO+Ul2a/y5ubq0NRzkePIC7SVwfYFc2woUU17gLEt2uqQSVuTffRKHG2CMxqNYas0I9um92Y114DMsA==","signatures":[{"sig":"MEQCIBTiqxWxIShjk+vBKL3jkNtSPB1dUahT4Ckdx0GqsB1BAiAogsiSO6uosF1T5qnpb5Bv25ZE2RPyLgLwmtBeTapyEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbzsnCRA9TVsSAnZWagAAkqoQAJIuyi3je0P+oZOs0GtA\nrC/Ywi0nQpVkYGsfOdTJfWERutRYJZKASBeYeS86pZqBUDQZL38sb6pkq5vk\nZqGDI2C+7kqtTlKUUUdQD6hKSrKPAd4vPEhVOkYpw2W8weqJWEI85CZol/gy\n2xBPcZfF6zsix8zsxVcwd4MVcde2gv3+LmkXQUI2rmTSsTXxHJdbDnHgRl4E\n+VXBLgTt1YXygKAsQFu/7gLg0aGSX2KxWQ1QsGWm00bTFO5rkLoiLyV3ZNRr\nMU2hpPm4W50LllMk7x49Lkqz8hn8+UVz+akgyXE3OEK4n82bqsWE2MaNNS6U\nbYgopYwPASBFzq9//IjclsxC1Z5ab9q++wokWyxRGsVQ+TdcxRuSp2WVRz80\noRb0684Ng/ye5ewhZF/t+0suHmlA76bC2FmkOp0LsYetHYAvBGzdJggy1a7m\nJT6qv5LQDkEJftriKwAi8G49NnEVbLnyj0tnteHjgVMQRgXcpWNSFNniaAdl\nd/Vm1xGDfWwxFUTdp7WChrNcasczng8Bz4yexfS7rl4becwNYpKB8XCMINnK\nbtQUuwSKYXbIXKNi6Zp0VCvrP910emmlu0TOiBSEYBH43CQfMyjB/9+fFBd/\n0mvvrvudS6zk1r9ZaAm150F3sSAebl1QSBrcl6qXugAyjPip8q/jNtwOZuDX\nh+K+\r\n=+nRk\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 apple-touch-icons","directories":{},"_nodeVersion":"11.9.0","dependencies":{"image-size":"^0.7.2"},"_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.3","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/image-size":"^0.7.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-apple-touch-icons_2.1.2_1550793510727_0.5333737855389995","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-apple-touch-icons","version":"3.0.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"9fc496961d5ca22bc7acbf8113431254b40cd76d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.0.0.tgz","fileCount":10,"integrity":"sha512-rRl+qyfhgIDMXKs5tOE7QbD1wuxIZsZ4+v/NdaGvBGLtKqdknC0UszwvryFD9/3JaGSDwzSgliTkGPUJAh27uA==","signatures":[{"sig":"MEYCIQCcSArqLsl7Ep1Li2AGWgxdFXhNzL61YQ+Sa2CJz6sJ2gIhAIW+YhfvdlI+flD5LZOo4mC+8CaxNiY0ZP3awIbKrN7K","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37986,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc233ICRA9TVsSAnZWagAApAwQAKEXJPUjxz+EMPAiM9Qp\ntwXz5QyWhKHlXCRjKkt9zC2JEPhMG3uFT6V74sLgI2Kx3Z6pFtsRK9ThQAUA\nqLREOo3uRxMjmY1cK+9rX3HAhPu+miUvf35Scb5eyH8sp9KsC6w8OkdQDogU\nhwMGpVYwC/VDcHBSh2qKlmlBS3oTHipNZalFVuSEIEJepMe+6G2vdAWjKb0e\nPgGAj1qqrOc3nt7t++nnn08vLbug2eRFR7b+bouT5H/Rep22hErZ3FJ60kfR\ni1iwguQOkNCR2lhMSgC4SnCAMf8CSkOT9KPSsFA7yh2LQzU/fmV5FrGGXiyU\nEMd/W0HV7uviPSjVA/6qFh6MFe0UYHkC2ka1o/4j7moTXaq/x4yJ7F6ATzwF\nO9BpLa4e9jqFOoVKDzIVFskN4I3ZGUM5nbi23lE/xcgh7IJCIHrD157kye1W\n0gnZ6ZmI5f42xAOU7lIA5eO/Fqi53JLhpfeymKXbsGpz6VdNureBP5vf3urk\nTV4XWSdr4iDhUr52/3EYQoi+9g+kk3U9OiWhrnUu9jzUk5hxFok+LBGy6hYk\nRA4ElQrYqUEMMD5fx3UVLtXGlCUSTzLc7txtCKCBIALZHyJCH1uX42aTS6rS\nQIHWmjHZGR9IeZ5DJYURBk3BVcuJxvpbXteEW+BQPXyhyuDxGDQsRLqtM89F\nXwqK\r\n=bK9V\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^1.0.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","@types/image-size":"^0.7.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-apple-touch-icons_3.0.0_1557888455898_0.31051654903389214","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-apple-touch-icons","version":"3.0.1","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@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":"c9dc5b2abbcbd56d1e26ec5f0954df9fbe12934e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.0.1.tgz","fileCount":10,"integrity":"sha512-vhMfegEIAq3Mp8tUb5nlXnX8L9CmTaJYOVwprqpzE1z1EtliLzaPWhl1OwBcVL4nyJ4EE35JbKlfCjVjPmiqpw==","signatures":[{"sig":"MEUCIQDpEMNVqhRzBx1SrCtvkgHgh5BENuPZLVxsckc5eux7OQIgITPza3EuLnOYX3gjAzyGQxzi4Gptwq/fo0/BYGcR1Bs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37986,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25KqCRA9TVsSAnZWagAA7IkP/jWLrI+3o9X/ATO1MYBw\nKq9DbHR1HUzhSPyW2a3EOgqW1N/NYy79G7LKzK0uLYcY9VyRLg/NW7lxfq1W\ngreVy0ZYm6It4SKwRU0Rn4Wi+wUIu9+OtB0FO+dhiiuh6t8RiJI/rq8Ruexx\nFVcRsm/es4Wvdk5h9TjviuamPOyfHhcIMo9xoFLBBesnsLAH+TzSM0O9TWrT\ntzl0GnQnt3ydiLgorbg358mR1em2WmNPa48tdUV060eQNI3OkjJtx56JAUxx\ntwZeniYerEXJe3BFaqs3TsfwNyaFOb/uwy8z7ZN4bgzBl5iqKbVonLOtMNwW\nx4YnpSWhD3z5ph66MIvMxnxa57VGehvPAZhaMSXTQ1biXTB9vdQYT9G651+8\nKToPfGnCXdd6KFHfVmNO+gjbSFXzl+kSAyLCIoMXhFOCy10svvmOvZOpxqCX\nMCaN1SXZhJJhAhnWKXWjsF2F5kBhQuSpKf+DQqt3DazzzwFfj6q1+DtDy3jb\nZdtcYRvaffJ/H+9Lo9Ykhqy2Ec9pZFJQd/kAo19sMte4V3AdHUalQwWnvhVE\nfYaNghnBFv+RCjUCaoAkwV8OKlLYoGAiPmoPvw2Z+65bh28wKRAYoUNDkJFK\nt1lO6sc0X7dtCzYDhrc0dbNxXEj7ZXFLcgCa/FSUl5Y4UasIc/m8B/PEDu0a\n7gmD\r\n=tIfi\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^2.0.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","@types/image-size":"^0.7.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-apple-touch-icons_3.0.1_1557893801411_0.4460002648473671","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"@hint/hint-apple-touch-icons","version":"3.0.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"7ae44f3f070d64f2454b175d83783b65d6749284","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.0.2.tgz","fileCount":10,"integrity":"sha512-HNdf5tiithGKiRe2sKEtKprBWc/ZZOK4hY1nz+DL+ScFIcaNHPslwELdjkB96z0AZIoMlJpG7SmVp6AbsMHkvQ==","signatures":[{"sig":"MEUCIBWJWVoBwFDz3qGkaFaWTA7UTq7NaX3Y1uqXXrQBqGuUAiEA0wTZcAE0xG6387U85JNnFkM/ZJTyliktiU6dmnjhTjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sCjCRA9TVsSAnZWagAAt8AP/3HsQeM+egt5m7TBV447\nNN+VDYz8jEa7lhZaPnrVPA0gGQ67Ff5RQkoSJ63ZxefYNaH/jROqtMbnH/Z2\nv4O+6n1Vc5f8aJgZU4OosWZ9T2yKLge6/PkLMpmYEDSau+ByEz8XOZWua5jY\nFAL0bH6G3XYRFt+Kbbk8uAMJq+JKBHMOPVsvGKLvS9y3G0KpGJtjxkh8XATX\nfML7zdw4iKBlK5hXRfr2wD9Y18PTmCkd0XCLsN04wvhfDR4wepyKr7HB3MZf\nLxzv85mQ5OxX740ySSvM2ViFjRy8sEi3J3T7DBqWtUtxZr6+MhcBz/JJbs/7\nbShNjHlPBnPbDsHfE+6XgnkwSmRXmuzS+s9Fdq1HeeYLObVnDTIVNoYILJuM\nxfnB0byIv2mnkMLLkgN3kbBhD/rKGZlhcvqDcXCCCum4Hm+YgUoxkSqiZA/N\naIh6/5g5FR1mwuP0T1a3MFacGmcjrks4GoOfRfpSQPMsFwXCQFzA2HtI0+pX\nJaNG0R2QUQawgp+egmkKj8wRxZSLcd+TELIUHazu/vrvxxSFpAQvqPjj4KUZ\nL8KI45lyboVOu3TapD69jokavyuQAA64Uz0XjqWHXzl2Urgrmszi32OBi34t\nZhbBwnvc8byj3x9HBbHK90npEAkrxbcCllXoRTFZdlnLnjS4RH6kp61N8clX\nC1+D\r\n=UuA6\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 apple-touch-icons","directories":{},"_nodeVersion":"8.15.1","dependencies":{"image-size":"^0.7.4","@hint/utils":"^2.1.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","@types/image-size":"^0.7.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-apple-touch-icons_3.0.2_1558626467243_0.940599214457265","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@hint/hint-apple-touch-icons","version":"3.1.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"71f14d502b6e225665fb870a203758549d3d53a2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.0.tgz","fileCount":14,"integrity":"sha512-CrT7Hcey1Qgq3zCBITvM/oef7OwsLSf5Ju6G1MTca0lBNuXEFY3zvU5YazBPWp5UXkaQuCrpALc+AU7Mn8XbtQ==","signatures":[{"sig":"MEQCIEoMiztyzUF5wMZlvzfJCmE5csOulWryPhdsMj80eJIiAiA/gFsPtqaxSc52aPiy3ToiCQFEnb8YF0siEovXesljaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzYJCRA9TVsSAnZWagAAewoP/jhVZl+G0XsiQN8VvDUx\nxDS3XH+CvBNAVK9EzDCJVsYPs8ODRVZWyt+0mHk8ybNc6B5JBhg7vszYzveO\nSyM+ndLYThUnzCXD7YWTKLaTsry6rPh9K92KwX/lDoaEJql3x7ulpq7knF/j\npjrudMDZ21hEj8GqbN/x4WYNE0cyY/WykJFI0QhdX176Qi8iPZPGSblCN4I0\n8PjGoyL1NEe2G46nG/XHgPWp9EdTPKBR3AF7njBDn76/PRU+JKqnhgbdnyiw\nDyYsNGAj4pnOVxs36i3roSBX4iVvAeTC8v9RFFaugQo1tFf08PUQkzbR+XAj\n80MCUz4pRve3tlXytggTadakM63zR9izTvjk8UHAdTC7JHGJjchPJsbv7uKl\naG3E/cZmjVzCVmzn0ZPsYataHS1rBLA88RNBwWGVObwkYEpWKgNcOMnTLGLU\n/5ojdoTB9JKj8U0amdkuPx6r5dw7U9Q4GZA5mf2LGe+ay0ZxWjPl/ZOE3dQZ\n/kwEzXYCrhVv8wxm/xMVs7MULNSsfO25RcAzU/oIvnnSHP9lmQ3WJ9htWkBA\nJlm2lUZw+Az2YTGOzSJhI2HzFJztApFVYOr0mrVouTHmkNeA99d08kZojYg8\nXXj4y5HyJqH+KF0hcXfGSHrwZYGKINPFjWMM5/AIpRwYgmACmwJIsB5QX2wl\nKXYG\r\n=MetJ\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^3.0.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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.0_1563899400481_0.08599593181988863","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@hint/hint-apple-touch-icons","version":"3.1.1","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"540211cab50ac67bb9057653d2c19291c810e5ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.1.tgz","fileCount":14,"integrity":"sha512-zsy5GzpWNKqHSNeV3Roprs+n/fmwgncq4ngeY6ni38kqQVN+axqMn8fk0zFTJ7HkzSKnPXBpy4kw3hsNwvjCFQ==","signatures":[{"sig":"MEYCIQCVrl6yuWYm6ro37tKKkknrmpwvSmJYIpHihy+CacQ0cwIhAKV0Bghs5ZNtFWBGnfqJsBThVGsmAS4+bgxV9TZj529s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMr5CRA9TVsSAnZWagAAFrgQAJ7hOf58dDDD5+bXhDIu\n13DAcGQA+VnSfiEHYlfqoXYJzQxNqJixUoKIV6CAHvYi1ZBoKmthQbiUaLQ6\nhAs1eH22nFFpYsZXPMhY3/BTVV6johdhAM78WxhiRl7L6hIhZND6H42qgieU\njALIB3sDnKH51IHiq4ETB8mI1a5WXHsffCboeBaPEPtKha0MEHfcRCo7Rjrw\nxL7vbiRUPIHiSAITBY/Na9x02kwv1H7fxuItHEQg6mx73bnKJ4FcWRMGauAy\ndfZNvGR1Guk1XZRgqL0NNkASCFBf/GN/8UEKL6gSrXU4YyIjiZKFG+EcXqNL\nNUDadWofOFHJr1WL6fj5fxGhIZaoQxv7q2bCIhml/gYSCXZy6a16B2p+Z13Y\n0472hQl/aNNIStnfNsIhOtNNRv6gE/lcpvhyvipJXpNUAj/iA1daBPUcKg1S\n0alq59dZ3ASy6cUwiBvgRhlRy9eMcd45P3j2URtWFxnCSdgwAc4Zv3A3JeUj\nea08I44jMN4uDwTesUR6BWYcer2h6PfRVLvgaNE/YDwS21WmwB6GPEz8N/mu\noTwTp7nsx00UY2PdIdIHk7oG5EDRG7uOjee7AhA6PUJ7B3VOA/0OxExkGiEI\nHiPZmUwPbKw0ivSwX1juGKS+0CubzBMs6OsNDd6gUp0SdGl5uka8siKZLYis\nNFQL\r\n=B2Kp\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^3.1.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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.1_1564003064506_0.9440983740679292","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@hint/hint-apple-touch-icons","version":"3.1.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"407c7b8f76625de8232629f9625a1ed87633a36e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.2.tgz","fileCount":14,"integrity":"sha512-eCPC2ljojO155S7A5yryNwbh/ees9MEbLowgrBJMIH1CbJl3A1IQHfnqv+w/im4nf6THdflBSC2DEFTgwDXldg==","signatures":[{"sig":"MEQCIHu+1xw2XX83G7HR574h0lthoUJlkn7YCURyffURrsR+AiAhVgbTm8tm5TLSEcqfZPUleSZaXzD3p05aBUGVuqLFBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJpuCRA9TVsSAnZWagAArYQQAILcAxsPXt92Z8fNa69F\n2mV4uVs8HKLDZqxSKdnJWGpMiBKs6+UkD6o0Ep+bkJm7EV5GhIBYwa6pGG44\n7Ih9KbclQhTJPRITgEUsEr0bA/bN7o9bf6y5dRtZ0TRuO7ma5uCx9BFS/UWu\nHyBxsOzW9jFZ7QFl//QkLh+446vEb9cvJnZDrF8k2r7dyExZsx1Oa0TC0jSn\nKj6ilaDCeLAHvhp58QJGgwwqoEYdSQXqS/QrnLrsxh1ulxLZ1BUtotACvFvY\neSXz99GWxugNPogIlAofs4XMSZtn2fhrCrluCjXMg/9n2D7XuO+sVpBK6W+D\nmjMXzN+nfGCdGbSooK+Nxm9XIszpj+VrX/9JIjNE5eq+9XoH3mHc+JvAkLjt\nict6PsfRp/RN77nnSkb/KNSMVtrFHXlqzztfMQaKJqV30uLDXr3WQVeW5+LO\nIbFa+OHz94e2tX52lNpqGfHcCQ5mRjHMtgvR+kAyF8MSdkb8spAob6dNxLK/\ndAnZnwjLToY+pOEV5/CqHwgdBKJre3xNqWYtMv0a46cynGk7zxDAIsJNSijr\n7v82kd3eUG3+iyJHN+f+exSXQPIvghPoIEqyZ85E7GI1BQP4wkvpazSRJph6\nm7RPZ3pVoe5e1V8ZRGfjwOlEa4peHFwfdt+Tq1/OlgmRVaBGXKCzPX6/ipvl\nU7lT\r\n=wqnJ\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^3.1.1"},"_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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.2_1564514924668_0.5860359720489239","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"@hint/hint-apple-touch-icons","version":"3.1.3","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"43d166de31266b4f429a0f842d271ee4094eaffe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.3.tgz","fileCount":14,"integrity":"sha512-iu4PaqRZ4XPtV/dT06q26wBaSh87BC1odeUbOFY66swStguSyGtuUn4AeBA6M6kAWFMB1Rrrq+qiOZ4LT3NkRw==","signatures":[{"sig":"MEUCIQDDMkK9P6BRbZ8OAuFsGlVExKLM8ilvG4+vmyBqTYwMwAIgJIEJNdt9QaocBEoBfx3QT2bNlaZL7fNYwk8lX/Um02U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeWeCRA9TVsSAnZWagAAxvsP/izBV0OhWQApWH2Nsgkl\n7Yt+keD1ClVd23kws0t83HcerpV3bnVpLPLW6ZHXKmh00rzBKzvXZ62kqjt6\nFTtaoMnusUz8qpSCgqA84rBA2S85t5TOP72MXSrro0TIY8x4QznRAuom2fVc\neiamHCNF9hZ6Ioo3OTvGamr14E7cQ17LzxgZtoCz/2dTcSK56Aiz1SbzD1+d\n8F5loBRZsErOIswV/clupA1X/hrjuFescEiJd8CcVMH3a76TnvfXviOGmCZr\n5fklj3xz5/kaArBx2JOElQWJSCpOnrvMjg3E8gC0LGL3Ste53XkEaftEoEK9\n2Y/Bu/a2cQEM7N4CYCRmt4j8FjSD+Xmm+Bhwn4+djbHjaZa9bGIbKbPZNUmT\neMqU8iwMEcjUli9H9wyn5F1+bbZQGOsqoOTtSmX5vrrkWGfdt6loKLMAjD7+\nRy72DjiUw7K44JBZZAR7JZlDh2oG52xr4J9lzQ4NQnQ21kNrCxHLHMFplA7D\nfbHFxJC2HBVdytf1XNsm5BND55mDZEG/Wxe+QHXYVt4QbNhPQFaeaqb4mDSg\nJsLM/Pvm6k9OnSs8aKQbgH4p5RSoXcdGbH4M/N8IxjSam6h26wR/P3tCcBJU\nH32eU8xzbA3j2pWqa6hAqNRD1C4jF6VupRYX0bBAab6zOM+/mxLbOO/7vmUF\nbz8K\r\n=peY6\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^3.1.2"},"_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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.3_1565123998114_0.8091680208194874","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"@hint/hint-apple-touch-icons","version":"3.1.4","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"6bb9dd34b8133daf77cbac7079a2aa243fccf824","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.4.tgz","fileCount":14,"integrity":"sha512-c8/AQbPX15oluSMtPGmiAG0ygDcdoHj37uV4gq+/ZH6YLtGpd81PIh3WIxSbbkwMTkecb01iV/gqhq73yXrpBQ==","signatures":[{"sig":"MEUCIQCrDOwDOUa9vJIPqn+ansZj6tqTqEbZ8LgC4AB0xDuMhQIgDTS0hfgb65UeCXqV4lbPTDn2r46oetUdMLT0fCPd5Jo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhbmCRA9TVsSAnZWagAAbXEP/2lFJtPq57n+D9975RlY\neiRgQhOJaa+4G6dLD5yVNKPCj/o4hEmA+jPztbejyG65cbN9HDc8tyZSi8k7\nX4wYf4QCxex0gEiIcrJvTArp3W8ob48YzWzvVjUrfLY4SuCjaEgfUEQPqMo7\n882iNEeWnoaRtXicIpt0KFh1YsAAxNDPN6SR/ha/cQh7dIBnkQ6ujK8FQvzY\nLR19jN3rTy5Oojzit4GaGsyktqrAW1Tej1B48KuJPo0D0MVScwlZ0szcpTA1\n/FDwWeh9sRN9Vrp+OTlIKeevkhMcm/96if7fsXVhbOL0Avcmei7PRM9pDMEC\nVZDK+innMYdLCRrglPxXdU2zllRq8jj76NC8EhoqDCFA5UxXjbb+3oavUfv9\n5hxquFppWGaFLlYwV9tkUzCRipodCUGuhb1OpHvsm1ao2ZcQDoHMcnnPzhgt\nfJ/t4kSaJpFZ9RwUu3KIScByoN/vevvO79TBHN9wMYMU9poVOcRaMLP0cKul\naF0wxhU8laBDFYtrZmtHH8NTT7lKP3+3krh/Vl5mk28/RS5Iqu9owjhDz4Mt\ninkwnV97fpXwSNMCw9Wekk4NbfK/wC9xzOFvZdFsFTLnQy4dmv0AXpKtSIA6\n5eQm51DfnSO2TG57xxEoPexDtM0ngTz6LKRbLaSZukgNnGP52AEaK6PpHspJ\n91+K\r\n=NpsA\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^4.0.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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.4_1565923045758_0.608849238815327","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"@hint/hint-apple-touch-icons","version":"3.1.5","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"2e69239d7599850bde92dc9bdba6b8d7e6b1ad75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.5.tgz","fileCount":14,"integrity":"sha512-PEsTPHfCRworYcQR8JXH4RQAf+KXS9/QxALZVzzOLG7/zbaLJ6woJ3YncaJKGttLBS2EEEegdXa8+s/tka5B3A==","signatures":[{"sig":"MEQCIBS+98h7+w8OdYr8qdBXmHue69hHB0JmpdQYw/ErxSAUAiBUkru3ovmWJ1NnY2ZX3DIztY4VoXHmvH9QA6grIr1cuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/SfCRA9TVsSAnZWagAAEVwP/RoMyvUptZJXf5JQf59a\n5SjmPZdHcptDmGULdp33gKbObsCOre8mKFPshmCPGBAAaDqHA5xkx9k0uSwP\nRHikHAjj8qdwLgZPSGAnKNg8oK2xlkFGBNYlIiJA0HmdGhoffCtdUFsWFhxI\n6COLryiuH5abtFArcc5pCdLY0922iZ6rrpFC9IAV9ADp8VELioQ0lycVd8QH\nMhbSjhLqBfIE02ufPkMA/qcydVU2swkmXTfB0XvhWsyNQCKXYo1ONen024SV\nW9TbpSg3iw2e+025hrSd1ju7SnFCUGPRS+3jMoGPEGNL+uSwmprv7NPeJqDu\neD/UctXM1VgmQ2cEuK7VGh4P+MP9Rj6UqXhnQMWluGtPqsP9gawu8xJwp+Fp\nfOWK+eNNPaP2F+C43TlgZfyORtfVPs9Ga5bIqRlRLT6VwAP8HB07pqE8E29V\nWO9Jj2QhupSpgtsvBHRu8v7SbBuaNh7qP5M4s+G0tceeBJjwETwc7MuZAPc3\nqWUADIn8PXqx19i/8aJcJpLpDfXk5/YOwQQCdnAn7p6Ucd3Wx5k/MXO8KXOQ\nwRQHGGKpTbc9HP1GT7KsmfFfkpEVwyTMZ46Wupg2gv/ka4DBGs52FxiTc75R\n4XnG5/GbGEyuL6Ir+VBy2gCBVX+x484NJ+hFakcCjrFnX6w9Iwq5uu6TnIOe\nubIR\r\n=J93D\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 apple-touch-icons","directories":{},"_nodeVersion":"8.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^4.1.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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.5_1567093918583_0.9540049506236847","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"@hint/hint-apple-touch-icons","version":"3.1.6","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"17e076603a2c906e0ce4dc9f53147137699bde6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.6.tgz","fileCount":14,"integrity":"sha512-TVTWNmYgH6zsseNmEADcJ3A35vqQu8VUbX2Ps0YDG6AgAO1gmYch2qbOtd2XOiaCVlQ8D1wzl4jTBVWmCap1Tw==","signatures":[{"sig":"MEUCIBp517PWeTcGhuTC259wku2ZrlUY2SBPada/Wsz/uOa4AiEA/a1SkPrC46cwrKLhoO2qfuv6PXKNzizWPDbOJhu/+90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXVZCRA9TVsSAnZWagAA0gMP/iBK+0rKkt/qAzkhiu8F\nXtlgtGOqvbbmgSmPypVcUv+ovZxpKB7hRnXoZ1ImQPuCVoESp8mNdDmbKXb2\nEt1menCzxe67p2wsxI/cb/iUHqTwH+mh4+CZ8qN5L5wEDjJv5PIZ4+9Lkw4x\nLGsecC3PEDnDD6oXqRCjRFKoScTgSbTK+Ip+zzm6aIZ1NRQp1suVb78HZo1f\nB/kCz8W79YQj9n5iB1A8vTdKsb7brd2Br8a/919xD/N84Jxc7Fy3eLiCv+o0\n69VtPfChuouPq/2LhMgULcSznRdcemPlCnblr03TpvMB7fWyJ9A0Cl7zMWRA\nmTo2cASMuN4i1SfNLp8/wXiyJhDiNMiRTXFbuybhO7/SszUbXZfFZX1/rnw6\n9v1n+uB2bTUTrKTXF4sdEsbUEH381svBGJrA9c/8iUMqr6N5i74MjoFEhogM\nyBKY+qkgS4vOoYEaUIS5aHH9Lk6nJQSnP5/noyBhs8i64NXlW18hvgrGu/+9\nF9EqPB4Z1xpUPiENYx0F95kT4iUzzNdc6rd9jcOXevNpYf3CHy3SzCp/3v9K\now/N/vXxhh+HhjVJgpZO9kOCVuJAhgAc6cvSPgXLlgIb1oKTRsD+WnJwo/zb\ncT78+d2w50vq61HSz3JM061PycSj8QQ2awo7mjIUC+BVTddaQR1REY7MOQiN\nl/pL\r\n=dEwQ\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^4.1.1"},"_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","@types/image-size":"^0.7.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-apple-touch-icons_3.1.6_1568240984434_0.7274879561741645","host":"s3://npm-registry-packages"}},"3.1.7":{"name":"@hint/hint-apple-touch-icons","version":"3.1.7","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"18739f154d8c849b07189a9ea31cf830a7d97a37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.7.tgz","fileCount":14,"integrity":"sha512-VwbzDP49POFeEg0azLkTDHF/WYuGciUReKKuqyEQjVKg71UpXB0UNR4/vAaVWErm6/zK0ip59QlRXFXm9Qh+gw==","signatures":[{"sig":"MEQCIH6j1xs0VzvLPgbIPTNp2uhEwvyRq3yuBart8mCmLSC9AiAhJ3vxLDj+vvmPKCj10LW7n4jlDfvV086KwUL4Vbzw+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8llCRA9TVsSAnZWagAAaJwP/AvpX9DvXRRX2BX+bTIE\nH4aFnhGQm+m+GRQMyuYcq8bZq2gOCHgWgRAgBRgKn1ixNOhSTvAwz7ZuIg1m\nXACsw/2AA5zg1u/808qfax05UHHsYgQa1l9cx271zIFc67bDjk8KE9vEFpwL\nQ3o2bhaZ+e5HqXkArWkVu3ijH/uaFKDyc3MGP62VQacEJmXXyd902coUxJM2\nvrQAXCU/C9WiCZLWBaDbhSvsA/PLeUIYsx07p1UDyJ+5VEm1VgkDvHiwOJxZ\nVTkaszXVKeRreFKBg+xtOMj+W6pQjMb5yJS+Rqbi5IPdvzsVe0SrnLwktDyz\nsGoJ4LesKtQvjPLLw3Crf4wVbyiL1yyuHPrdJNu3M6rqVL6+4oi34ktGXf5C\nleSWtWkWmVfM8CzJosR7iNB/covLTKRssCtXr82CmW7cXsFirEmy0GZMN2st\nAiASjIK3gTA5rGPGCxXu/gqVQhMOucSibGL4LjxGoXjY3KflwI97I2xLmZr6\nL45CK0Qz4Y1HILNh5auWYt/vYYD7H9mSollxJNDH6lVrXGkDgfWzWxD/UFKn\nyBaKWzPibO5psAmVasO0CRmEUcC5haHgWfStjwYOG2PrapT8ULxf7sq6E8mZ\nDh7COeSp8QkDd42gTJ/REr5XZHhIUEY0NulJD1JjIVU9Wjap1jT2Rk3RHqxW\nsrhM\r\n=Jfzz\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^5.0.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","@types/image-size":"^0.7.0","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-apple-touch-icons_3.1.7_1568917861081_0.22182025333287858","host":"s3://npm-registry-packages"}},"3.1.8":{"name":"@hint/hint-apple-touch-icons","version":"3.1.8","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"3af20d957bd7bc53c86060aca54b4a09f52cfe2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.8.tgz","fileCount":14,"integrity":"sha512-hE/uPSfH/Q2TOb31UlwL8cRnlwbnvh0mt5qXoNOaIJ5VcOSUPnO6y3ToA+01y870CkiXPZhtIk54Gv5JR2bMXQ==","signatures":[{"sig":"MEYCIQC6m7bQioK6kSQB+GEQpwCjVlcEIY670j2mloM1jsongAIhAPMr7x4Jjwuvxq1AkW+3gmf5XH3PqabY8LqVXdzXJw8W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim6XCRA9TVsSAnZWagAAL54P/AqbTFokzVyRI/mlskHI\nZAEE71zVIeBRRR8H+QvZ0n9VX21TJ8ZOLzP7/7KPFrAnHdHK6U3IE99NuF7E\nwguYLo1wDdeY3r7xzhLhuFL4MfclvVLd8FqVRTcQGbKsknjGdBt2H7rdGUHt\nrJFioHkQNIfo84JpLvFuv1WhR27wEwHqk4kQmHqmJMzP+Cw40yLVFuhRFJ0y\n7Dqu6O/2Us5ELdvhv+9oK1iUqTBZ7WHGt00mtnA90glyjwUto5jgsSc2cQne\n+hAegwgKZr4FbD9bDkj0KtdQs4GQ3f6/ir54bbPrjDIEIcX1iXMT6xEDavUH\nYw1/7OxWMn9SeqCfjZuB/vsx1Af8P6hwEKdyTlHTnIGliTYEDLffVvEGq/ZX\n9X8WtheeDJAXf6FwgFP169y7y8+TMHDn4CSewRUqw+X+I4xmlcWpp5+725p9\nSDhdE6jB5c9HkBR8tPwfNlFoNsoTPO1haO8iLwvu7PVuEXInLTZP+DngznMf\nwbeJfak/Y+G2ju+mieq0K12z5IneQFGs6HXPLctnlhUTLACbhNUII7xH3UnP\n7sEX7NjcgrkgNC7J6M4H9FEREOqq75fQrmX53OpyEU72/Gv6jMRb3n0QPgQO\nlVV5sqdM3YW6SX3jOmroz19aYmxKE0P4SNB+cPd+B2mubgBnMNWmcF/iZrW5\nufvS\r\n=+lFs\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^5.0.1"},"_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","@types/image-size":"^0.7.0","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-apple-touch-icons_3.1.8_1569353367058_0.42228244004890936","host":"s3://npm-registry-packages"}},"3.1.9":{"name":"@hint/hint-apple-touch-icons","version":"3.1.9","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"864dafe571643b7405ade54591356d163c708c58","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.9.tgz","fileCount":14,"integrity":"sha512-dkeSQX8adW5Zvug4t4NLzTaDvMjOh9Xh2JS9h/UT93rqynD5M2yOhsD2m0IgPCQL1CFIl+FA53AUngEoNwGNVQ==","signatures":[{"sig":"MEUCIHkiTeAmsTSv447hTxb6gf/7VMc5Be4EZ7Q6Zoy26Xp8AiEAyTqSMbdqtaXanEEq4lQ9ifUlEEX/RyadWnqyTK7dExo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSsPCRA9TVsSAnZWagAAlb8QAJcSgzfXf20vrBpR5MHS\n0w5Mh8fe4qfT3Slewk8rjU9zdHKQkxM7e1zJ3LsUAywJqor54LFqh7ElE8vA\nTYAPfOzVQAXXDlTiJJ4l+NF7YFfwB5C5WeJ1p8mArg4V9iyrcH41asxdspV9\nPdDEO/Wpp/rzqso//asHKniiewOol5RnVqJOqkb/f02LqV9W+xOwz2/l06ov\nistIg1fhX9fHl7UJD+cih/Ba4i5dZOhtl6hZOnTH+u8MQyYBNhqwA03TQbUu\n7scNz5l9jw0NQq6vcndvQWMwJ73fxg8uMMiaTMPgOyAoA9RUDBma8dhwsC1S\nPqpi7nze5gi5VFCyLWLxuMtbcjewYmRbwvsCxwn+10KXwrR+Jw5Wg1ApOXPI\nXGjNSobpvd7U2H1pnfZMNMV/S4iJ25dbgdoFbnuW7ssTetYeSdSznhRXtVgj\n1VTlW7tcrV18DKLIweF+mXlU2d1Twnl/TZoWHhQ0bKKsoPU6B5DXquwwUIW9\nfHyKPRgdS+z4ROhUWtacblwdIakoSeNVK3DkoVGfIk5hRmxkOm7J/40BOWPE\nc8CC/umLjhtg0MNYIga9KwRlS93c2fLqYIHuCVG/IJuBXS9Akj8ssAvJ/VEe\nRqLS3fbjPI/DcPlg+849ykI3hETGyazK49TuiLG6wGvfh6U2VS+r76rukBlc\nNiKC\r\n=7Wo2\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.7.4","@hint/utils":"^5.0.2"},"_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","@types/image-size":"^0.7.0","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-apple-touch-icons_3.1.9_1569532686860_0.48023011552146255","host":"s3://npm-registry-packages"}},"3.1.10":{"name":"@hint/hint-apple-touch-icons","version":"3.1.10","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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":"85ff882d2344b0923016b19583fb551859d579df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.10.tgz","fileCount":14,"integrity":"sha512-ykdOpPb7xlN2gndKpJ+9PXz2GNqwY9mGIh9RSCc5a2xn4shdKRWvB9KlbyZNrA++rlYrcrHuBm8R/i7KOR7DdQ==","signatures":[{"sig":"MEUCIQDqya1VXYc0SGkHeouUBC+7D+1uvrluiDUS3B8TkhuZOQIgNL5qpHgpUPSQnsT8D64HMXs6uGKWf9Ufq5fPVBx4kPs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3LaCRA9TVsSAnZWagAAR/cP/j1Kq/q9tS4XxOYN7vaE\nyEAa1DIxZfajh93RLv6GjOZhngPHT5DLnD2vmD5tlJS+3kNMU99rRs//+QIS\nTyHZekFm/iHA1IiUnAlRcSwZupKPOvdn/F9+VNLRc/Y1k6gg7OazU0RGmzrT\n2BOc13acVDZMgIGUjr8K116fqL8ihbuCsgJ7y5ZEzkWoDONHkWKTaXDMmXnf\nNvAh2la8qv4bnMQFMNB/KV/BcL+Lz51h3OSkCrc8/TTqm/EBeih5QoNk4hl6\nYaGqvOjRt4JCNe4zFMNVtzL3KC6iKd8upswWW1+y0xTM6N9nZXwo63SX3zkm\nUCcz8XYgGNbbys+JpQydbFiKCm+MgnICytRBMR3dKiCAIa4g5P5qsJcVZvN4\nQo/Lu5MDmXM3G7Nl3uJ7Me7yTLjjDzCHIGDHo++11oNBXCsDeLkVnYINFVVR\nVuFCMQ/5Xw3yk2tFFmbl/3vie7QwrwK9ZM1KcsbvaYkiTxh0jTzKht019N/2\nv76+CE0I2q3MUf+M8TlbLpiTvBnLp0YdR2wVDdsmEQ/dp2qpaGNpwjx4Usdw\n/kUbMd6YvcHVEMj1wXPo+o5euzxMOBbCIN4HV+1FtXCAlCLJ0yYB4eWJB4m6\nhKr7KAjR+VjIZJMfylGmYSVQ+Pu6rEt9DjOBfXYVX6WIsXm9l8OCMgaUQymy\nW+/Z\r\n=vIZC\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.8.3","@hint/utils":"^6.0.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","@types/image-size":"^0.7.0","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-apple-touch-icons_3.1.10_1571255001747_0.05512537078011337","host":"s3://npm-registry-packages"}},"3.1.11":{"name":"@hint/hint-apple-touch-icons","version":"3.1.11","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"dc344c02bc23592562876ec0709d7452293b92dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.11.tgz","fileCount":14,"integrity":"sha512-W12fXsU0sqi1uzP0+05UOSmZtfWjlgwnSJDiE2iyFhHVCfP9ATC+1yAV2ozGi/LStJqJoo1qdjRJkCxbCCUIxQ==","signatures":[{"sig":"MEYCIQCPb/qPjpw31WXjzi6w67WnAjRX9UezzlBtHO+KApYA5wIhAL6RuOj66eK7ek1MjXo+4hV3HZJ0MZmXjHFkKqD/mz4N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL0JCRA9TVsSAnZWagAAriUP/2yahEtQg9ekw16obP7C\nU9vCHvNGz4uWQMNJtmZRm7UIPtf+aZ6dC9IUeOnmQOuD7h1Gk2wIjQSErRLk\n0GrmIY0DWeXwhavUggal8Ru2sjuDjl1wYggvOGz/9gxohBzCuJ4wAvbz4+Y9\n3knRaAX+o43q9/oxN+mDef4gs/jS2lay7CWlBrPM93EF622LqzoTI2wbWPdN\nZbog2rkOiDLllvLjbj9nqUwmoUkRi1nHE+57u/RPRSTPonG2P3wXabCdS9hy\nNZd+thzjddfASLTrpA/0Y6VU2524YKjmlfSodCpP+OLhFt/B3vIXaih5DkQd\nFAMpn75F89vW1LPqoVJGXuEgdvlKU9lHtzK0btf/O1PGstUVC0e30DkmlmNT\nIf9se2S4dwmGjcpI3h+V6EzqDOiC53CTfIhIkV6GN1bJ2CIFngvhoQ5RPG7T\ni+5k4tnVH46HhA6AGNhvObQBup5z1ekeSZ+wrmOAj/hGbxZi2elkL5QaZ/Pb\ni7+ov43lsyz3goCvHg0ljSNf3bPluHuCKK3ef9RUlSIgNHPxUBd2RQ8LBgot\npqSHR9RU2l5ocoJS5YYAncx3wKAqzd5T6C3g+3oCJQXKkX/jNhZLO/jJu7y1\nPfEZO9KKRQBPMQbrz7whXwnprXeMCsdepKBQw0LbG3TQ+s2vXZA4aZyWlKFd\nW07E\r\n=sB9A\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.8.3","@hint/utils":"^6.1.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","@types/image-size":"^0.7.0","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-apple-touch-icons_3.1.11_1572388105062_0.13019869914224413","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@hint/hint-apple-touch-icons","version":"3.2.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5fe7bb6d0757e4e763905cc7e77fa3121d4f9c7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.2.0.tgz","fileCount":14,"integrity":"sha512-EFXzczBoV2rQRmGqu7Th1FeU490GtuGKTlARZ+QhgrijGuSDZkmRqXF1JTDLSv0/nDkpg9gIip4i2egTzWcRrg==","signatures":[{"sig":"MEUCIQCOBtKUdwGgMpKgiSa0KKR7S1xlL3fHy1qow/fFFvi+NwIgK+YxsEBFYftsYUwNic7myhlFH7C90kGr06hmPW2LzC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bPACRA9TVsSAnZWagAATtIP/2StMVwTZn3Z3JOTUUEp\n7LtdSneg5KDvJoUXRedG+Etzd0X+G+8e66T9cGgHpbmIe3q3daqB0eyQPpmn\ngjs4oQzY4ovhC0FU6muhMHt6Thk9of/Q0bNveSKDEh+65z6JGxwTJXXaKb/O\ntxB4acNLtfKumJCklcHsJQAsJoTMsdTyg5YP7dXPiT88m4Iez7eM8zZD3AXw\nB6v7DQeFInMDisKpmsc/KiyPCpTF2pvRdWMrXdemE+y00GqPU+0814diVx5J\n4aTorpPRAoOfqp4TpolCq1ic+lQpAhTTcyGV/vhCWbp70V6D5NegZjTDALG4\nihUk6pCdoA++K6+82NDbwfaYG8IUdzAVBMZbgQBHl/woEoxvj8vzeJMmRWSL\nBwVan4y+ue2kGAZuLhXW0JvW/uyLTtKOigdEqOkmxHOsw6woUk8AIW7nu3uR\nxJJ6bDAMVQ6w4AUEWFTvbCc3rUuiJO3zSVlZ103Bn/yOTWZfLwKQcCTi1mP0\nfz9QOlYIE/AIHurS1EHpBGtcHJ68kXf1Bct/IIb1vBlhDCPL/c60SoMH/RtX\nHR8OtN+NFYU+MSpl1Uk+jWiII713/PzBRymGJS56BNY1GdKSSI/ws2N/syfy\nMWdDuDVh8F0tAn12dWMmBNlWFzw7OfrRhrNO/U2EzX9piXseBjehsHMyVPp7\nNf4o\r\n=Pf9t\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","@hint/utils-network":"^1.0.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","@types/image-size":"^0.7.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-apple-touch-icons_3.2.0_1575334848221_0.32652828228039743","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@hint/hint-apple-touch-icons","version":"3.2.1","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ba96684641efbacfd3479dfd77953f467de29e95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.2.1.tgz","fileCount":14,"integrity":"sha512-DR/X5ULjUtux3sDSwlJL6NH89s3dc+IFXKXqt9zekNkmfc9EMwMHs5fm5z+6pKUzjxL58Qh+GOQfryHxn7E1wA==","signatures":[{"sig":"MEUCIQC4ttd5AqWKZc4zfbQ2qgppwfbV5Ztd5gDDZO0YeHfnAAIgM6gdaaSTjzJFqSg30wyvhJiLUr+LB1d3TCmTK7x8cDc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E1yCRA9TVsSAnZWagAAEZYP/315VuAMZnocVsmi2mVY\nZBLI2XboaooUY2CxpGvlsLaL3bx3vxTCFxXbm0CF93ITEdkkciCvbKCnWo1v\nSnhGmuKWJrraskaAzDKzUKzjUSLVGlueF5m4eJL7i7fl8ce4PvdRG/v9EGLG\nFhE9+jiiM9/q3JFyKtsk6iFH49H7TD4V4qjkSCfa8Ff5WjyBoWSvBWPCRPmX\ngKCLyxBe3YGw4jEVFNpiYWOYY8y193YxWPXDda1NOJy/Q708hboKXHiZZpIu\nP5EgjJ4vfHgzqB/+VAtvzh98j3lCdtLQvweiHJ2T3xSCxoZno1q0ZYxGCPlT\n7pwNT1yGkMUwXv6JGE2MOPkDGgvSghrYlwGqCCZPA5FZmeuZma6zZqMHTaVn\nPMuIe6HzJ6xolkRNaM0yfuCCy0NO/ecCrk2y/DRE/4UNO+iP78O/nDU8+ogc\nBx9OxiOn4hUFUwwByNj/mW34ctUm9nFI6aJ+y0VCCdMCuTvsjHCuE5jzZGai\nsRCoVPKnq836hsGsUNKXJJSavulU/H4OnGY7DxJah8c8/aM5fCz0gHSQmFCP\nPRtWzJFpa0drLmCHrx4/yGCFFLbmhVaL3ItUZGmy1WHBpMBEnPE8FxYpwW31\nY9AT0JvS2B+rLOcVXnQ0mYRwHid8kscSfyo98RaJuRx9q8IF7aQDr3qnchzP\nPSL3\r\n=XCyl\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-apple-touch-icons"},"_npmVersion":"6.9.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.16.0","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","@hint/utils-network":"^1.0.1"},"_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","@types/image-size":"^0.7.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-apple-touch-icons_3.2.1_1575505266386_0.2867146653641566","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@hint/hint-apple-touch-icons","version":"3.2.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"08e7e47f647dc192b42eebb697f109fbb1f5c85f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.2.2.tgz","fileCount":14,"integrity":"sha512-fQzgn/4ecK9zncBkBG96lj55+BkHmlxkwOv8z5qAyrQ83Y2aLxWFWl/eSKLPpWffeViz7YG5ZwkQtD9ii07oJA==","signatures":[{"sig":"MEYCIQDF0SLxRk1ElaYvxObm5GJujkUQYRNMi1tqw+m8I1x4BQIhAMb+ilH6CN5gyYkYrL3VxFXHZKB1yk1IODUh88CHHYEC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecph+CRA9TVsSAnZWagAA4pwP/034gmv+5SbkrGoSc7Vu\nmVY0iZiVfMlrPropc+AHzrI/yp5dKoNOW1TFHZ5Eo9KVfLwDnaM0ho6lSYwG\n5Xf9ridXqsJ8B4jgwz+od/trS6uM7VZnUurPM2HoSVb4//jcO6it5wKPbp7x\nVB6X9rVIF6Wz0tWGgNeiGrD2Pot26fFzEv4gCxmHTtt5hddT2nYoTSD/FHx0\nzUYWANLyxPu4Fz6RZgT1hvxiiITlvapG5fhejxLe2f4hhUYAfU/5Tn36C6Ha\nFMP3phw/M07qT5OuzOm7aqTVm1dL08cuNuTbU553RemAiidpmejGVxBKnUHw\n/hPaiN6iKBI8I5DAvnGFq+GhGa0pVRQUtyNkVGFBdnuqDsnh1JpkS743SdOW\nFDBh72x82ayZt/FGLXh1BrMevGFwkRpcEMYuGLEYdgfeNapyryOwaTRICiF6\nvW7QsaYqKj10+eaPj89bRRZtRD77v5FJTYTcPIXvF+1K3lW2vvJNIR/IAvqa\npU7WZDOlHXbClKusZhtMvi5aoxnolPHOVsXhKFiTUQy9NHITZZbp3AC42O/X\n5y/8h0raghVh206WmtnKcVaQ+vYSrhP5nvmjE0XYdFIQ5iR0c6PUO/FrrbS6\nfUCz/s1IpVA1xrEQdqqRWeEuRGwBI9uiDL+Nji+2U3ACtJuTVMMPQTsE0YOg\n3YjV\r\n=YlU/\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-apple-touch-icons"},"_npmVersion":"6.13.4","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"12.16.1","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.1","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.1","@hint/utils-network":"^1.0.2"},"_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","@types/image-size":"^0.8.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-apple-touch-icons_3.2.2_1584568445542_0.9889327129034731","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"@hint/hint-apple-touch-icons","version":"3.2.3","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@3.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"73820a66b32f187343f8f87a8592fd324ee68800","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.2.3.tgz","fileCount":14,"integrity":"sha512-kJYmykeOQCTP6Jc8ldmsqdb170I3GCt/RQLdhCTsGjRTeIVmOIrOgzx4Om5SsjQBk5JbZ5pJ7toVwBPJXzg1nQ==","signatures":[{"sig":"MEYCIQCt64DHyBUvy0biytCLNRUm7kdwzmOx7uz97zIXnLSz+gIhAPkkkMF+RYAtQ6ozyEW2o423cld0XWzyjNbTxen9pVes","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel13SCRA9TVsSAnZWagAAvlIQAJwC8a+cfmYCGlbINVSg\nLZxqdCNjGTKbm3WhtmvWJL+mtG+hiOhhQdPy6mZyCa1191A0tybOwUPTOGC4\n5m58JM8nq4lErIvbnyPOJUi7c7AQNgULJqn/fBUtWf226i7fLd7Dr2pLE+pz\njuRUaz3ZHX/36c6hJU2DyQGKjf+4lFtfWXSS/Trcm0F4PTVq6UdtA3OtSsNU\nO2RBKF+oQImDJQStLw81FO6pvFxVgTrkDX0OcKJPUEypO32b2oeDnc91vDsm\nShD6oMLgXiZc/lSCvHNGWHzldNOlVFuScJ8emYcHDPpTB+sB1IdkiWjcWjtl\nl2fBHnIap7eUOloBOW9GkefiBet6yZmvkawFffD3G4Uor638qm0FC748wbwY\nXKbRLb4q4NZ/dlO/Cg4PxqKGixRTN/fnp7UVCk1EzojMVWl6yw8u2/jmtJ+P\n8QB+bOiceeVZqvJ8a7oZl+NB5eWgOYwbKvCJsmOmL2L8rhHdZad881ey2brH\nEtBpi9mlBDtqGX9gj/1Kue6lM90q34Yc0H7W+7wJsaEkg5wgfzi8LA53DCDx\nGuGBukMZ0/K76jF/B/4NgtSS6L5tIUHmYPtTijEXXCoExOnleTj5eegJP/b7\nuggXfQ4eAb+FPaQXFkF/LM4bRR2ToBTzOM1ThTuXHsXMdSKrYXYumuIlek1u\nd4TE\r\n=XS+0\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-apple-touch-icons"},"_npmVersion":"6.14.4","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"12.16.2","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.2","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.2","@hint/utils-network":"^1.0.3"},"_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","@types/image-size":"^0.8.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-apple-touch-icons_3.2.3_1586978258371_0.3684802267522911","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-apple-touch-icons","version":"4.0.0","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"40860984e429decfa669f46a969087b1b196e31b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.0.tgz","fileCount":14,"integrity":"sha512-I2HJAcP/a87FiHtrVbCwp4tQ3GU9uv2Cr/A1ja6b9m/GJeS9yKQ+GxIu/XPLVV4gUWXDDwhrG5f6ypHIXtcusQ==","signatures":[{"sig":"MEQCIHW/M6JwRSLnkmM0XZIGPvmoRWCvX1DR4GTsupreAr8XAiBy3XSM5XGU/nTWrL6UIFZjVx+rtTe7F6101RJRFIb71g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58434,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwjOCRA9TVsSAnZWagAA3p4P/3ZoW07F0Ha29lH/DIld\nMfwEv86zvy6yYekhxOXnjqSTkTLVf8cDZo3wwwLYVnQJI5cnGK9fcgu/2A4E\nH/+M61cc5dRmENChVYjkdIZm3llU98wf0eYy/J+GCquUUhZgbJlhfa8nvtIN\nJycn4ksj/6kSzikfEQnx+hP/aSz2g+MF0xQTkey8ag8Jc/sP2Hg1nNG7IbLc\n5WB6Mv3aaoabC+gqbSnQAbQfnC3e5Z7808MrzAcoMNscgXOpZDzz+Qx/Afsw\n7v1XP2oURBOi7P2cNb7TtilJ5h2051ExvmKjjODF5gL7LxPaGjs1Pf1PddjJ\nT2wTujncv+lTQiBzdJMJsdMztN20EJFvv5v/k8QWFZlQk+eEMOIvzX9R7VQo\nNRbO+2z97eWklMITK1dJnCY1HiW01ZjJFLOy5248u7q8K8VbvoRP+lBLbhF9\n+fRmRqflgP3/hdQzPd5rGltgcr9n/AqQZasVzrJoTaAG9Y9nBv1eVHextEGk\nxjYATWgbpsJHQQ/t3+GGH4J2uZyI1BjVKsHASwmN7NzSbUZ7qAvYozMEH5i/\nGog3Ev487BUPtmt0KAOOaFES7nJXb9hM8ZVXbRaMWz44HRqcsRl0cJLfEPEh\nTxnjevIN6emuAaoZz/UehW6WdfcihwGKh1TdqRbNyRBk2/uon6f6bOnmTfWe\nX2nk\r\n=VSXD\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-apple-touch-icons"},"_npmVersion":"6.14.4","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.19.0","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.3","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.3","@hint/utils-network":"^1.0.4"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.0_1589840077424_0.2852940601614884","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-apple-touch-icons","version":"4.0.1","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"35f4bf4785b21334f41795aa6e6ae1b77504c9fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.1.tgz","fileCount":14,"integrity":"sha512-d0IWcJkS2Jib0N0fUdilBjyNtcB/Pm/CzNc+oZtWgNxSoKjvO+XXRHh0tY+OWD4aM/JXjsiyR+Bf8zCbSb9sXw==","signatures":[{"sig":"MEQCIDr2/hSEQzI8NrOPw7zQoL4zmUfqAp3Cvh6G2351lj3+AiBrFMSIhC/MTHVA8KDS0vW1zz7AvxvHkSX1P090ck2KfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzqoCRA9TVsSAnZWagAAdZgP/iDdvONxg9ET887P/br/\nR3fcdSS+aSbrJ1H11sk7Vd+zb1kRNYPRnl3HL0EFBRQOfJYmXjeD20H7Puf7\niJZrhX9PFvjsVFgPIb/IKa6aaAti4dYHx3KwXH5qCPrpazXwz3AS1HOcG/GQ\nJY3Owu6UmQhzBbHXt56SRixKawJJiYZPi3e9balP3cMkW+3tDsirntm51APa\nkfvT2b/a5xporKUBwqJJvfpCiodKkCch51S29UVd+J9Ld5gR9dzVqFh8P7uY\ny6P9puAKPqz+BBKfELh6TLkFZDMo8k8gGFRYJWi0ptczYrvJQwJ6b6fnbXqm\nxoINt7jwcT+sA4hUQuXuk8BTRVcUC10ZIxk7EFXDjO0TNR544oMqZjNccEbM\nZ2stkSKWQ1r/FWJym8A72cO7c1QMKOq3RzoaULGkD4TsGsWLqNGw5Vv2rGAe\nf1kYXj+e018OPxZEpPjR2Qiax9CEFfKfm1f83u4C3wYfZKPnRd0xjLRZOquF\nPrHsJyKFDeIsIxIxgLSetrRWTbw892JJU967PmWOz4Vfif3wpWWiHU+rUQmN\nG3w266gttrAqKTi63OM/Bgzx9rK5OmOQ2Twr89yqmG0OxRkptxNNTpkb5l7e\nhtByFk36WPfC7v3ticwR4Ejrc54ROEHBU0w4cYTC2HbCod7bO9qR4e/lJ0fO\n/BDR\r\n=6Ham\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-apple-touch-icons"},"_npmVersion":"6.14.4","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.19.0","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.4","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.4","@hint/utils-network":"^1.0.5"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.1_1595882151962_0.5761589670847624","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-apple-touch-icons","version":"4.0.2","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"165c43c8517eadf863ab94c4fdad025b88e0f23c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.2.tgz","fileCount":14,"integrity":"sha512-FtdyNOPGGQ7JSE7S6sG4dBcx4ThBlvfDLcHCLr4MJqipfhQlQDHRRQ/GUvv0YMS1nbZvCwId/ABkBWPV8yFlAg==","signatures":[{"sig":"MEYCIQCHHFg6rPbVwB88xCtp0DuqkqBvcx/1sUYYeDSkoEsyJwIhAPFmVZg0ALEcU6ICDsqlvlRniVeaXHIKtR/aIzrYMPeq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDcjCRA9TVsSAnZWagAACxcQAJSaPn2jz+OJKd7Kv3xD\nSNJPFLmpNGzK9biDsKH1tOS8sekMqGuMnnl+GsZh3OkCD362QcfyVzGet/oZ\nvP+IgnEOGMP1ZuJPZZ8mTVpaCdSFvw1nCrZhsPvYg1jR15o56kugWgOGw6tj\nwl512yevpKcfAfERe43KWONdTebEt/0H/q8/EZMWGOsdSf2p4+2wx6zkbWEG\nTgQuaZVh00ZcYBkJ9xm7Iumx1Xd6CXAF38vXDwOKuilN2/io7g6xnIFu1B1k\nkMVHviVInzvvXKLpWg1zJA2K2nZs35ytxipLyXHlf9ilatkdHPzW8ouVrmah\nrAhWeIjuULvPmTmvNbUZDdsKBNIgKHJ/L67Gunnq4izwppvvQgbPLETXzkVl\n1Q8LGkx0tTyqOa0QSLCuiVUCErunHQmZbnGLDgO3cgaxCQcIXrELPuZxG5Ha\n9rgTlFCBefY+irlFMeIhqR/7+Ymeld0qceCorkLKvrfd+zhMEg+zsedGBhH7\nLqw7v0WFa8HdDmpiVY8Mm6UpoHo90kk67ROpuiQOyMMmDC7HVgIBpEXpLNrm\nR8V/MYstG4MXuAtJnakGQjnVOHe//zieXOxfF4KPWBHDJ0W+Y5eMm/842B59\n+MvJxA5j9d3y/aY+cYGDVBxmu1JP9ZyjBpOjhvPUAs8smgOKNXIqHBUZmwqA\n6uTq\r\n=ksik\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-apple-touch-icons"},"_npmVersion":"6.14.6","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.22.0","dependencies":{"image-size":"^0.8.3","@hint/utils-i18n":"^1.0.5","@hint/utils-debug":"^1.0.2","@hint/utils-types":"^1.1.0","@hint/utils-string":"^1.0.5","@hint/utils-network":"^1.0.6"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.2_1598306083028_0.12178807051896512","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@hint/hint-apple-touch-icons","version":"4.0.3","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e3b3dba98dc1ecc0a329acabce8ff78ee9a7578c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.3.tgz","fileCount":14,"integrity":"sha512-1n5lu7MQm0yJ1Wcwi9IlWS8hzqpmtB5MBL+Gg2S8g+AJGUQi86rT8i+sN1DDyUW4UUnnt9/5NUulJh4v4XzTgw==","signatures":[{"sig":"MEQCIHdyKNsCYZc3Z26fEhvw4R0Q/1iBYGet1Ei7bn6lfN/+AiATnSNChB1uz9XwYmqLaFmz0NlFuuK6ds7HfdfDFVzHxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrExRCRA9TVsSAnZWagAAnd4QAJusHgJTpZL7CWCw8H94\ny7Jvz0X0oKkFhf5UaF8Zz4cZcJxRVswsA9LXzhIBtfod5YfP0H1c9vCNuGg8\nhYRkMirk4PgjhQy/AsHDimmWG7a2mgr2UPkfJ7zuQhAkyw+34UCTOCWHljjp\nMeqi/wOd64BTtam58ZPo2NncssNSn9lN501onI7U8dkvNqGkfIoVnh0QeNdz\n2slM0yc799ZuWN1l3BBwZRXO3onwuRjzeU1EgMb8ZPP5R0jl5+jzI0JqEKrY\ndOiWlUAQzAXfCLnvpv9OlBJzMVykLBbXctJKgbKXA2nLrY7XCDMz7RNXWq3L\nSgnEn6hXiWpkia0IUdEzDfToOq253JkxOAhDzfBTg1QtmRPuM3jztRmN4TaK\nW2FTmMqj0jd7IsCMmxan6PNB5ZwBKoM2P/I9m9jk2YAyp9Ij3w9iESNCS+7/\nIlvs9Q9Pzzs+hAU476YPJqCKa8LdSers5+JWzANLOCaQy+wLD6cAgMD9Qgqn\nGQ+Mo36TNighrT8mhBMJPOfdoBkkdi+bELUkDS+BXz5I3M7l8hF6Xi59hWgK\nEpdYkb73bGCISUbgID+hjIXZKAESwocpu/erhAusQT/BoEN/bJfFHOcb9nuI\nklVAWYzEwFAbEtS06VnHYHIR/CgG7POv5f9qE8aWYmXNNav6fEU28d2q9Tek\n4Q2m\r\n=bScS\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-apple-touch-icons"},"_npmVersion":"6.14.6","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.22.0","dependencies":{"image-size":"^0.9.1","@hint/utils-i18n":"^1.0.6","@hint/utils-debug":"^1.0.3","@hint/utils-types":"^1.1.1","@hint/utils-string":"^1.0.6","@hint/utils-network":"^1.0.7"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.3_1605127249137_0.201062027019818","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@hint/hint-apple-touch-icons","version":"4.0.4","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d8602ae19a50d116faa7a5a30e99f92ba64749d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.4.tgz","fileCount":14,"integrity":"sha512-NTnFPRaxtL5ZTou0iB0IchgkajkOwLfJ1QB33/V05A9SBn0lNrapcTRFPA5o4h2ugeVIB1tkqueP0gUH/KEHfQ==","signatures":[{"sig":"MEUCIGnWVt0ygltGsMT5eHC18D3ZwjkrKIWM6W4H2Eqk0/q9AiEAsbviu1WL97gH9dytHScZLqND3u60fg5YdVKto/aRM60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHErmCRA9TVsSAnZWagAAT4wQAKR2gX+lFW03YKOWKg5U\n2RYoyzb90mElHB/0yARBa74jpya2Cx6jO/VIOiNomk6X9qJIHlw3be9wgWBW\nY8MLosONErJyuhXFt3W22q1gKNvgMvuPT/hOp0mk+BcfOGaczuVZnIOXLQmk\nxhyB67RBWuS5MeDjXVZirhOQjmClSI8TRuttMoyUQxzbfR35ssT99W9M5r7Y\nPpEsqtqKcLGuenQwaG7TX2VZBfwTg0G1BesqSSeQiyNT8AwL15G3hnYKQHku\nXmoABu/ksW5t5motrV1iIvSYCK4Ws24vRtAzZoarjqISjrH5oUgC6Fli7LNC\nbFY8NwqGv1VjhaBmDU9+MfokJQSTv3RTxii4GkTkD50Q1pEQKbRW4fOR5uGL\n2E8Zw7duxGDr1bER4BpD+jZiXkKgMLxWK0mmzD3H/yAHvBeL+Yrs1yC/pYG7\njJd+CmGOzV75fSWeNKJ/HxdzaH8gI6W61DLuOmXTG3KbSsLe5jL0tARU8P4d\n5mmTb64XSPAmyzPVICqAO5wqp688kqPzbqvvqLpvFjCLFQWPAlJfjEsApbN6\nA/trA8JSwnfRqWfmFQA0IrXDZmFmu4DDzceUPAIPAZ0SM/OzwOgN7Q1WUFhp\n2FySxk4dcQOjAqyxvIHi4vEXGZ8eBHllCRr4LrX5MzH/hcQUl+vEF+xbXb0o\nUBzt\r\n=6zn1\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-apple-touch-icons"},"_npmVersion":"6.14.6","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.22.0","dependencies":{"image-size":"^0.9.3","@hint/utils-i18n":"^1.0.7","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","@hint/utils-network":"^1.0.8"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.4_1612466917646_0.7846669400354198","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@hint/hint-apple-touch-icons","version":"4.0.5","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"cc89a352218dfe93934f4839d6291b56a5d3fcef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.5.tgz","fileCount":14,"integrity":"sha512-jBYnj+6EAB+ZK/C7dYjnE4XcARqxSDaEhdOrbpvgvI+oDmvfsf8cCLQpeRhCDI3ItKQ1oZBSxo2V27y33QfVuA==","signatures":[{"sig":"MEUCIQCEhpEct4dVxciuTSHjd+ePIjIwsW3bb3pEFdNZni+M7QIgD/PIf5urAVANkj0j2dugl1FI7s4sXMd+7oA6HsMFRbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeWSCRA9TVsSAnZWagAAhTcP/13VYGxLWXHjM8lrPmDZ\nKynyNmvfhi/hfvhMbJ5DrSwsuustI9DiWreAOP2gdFiveUWs14cyE9gPJZZ0\naDWvKgpDDUSo1bmwCk5jhNv52UZF1DFwHiOfLqnnYTBxTunYG2zTUzzmE7Lg\nA4Ln5Ttc/JF1QUwhhGDd3lZ8Rz5MlWIXo2VlWRGDNKhdEkqoSNfHn7aUjJpl\nzA6ikU+r4+13/XQ9zYRYXvmBmfmGknSboFrxau2BcXd0Yw8rD5t4+Pq4QN+L\nrBwoJEukZMRTUuUvKrSGsy6kA5D318TOZviVyNqku0UWeBoAxh8glkvtel6U\n4tDwL3wrlnCDeeAiINLVAAkvANySGba/1aXYOHL3W6Gz3MfFyYRJsIKlMYQ6\nop309DZSXhXq6PEARZdn2ZPQAxhhrtx66dEFaD3sBRElrVoDkfcfrruM+F/Q\nrzAimJ992Twu5rtXmhf50jA5iIXXHZv4pIhtF+nqofZOPbWvFPscdI0EfQZg\nTK3+1VTba+17bUcZv40ZAJTFkKAt5Srr/+GlSQEfN1M09UOv6QlRmYF3aqFp\n0bB7/irDQy8Q1UHplztviZa7sumM1s+G8vNH2vdjVYL04daQVGNzYA13mUbu\nlZu1/zvqVDi6eMpFmepoX1zyxdksWam4zdvwR6O0CMMDAH3OPHRRopm4tXZA\n47Jo\r\n=ylDf\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-apple-touch-icons"},"_npmVersion":"6.14.6","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"10.22.0","dependencies":{"image-size":"^0.9.3","@hint/utils-i18n":"^1.0.7","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","@hint/utils-network":"^1.0.9"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.5_1612572050339_0.546855180744827","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"@hint/hint-apple-touch-icons","version":"4.0.6","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"491d309416b75594f26bf446b323ee0da8713699","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.6.tgz","fileCount":14,"integrity":"sha512-mOYc9Mc9w568LRYCOzyyPhs/cgwaF1MQopHCe+wb11Xu1sIOTis6IoMOy7mKTCxroPASDy1Pa/eMoWSXZvdJ4Q==","signatures":[{"sig":"MEYCIQD1/6qKrvgIM5IVPxfo86q2dVKnq+/fG+13YFumxGDugQIhAKnIGLg6L6izw84NxHEg/3rUQpsD0crz5HZA1hCdYTAd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70020,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRHyCRA9TVsSAnZWagAAUKAP/16SVZMNu5Prpw9iDYms\nbre46kM+EywIJAoX4lmpNDejaBgeDD7W0VCYsDW8qofV8u+L7bq9ltK0UIqL\nzzy+TVLebONqHhyxn12Sum38Bb5WglZXYf+yx2XmNNw87zm0nw9Uu7HtqHKC\njgWR/M474uqq5UrXAoCZ2V9sesYu9Yt0e3jt4V4pytHbVLCGTvb2mZ/PH51r\n6irx3bQYVMvmytkr1l+WLGWGBz4e2TUHna7TeYKDW8gPIYfbAQfxQxDTVZ9T\n/bQl1XFumpdWGvlPaVRuWbIgBJD1lYpcsYvz+ZdHKjdgxmHvomkyTrnB6UeJ\nadoJKvqhPMuBu8VDTV9/iF8NWUuES+OvqHUO0ZanplAtd9BsePtIsJHsi/uw\niQFuAeTrVKJ7s8wbdr+QtO9CRIuAjoZ3b++OcIY9Ehr0hvA0o9VuFoGuzI6r\n02T+Rqv8tSg9ZyL/y40i839L+vd2YKgV1yLsbGFQQbepZlX8eGyw3ZFi0MjP\n3yk5EnTw1Hi8Ml6EiKwW1ejZfJie5bog/+wFWaIX6nEO/Ol4vGfzX8WQL3cH\nM0DRz6O8DrrAad6rH5ib+Y7TCf2F1e4hojcBNJ1J5w6XAaiCo17NWh9Gbaph\npcuccDleSVS7/WsZ5MINN5Bmkn0o7rKdSNJwi4jRKwj1QOz2BQnc0XceBm6e\n3TLL\r\n=VN4l\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-apple-touch-icons"},"_npmVersion":"6.14.12","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"12.22.1","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.8","@hint/utils-debug":"^1.0.5","@hint/utils-types":"^1.1.3","@hint/utils-string":"^1.0.8","@hint/utils-network":"^1.0.10"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.6_1623265778320_0.6278034695731349","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"@hint/hint-apple-touch-icons","version":"4.0.7","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5619238e3785c3b783d9fab4c13c0aa172806455","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.7.tgz","fileCount":14,"integrity":"sha512-wZO05jtlWEHeVK2qO1KckFL0qsNEc1iQZ6OP7gfA93/VW/la1AOVPyzk6zXAFztDIWv8wR9vVlLZQHWKKaCg1w==","signatures":[{"sig":"MEQCIBPlVRjOgnjpnSeEw5LOq5MgUVZcS3qFmuOPL+6RCOa+AiAkpdGReUsf/iROtnZBB7XU42V+2blRuMqSPV592nDG0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71790},"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-apple-touch-icons"},"_npmVersion":"6.14.15","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.18.1","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.9","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","@hint/utils-network":"^1.0.11"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.7_1634833164371_0.6916058661279247","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"@hint/hint-apple-touch-icons","version":"4.0.8","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"10732a017ac77bdc36124cefab2aa44f7a4a810c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.8.tgz","fileCount":14,"integrity":"sha512-CBlaMi1t5mAfk242ciQHYT55WATJcGAkp5OYvw/ozEfyiB9a81HISG/q/7JosdosLqDUKyAqaB3tf0S8Mwx3aw==","signatures":[{"sig":"MEUCID2q6KtAmTdqOCKxeuuPuAuA2PjCVE8haCPq+SndbqfAAiEA4VVHPYcO0atA5SuhsNb0GBJ5H7O0hn3ZuQI8wHeetSQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71790},"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-apple-touch-icons"},"_npmVersion":"6.14.15","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.18.1","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.9","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","@hint/utils-network":"^1.0.12"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.8_1635537385129_0.3117798590506218","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"@hint/hint-apple-touch-icons","version":"4.0.9","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5c41d6771660c911501b1c7e49e35f4b2f32c074","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.9.tgz","fileCount":14,"integrity":"sha512-jtYez9MFtrcSPTJraeRqSXHL0AhxQntCKD3ftXt9K6Bwc1BcpX1biNYVOJOu5WdKavRFduKG5ZL9tuAfbO8qCA==","signatures":[{"sig":"MEUCIAh/TzOBG8ICYmWQAGgOgUYS/biSuKmNa2wItxzFheSVAiEA1gqPx5Z4njRin/vtDs+N3o2lqNSd6UCaeKkopS//1gM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72056},"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-apple-touch-icons"},"_npmVersion":"7.5.2","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.18.0","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.10","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","@hint/utils-network":"^1.0.13"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.9_1636050544274_0.7917842993353319","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"@hint/hint-apple-touch-icons","version":"4.0.10","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1c00841822980adb291d8fb1522afb0c877d9cf7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.10.tgz","fileCount":14,"integrity":"sha512-eRprZJpWw/48Zzg/J1iOFjLe74vNN0XarCJbZX4oys/z2IrPWQNnFj4/0doK2rMK9ofHizzwVQVnD8G6PMvQDA==","signatures":[{"sig":"MEUCIQD54iNw3rhDaEqJdRo0IwSvQnemyXhqjz0SjbCtNj1RfQIgfEDD6YCgjdJTXrGW13qKPec1m78jA9OgKSK8nKO8cXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KRbCRA9TVsSAnZWagAAwB0P/1EcEqCzaP7hMIMgTM/Y\nkYTUh9ViQw5w9W+1RY5ggLi9ZrJfQTbthW7HdU177kSfOe/YepcSb0ppcDKI\ntwQGanYfDhOW6oEfVFzFGeMr2t1UxwfGOGwdmigx7CxuZjqVb9YWt37AXhKK\nv57MelEB8yfWdTH4wX3LJScD6GOjawfc18VJ6ZSIPc4czH9A7a/FBhUUAirg\nznCQZRMaQtvlAW4bFWfyMmBrV9PAVtHSEdV9zyATd0kvrvLlMnH1U1J88Jhx\nUlhEM+iluE1fbY9oTo7pfQ+0ZD/Pw7JCPRvUusWEWeKuMy2yCqN1QXb9Wb5u\niqwC+yP6+no90kVo/tAadH7DhGTQz8rvXblqbouUZNLkuyxtVRJPIR5rNSsS\nYBssLUTa1oEWMOwKI3mMWIaCO2YkyYmezEiHuN24GfP4qdKzYf6B6/W1ysxX\nZmBaOiXFNQTwJ3B5c4OJTBWqP4I7e98L3ZE7LbxG2/Kn7gc/en/IpMy+dCZ3\nAXzWYou89MUKwccm7G1fF+PCM+VJafpbB7blTSPKXHHeDDW6DiU+Oy6uFc7S\nSTlCMNStlGGDagzNhRZ7UMjhmBNcxZboV0RzgIEXhwtuZZuVgBGS0U+1u77b\njxIlyq+rlHlpPs+tmfbm8m1dwnPqGutQZvhKFR+iP/OxVJmcPwInK7O1WwZR\nFk/j\r\n=l2Yf\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-apple-touch-icons"},"_npmVersion":"6.14.15","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.18.1","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.10","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","@hint/utils-network":"^1.0.14"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.10_1637006914175_0.4793805832319942","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"@hint/hint-apple-touch-icons","version":"4.0.11","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"04e5638755ceb2ab9aaca3061a98665a93e70f44","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.11.tgz","fileCount":13,"integrity":"sha512-dKLD4dwIXfbf0lhsBfymq0ZAyYeMf93jzrxmZ9Bl0IQgiYluUO6aHfvZNAlXKZPLvmL3ZUNJ721Gv2eYCXGBdA==","signatures":[{"sig":"MEUCIDAeIapUeyqiik023MlNv94DuDQh90G/FKnNYKUQfHM8AiEA2VeMHnab94OtC6+xGAVnj0FksuF8ctnrJ8XI9niTuQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkhvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoYg//V6vZEwVMLSSj3QqtJVgPj5Grk3unF/LzRkUmCs3ZehLU/ups\r\nUfHstYewAKt7z17sS8iZQ0vsTpDW8YmwsfN/tkTEuWwrrWAZ07tRkcfjGCEf\r\n088ianGsq+XrzZESHQaKxdAskoJYCX6LffDfHl1kbdRRxBkzHqE7ZA0MIKdy\r\nGJl3oK46nAxfEQIVkRDGdiP2/LZVNEP1ZygJGY9aP8EO2r5ilUPFUS2zgMTk\r\ntj32KpHM7x+5BBAQoLPf7mPyiOCX9m16ch8KjVYrHms649Wp96IzD/840hwQ\r\nWnMlf7YtaWH7iVILK5EIg/Mw+3FbeEqiyBvsO0g4fLMEo4hejlHUXud8MIQ7\r\nbVus1Rt5kxoxFcEpEcTs2j0Ht829j6PGfy+aWeY6ZXdDPfJ5smVYqLTIfMI6\r\nOamkdr2id+0XBa9BTAF/PpXGkIaeqSvYLUlGvKQU+RbettzRr+v6aGoDGJEl\r\nrUHSHQIlTQDdxnCByTaQV6xXpqLFqnlxjRxnbPGo45eblGcin5iQfUazIoR5\r\nYsuHGx3x7hIl59/GJwrVlhik2i0Lv8IvPwe7bSkSJsqKnIXuwrAROaio4oYn\r\nWv4AnbEqiGSDYT+ZTblkMCWeIeTzCM4qM+qqrxhFyY6njC9D3ipdMD3/9MvX\r\ncDykUvHaMCPJqjkdG8gst6rOK9lnGphmkVI=\r\n=g/ar\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-apple-touch-icons"},"_npmVersion":"8.3.1","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"16.14.0","dependencies":{"image-size":"^1.0.0","@hint/utils-i18n":"^1.0.11","@hint/utils-debug":"^1.0.8","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","@hint/utils-network":"^1.0.15"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.11_1646938222850_0.7854441640260366","host":"s3://npm-registry-packages"}},"4.0.12":{"name":"@hint/hint-apple-touch-icons","version":"4.0.12","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2c311a6c5ac636adaf275f0a78dd73618ed0b161","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.12.tgz","fileCount":13,"integrity":"sha512-D6GTPJp1YmZAiuBVnkXkLDyTMA76XIzx7UFdvWVBryXIKi+rC5kzpkP37HPOiiTCrIdUR50+QnD4jIChnG+LLw==","signatures":[{"sig":"MEYCIQCbPQGTdiFCyWwLD6+p3SJjVOQUCO+C9Q55ZpAwUJtnbAIhAKNk692S4UgvO//BDJCDSVSgY90PYCvAQOK1nbd1S6zO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG3XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqDzhAAiHaeIUDfw+lbrSyd8GK4PDYmopdkG3iVy8FStRUlpKjBGAt/\r\niWxaVndOgXYLvlA/lQ7UVx5hAmjMlzGXhVe4o82w5/lbC3lii8ZVTsD22kNf\r\njwfRyy+MrL2tFwsnahrEU9vGblfAb/N0pCmVryjH4n2k7Wp3b8MOR+v52KTb\r\nPRixw0tkwdB/BzhIzJSGL6HObe1sSK/zo5T6q8EtphJzwjP9b1oeMY8nL1+K\r\njnEwrd0anjegI7EmDKKBA6hk4y9FfgfiIksEZLsnKcrIL4vyDXXTc/3CRScf\r\nPL2/zN+t6UDIkYl9OPhIX+ovoknPRMjHcx/5fwMoUSVXYPcp2iI6TwXemPZj\r\n6bEIMlIDOjyISFrfIPsYjKX/UEmtswukAXbKCaxf2sUM9T6Gq4v45j2TVSC+\r\n4DCUAzH3Qh+zJI46conu8Ibi7qatQYsonG12Yd6Pky7bRqhvaL7xjGJ+Wgp+\r\nDhOaeQ6V1fxPoNHleXBUDEl55Wbew/GjcO6kzQ6RZprjwDGyWD4AXg2S8blQ\r\nEdtlMBgyOj5XvGukZeT7Wb913LBbwtiroJR2sxEbvvCAlNyLNiBAY9cl9bKG\r\n/40ZFxjdILvH7RSF85tDEJFPRHJHtmGeLRIBGJ7bVLTldm74t4j5VbHkgsxT\r\nGYq9X0sg/PCdIjDJtqQuabBEahc/sNry1rw=\r\n=aI2X\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-apple-touch-icons"},"_npmVersion":"8.5.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"16.14.2","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.11","@hint/utils-debug":"^1.0.9","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","@hint/utils-network":"^1.0.16"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.12_1651011031037_0.2804179869583743","host":"s3://npm-registry-packages"}},"4.0.13":{"name":"@hint/hint-apple-touch-icons","version":"4.0.13","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"908e52cec7da8f748a0e8e7a09fa76e567225fa9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.13.tgz","fileCount":13,"integrity":"sha512-MMp5HkXl2o5ZlR3VGwbTl3/mB0eDJufgQFaYgzVXqrNGf+wC7V35uAzZ5eKjIAzP4Co3P9gccC2WxjyWSzcCOQ==","signatures":[{"sig":"MEQCIGn8cVoP1VGXIg+cpZl4dd2qkOOcOqngNjNfVkbbxqlyAiAli5iR1gMEl66qBRI92hj9cugq4KbdOkVxaglYos0qFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdomACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq7Ew//Uo3i47arvjJOJBc5UtGRuaiSVmR3/UHlwdrh66rXzPwQtSLf\r\n8Vg504OTwJZyo0U2zLGkjPqZX2FimZaTbwncj8e5IQaSfdqxSZc0CDMuuX0v\r\n/SoK81O3mSWO2s7jppJdkPVZIxulOoWy7GO5zDTTgPupkaUGKzk73X2mNfnx\r\nGtRA/wzzLxC7Ms5C76uoSiH1A86AlGAw2jUtW94TfuZ0kqC0T5kkTGRs2G1A\r\nkrGqSy7acI3jvCIxWHcZN3oQMOJFvzEUR3SMKyix4BhHoczLRC79e5eyVrjt\r\nNMs67sAyYITpRJOGCl+Co0MAJi8eoIsEgoRyZW0ZCYX4W7tK+EnlzC5Ypc91\r\nAXSmcUjYwAk3qFAO/2+SUjaclOrKSzzV2I+OypLyfnYQDa1bzyDP+4wkyOi6\r\n5U87M2wIRnb6S4mhew28PgBrRa1gC6mqSwqlilGMr9fOp1MUc/CZNVkFUxyV\r\n+LpxObA6qHSuQD+5rUzirbvOQEY80c4Paf7UyJNNrnQRf1z13HvNid2Jg3eq\r\niGF306NCL1LKVCHfizZQPhTqSFcGijw9VkgsaNCxEGguFAPGmz9g9C4izj3L\r\nI221/hBQgDGwmFr6X69wvTgLeXpU0EAI5h4EQRhdrMZATGyIVWYp5+YQmIt0\r\n4HfvMxsQ1kxYTO/ISSQ+nS23NwKXPurJYXc=\r\n=+TPC\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-apple-touch-icons"},"_npmVersion":"8.5.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"16.14.2","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.17"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.13_1651628582636_0.9362490461105408","host":"s3://npm-registry-packages"}},"4.0.14":{"name":"@hint/hint-apple-touch-icons","version":"4.0.14","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"96c84c557ee12d61cd2d14799aee5182f2105956","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.14.tgz","fileCount":14,"integrity":"sha512-c+Krm+l1Qx6anGntSvJ/tPM/5WxFgl8faDXduYtO9POdKGTrh0PsWs7ZJ8XbPtM87hJPC6dceTa71ONIknqoog==","signatures":[{"sig":"MEUCIGuo56xOnfsjQiOvZRG7Tp9BgjSO5WXOFzwHbSs8WKkLAiEA8tg2Nz0KbD1U6DB1DbZq8BnLXP5Fq1gbAlWANE9KQ4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn84ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/dg/+JR1b7YhlHjki+spPH3s8rJQ5sNtQmULmceEJbFWd40nb27ct\r\nrgJnO13YKSfubRKgQRoBxrEGHA9g+fQxkD8KKMA/zoS7k5VOBULvcDQH49iK\r\nlj3cAVGTrDd+TL2QuLDUSmyHDI4Fj+vcnjz44KtDW8LQjvaWYmv+2vbABsQW\r\nj9fmd+xvJkwqE9rRk2jFKHfhn7MUz7PTmspR3WH6kbDwL2bGkZLnKEuTOQU4\r\noiVAfvHhpL6BVo7seshiyXBp0jySkxxeR6FpqoVH6d/zGgWCgDjJ6TJkpuuk\r\nwE34O11tUVEDkBXlwKgeczPjQdE+7vDke8oCoYSP/yg1JHIa7sVX61WssyQI\r\nN62YU9KmqygzG/m2p2xl3z9aRdhfUq+0MszK+nEE+fmwICofcAGlgVxfwHMR\r\nte8ze4R0eytqmJCw6GEgf5XBH/bQN11QgAQrmk2I6kaNaFoNNMr+HyET17MU\r\nhmeJ255JtaTSYaIGqjlQZMvjaUp4TDxWIRbWJdyBr6a2DBa8VPiVAT3/SlF7\r\novFwe0yIT+qmtsIHirekotGTNL2JovcBntxPxpzO0J6oT70R6MVyIrWiPym1\r\nlxty6W9s85QrVEAFnIluHMxZSBp3s+tLWp+bxCTw77kvuZs9wg7titmgxi0p\r\n1qFEuYOd93zcwctIW/wjouOaz3bEo39br1Q=\r\n=GjNk\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-apple-touch-icons"},"_npmVersion":"6.14.17","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.19.3","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.18"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.14_1654554424564_0.6052323568438642","host":"s3://npm-registry-packages"}},"4.0.15":{"name":"@hint/hint-apple-touch-icons","version":"4.0.15","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"77e75c508e9027c160105d3bee71cdf86a4f5760","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.15.tgz","fileCount":13,"integrity":"sha512-WtPRB3u9cnvIF7uEADKldgATho6dug6gWfp8JWcXCDVzmG3SrSuORVWo6pzn8qoh6tLfaNIOatyeO1BQwsywjw==","signatures":[{"sig":"MEYCIQDsAT3dX93g7dZ1/1aLQPmJe21/PBGQGbj6LiKYJowr6AIhAJuuw+dZBMPh4JI/dL8Ly9ayF4zUKrkt3D8JmvChSH4Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6BfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmosJRAAmW5I2gxWmsMqC4AVhyrpcgF7Deqp+KBZn0eUPgmslT8gNSIm\r\nqvdeuvt8zRFAGGHI1tdOmp2mqPYS9TTH3kmao58sh4jYe/9ULfvkfh3NhOoX\r\n06HTFML+f6neeiSF9NSevbhpVEJ/kO7ldCj+dHIrx3olB+My8ve4UfPFRNLf\r\nCWnpxN503IwQ5vX8WhP5PcjwOR2V/lpeimoxpzxeayOBze9x1S6lRrlpv2Bt\r\npKSAqXinZxuiyu2RGJ5Bv2uGMO4+uMIvKzOmCVgqJEzlwiXpE17MA0ARgdXg\r\n6JL9O4ITujYzODKrJin1tMITZkw+NjDg6dJY+6Qs7yz3u37FxUHscNvei1DW\r\nUku7vNeZ3W5iSWR522vtEx9nyZ3xp4SM3/CEdpGvdcMM9+DFTGa61HX3sBK2\r\nWL3SxwPJJNrEhF4ppOg/pUALoZzPHk3yNIVk4ifiAjGM2N/2mUvvUibBqmcJ\r\nRsbah9WZpvQNk9SxDEs6r6VfPcRFtDGRgLMyemBRdcqKPducTK5PBuyOPAkJ\r\nR5BW+oYHT0l+LWmeBkBmMY+0ptzQgCrgem75Iy0VUXZcZCs9utb9Jqx5iCUD\r\nhy5vL2jC+aUn+/2bYTupROhrPSTSTtfp1NvzhqyKC6H3BfGJEAHc6fmj5FAT\r\nMgMrr6PlXo84yBAYabSyclhfYmb/l+kB8Mg=\r\n=6a6G\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-apple-touch-icons"},"_npmVersion":"8.12.1","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.19.3","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.19"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.15_1655152735543_0.3453168240293638","host":"s3://npm-registry-packages"}},"4.0.16":{"name":"@hint/hint-apple-touch-icons","version":"4.0.16","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"56a691287de1c4e2c620c2baf2b60ad5b2db66a2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.16.tgz","fileCount":13,"integrity":"sha512-Z+Bylukl1v2X0UZ6mjAPqEQ8yYRjGy8EvG16X0MpwLzgQzD4ahntbY1a8NWptk9xbX29NaorF9A3YL3QW4AQfQ==","signatures":[{"sig":"MEUCIA031RDA2QG0XEn2ac5YtttuHchfNdX9pMsp+cxh1d1+AiEAibLt4knUCWGMIE5edzOa/UZYlpR7b2oF1PJZVxOwcx0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFQSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrU7xAAgImjIA5QcttXreaRGAYhne644xvRmpcmJxyb73C86XvB5amo\r\nITqUIF+6VKcVn1LB/PG8zRYrui4SXj8UDkERKNEyV1tW6qtfRI8x+Ek5Z+xc\r\nFVu0mrnVcYvUB9unIPBc7zKMUQPdaHu5GXVF1sLBAVuBagmrvhK5hApsVnRx\r\nx9PF9PwxCx+SmfQgQs098UvEL+Ise812S/kYmfsfcn4qQHpX72J4BhINH8zI\r\nvwQY9yKrHbfHGTxCnxoc7Vj9LjsGXYuxk9WQ/vugpy7MR2MuSwrsW0cfRNb1\r\ndoHVSPYCg0rMzwd9v2T1B8VHcMJlFl5CUeutUEArscF5DN/P9NkbK7RHyfmD\r\nVd4vAszUEUdRUuo+W8jxnGqE46oCtDppwJ5jccdLQIAiuoYHtO1mAjpCOWen\r\nwnVuETaUkPT+R9UmeTMEwtcbyZq3dqQFWBKsRSbWnYgUKFVvWJZzdtRMBBaI\r\nJA6UGV+JzyRlEmLP+QKNjGiNJDUwLB9VBRHEn4wOCpOuWb+49mtoNLhYiaHL\r\nNdIZHObjv/fRvfhet7pbXoOXyKUtC519F8me70F8QCEdFIvm/HrOywPCwTRj\r\nqwWvnMSa8amoUab3+Lauer1nCW6Y/YP4GtuUtDAYR/YgYpxMkuJaK28Z2SDo\r\nGdDoDJUygZB2peeXXRXOd5QUxHlvfNpL5Bc=\r\n=Bc3E\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-apple-touch-icons"},"_npmVersion":"8.12.1","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.19.3","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.20"},"_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","@types/image-size":"^0.8.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-apple-touch-icons_4.0.16_1657295889846_0.04780155640795791","host":"s3://npm-registry-packages"}},"4.0.17":{"name":"@hint/hint-apple-touch-icons","version":"4.0.17","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2566e4cf7ee168f574e0a6e98ed79a660a5db476","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.17.tgz","fileCount":13,"integrity":"sha512-TOz4J5p1PKxJ9gAWywQKSrvPXXyFu47191XwL4GENVjuEn6+PMKuras/oKfpntVpvA7gFw2wx0WGuaPi5MSnWA==","signatures":[{"sig":"MEUCIQDEH7utl9dUFFUS0wU0xduK+CTqCSMqVl4FtsrMdL+RKQIgA3C/StstKNfq+YV3P5MZAqVuqC1TjwPz5sh1lipJP6Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yu7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiBw/+Oji/JdWgSf4wvKz2VBFf63copm4nGigZU+zwMXPq3CIm1ngc\r\ny2ZL/AiZqMXLl53xJ2etv//MfAgjlcFCVU098aAlKcJCFfiGof8BMhYV+xOx\r\nudiWcO8f11UMtdseuKAgoSL+0x76urA2V5SHZ4EsBBrhfs6Kk6mu+4UrwI3b\r\nx/YLdjyaMYhe11wC5LLUSesRVz82dWBLJ9xJAVoW9LEp9m62P2m59wA/o4ef\r\nzbG0cUcuYbzh3G3vMFS+YHUsS0tg5Feu3aLMlFG7Qwm+zd8Lz/EnzHyERD1x\r\n9p7xwesK5Kbgn3SYYvb3GidIizEb3caofZ4DE3pqlcutUD1RKb36KaWc98Cn\r\nX+v8oO1xSm2jSofet4O2lvILg49XbcFWIyQ6Cunuv8DA5rhcEpfaubJg7DFf\r\nseOjpnwuvJ97W2P87+0HsRvvjm4BqgetUOjdopM4Ent/06X+tOfczRqgk0aZ\r\n+07Gc7otMZNzHd189miW5cKREwjbW4M0atkGr6+w2NBAP7rHh1dhDsvsxlz8\r\nqH0n4ADM8kIWnuCAhjuvFO1tq6QG0+U4JTYUilAz81ytWNN8MphoUrGvu0Zm\r\n/HUz2Y3JeV2QvgCD5y5pC1vbV87VJ4+BCuWdlHhoeuoQHeeMdSzqc6qtRaWO\r\nM7IlqFr+ssz0XiSE71mCYdAtFGKpjclz3pw=\r\n=d3g/\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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.1","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.21"},"_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","@types/image-size":"^0.8.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-apple-touch-icons_4.0.17_1658530747414_0.11211783648957896","host":"s3://npm-registry-packages"}},"4.0.18":{"name":"@hint/hint-apple-touch-icons","version":"4.0.18","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"dccc7b0675f5054a03e031be6ce00fedfc761d4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.18.tgz","fileCount":13,"integrity":"sha512-5ghgiisHZ38oWb06dD/VbNlMEKfzpf33U17ydgE7UNm+o5iViyLobYmU90VFIo+cl4s9bV+jJn1RL17i1taF3g==","signatures":[{"sig":"MEQCIADlp9uHhfc6VvErERLJ3PBga0Kt0+mbLH7VH+QBuL7vAiAhdQL0j6zOfmSHtNkPc/T0jztABtzmTBxjn4dL1WVayA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3flACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSKxAAofkabYvdFaUHf2grggtKMuIKUZ35Ng8WQGTb+bGH/fpwu2Ba\r\nFwBmq4bExwRcMu7E3l+Twv8WJXDA0EOaytceVK+WU3UXBwzJs9Nqak6YXbiS\r\ne18I9G/CXOh35RRwqJFSLVQ5ezq64jzwqB9wNcMQMqgTp4jfpvq5PTazwV3s\r\nl8qINtCZTqoNs9kua0z5KAP/VcfPGXgrEqo1f80Xra59WEjbnA7di/H8zXiK\r\nss5ju9+4OipoAvfQTSDfGIiakUfDTO7q8frRNtSqKmO8w+Iqf8xM5yqCa4xW\r\nlvOyw6jkZna10f2si3kSLWGU8VY8x0p2Mja4J740UA2NvwuCDr7ETUXvpbin\r\nDxrKuZeKmkYRKRcPbyvqPfpBWGMhW27c9XwU7X5jaFDRRB7RH7u7rhz3T81C\r\nr67hhavLJa/y/pBg/dDtE3gtruyfoX4Cc0DVFYPT3f0rtOq38Wypoiyslua7\r\nIWZgn3d8jvwzHQiDBzEBkWYrPpt5I7swI06vdPhLcRN8IhdP0Mw9NdYYGprO\r\nbQvvBty+ti39CP1+LQVExifFH6Z65+XBN89y9Ch10N2TyEj0DV76qQkc9EaQ\r\nymdufstBVHqnv+gmyW/FL6JNSu364iWD6IhOsq2JAgX84m2f0YU4SUKuXuJa\r\ncz/5xYn3zxnMTnC0xGoOw8M0MI48vY2PymM=\r\n=KMp3\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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.2","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.22"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.18_1662482405361_0.22003392056271842","host":"s3://npm-registry-packages"}},"4.0.19":{"name":"@hint/hint-apple-touch-icons","version":"4.0.19","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b8b5c6d73b8247f99aea0472c0bb2f0e140b6324","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.19.tgz","fileCount":13,"integrity":"sha512-IuR2t5JGY7wzv5RTtJ132ax8YV2N/o2M39L6TS3SCHC1PwVdPj8fIOaAXyHImSXx1Xq+lSY3xkGyjcK1wXx7kQ==","signatures":[{"sig":"MEQCIFS+OC2COz4WYcjHvVi3+lEjXcICE46B5BZAIulS7U60AiA+AFlWaD8NDsuJpqpaDuaJMVVMnfmTqf9BV1umeBwFpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPy/WACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrb0A/+MvBRUl0NMM+dQd3ZLVdPleSh7pMRy4W77LYEZFLJEbFr+/Jx\r\n55ZBdNCtGQSdcOWGT8hHefKT49Uf9PciT4mkAmU+ZD4KES79zvcrKdqzeoeq\r\no/RCc3GwD+hy3lzedatZ0plgTrEtfsN3Twy9G04Gc5D/q2A0Ux2kGG3npnUE\r\nbfnntJye+tbx6InaT+lRcRHdjfazDeHtKknSSb8J1pRmnDkwXJ2Gn7mmeU68\r\ndCVfA19hyksEm2/8qVkPaoAGuA6ZITJw5THV2owK2umk3W1DuHdV6NVc2x9Y\r\niTD5pP8G+bMfDoHIX1juo2rCuzq3REyBX9CLUNnM5xVO/2/5D2lA96kD794u\r\n/ePy+JL+cMQ/nYCQyOKoQfYY5lFnelyy2gAvEhXB82E6YSWatIRf/0YcdCm0\r\nTkLqx7O2U3e4oufrFoy5R2L8lVNZRAYTIfYgPKHaXaawQ/QocAprmNPUh0bu\r\noXIc32f31uRLQ3FpEOB+uORR6SfXGTsfuLCDRUvEec2PR81dtE2u8kjdvirr\r\nQu+jIaK/NoNP9yfS5cN63eslyRsAJHROyFQ2gAUJp4FTGL78AiY9yZmi7Fwa\r\nQnDdwjF2mpJy7qlIvLX0DmF+IkL/5R2doCoStZ3vLnh9+VwD9foT1hySFtjp\r\nK8kRcV9wfSlO2TNV5R7mpm3Lw7q+3XyjCJY=\r\n=oKTp\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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.2","@hint/utils-i18n":"^1.0.14","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","@hint/utils-network":"^1.0.23"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.19_1665085398542_0.1408945537681563","host":"s3://npm-registry-packages"}},"4.0.20":{"name":"@hint/hint-apple-touch-icons","version":"4.0.20","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"dde00a30ea1d4c0ee3cce6f50a41d12f4bfadcac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.20.tgz","fileCount":13,"integrity":"sha512-fRap6iPw3tvu1EtAmfrzYZys+KVkOMRg3MFqdzl05Hj86qg39jpI8lDTPeUkRQPWh31rv65vfgI+EdjJk03jjQ==","signatures":[{"sig":"MEUCIQC+fH0AMgc30FFmwjvXME5Wjr7yykwRWq3Pq50hPPBcwgIgLekYlHwl6O+2PPADXeW+FWKQbVHe1ORHsY062RKWCRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoqlg//dACr8YJPkyPUNANn0/r9LbjPKY/QvkiXPNOLko4iDERrBBIF\r\nVmA+O4935MwyS36MbGqMhW3O+4mvVU3LFHtr6m3E1ErGzxuaGOWFFpI98YsL\r\nf2iF2ZJwUKUbArJkfPbyTTNAKtQHN52iqQyLjzmmtJPhCxNtrnzfOOO2/Y4E\r\nyrbO4Nvl+zYX1YQilILoqRGBUvY6Mp1KRTC+lJ9A6Z+uHkefFJ0dtot/iIKI\r\n4moDZc4SATulI4HkcucI9oDDcvQ4iHLZVI3u2DoQi3hWvIfNL3lmC7SiYv/6\r\nTaz8AKutOuDSlS42X5GmhKZ07bxAqpkzMNDquxn0HisQEI2Es8ABAra8wqm/\r\na8nZk2ZmZClp1g0BGhLklJ6Sbh88KOlaTfFhawSYSdYI/xkYVYMqf/TdR1UB\r\nJUsE+ivz2EC14cQ6eGSv3z/Pq54Lc1eI0exz44t6MumWhyVSLl5esg/l6Gw0\r\nCnDqeAlB7+9X0vjK8luKXj25OZL+aehsapW8vnGmSCLQAaOFKc3gDhGTntrX\r\nkkds6vc0C9tvwhgAjE2+uz0S/q/UlHEiW2YJgQxe2yaptgvKbTkV1v3Aj8GT\r\nvMx9fK47E2bk4aNJZVFgkUfG5wiwa3OaLPj6AMLK2ilZTxfsmu199bLfalF3\r\nXBpkGZxzCPTyvD2myclflvWhuLwUSQfQy3c=\r\n=xdeL\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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.2","@hint/utils-i18n":"^1.0.14","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","@hint/utils-network":"^1.0.24"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.20_1679006978807_0.7064106149396321","host":"s3://npm-registry-packages"}},"4.0.21":{"name":"@hint/hint-apple-touch-icons","version":"4.0.21","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"26ab9d5338c73426e7cdde98ff70f52f6fa70767","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.21.tgz","fileCount":13,"integrity":"sha512-Sy/382dk1OdfQJ9i13uw25KivdOhvY2XPSNVSDNzIp9/zp6C0EnGCJcFRfW9boXK5tk91479kZ8PkNrohmAaMg==","signatures":[{"sig":"MEQCICB6zD7w9QI6JFZ2+wTwwWiog1i0I0JrormFgjqYSE20AiBZk7OkSmrHmJogeeP7AKJnX/eOOgdFrDoIm//oJ0UQSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31026},"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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.2","@hint/utils-i18n":"^1.0.15","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","@hint/utils-network":"^1.0.25"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.21_1686328025298_0.39371750354603496","host":"s3://npm-registry-packages"}},"4.0.22":{"name":"@hint/hint-apple-touch-icons","version":"4.0.22","keywords":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-apple-touch-icons@4.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"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"676111ea7e227153db1c2d617f56a61ffb0d6a44","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.22.tgz","fileCount":13,"integrity":"sha512-2pilNLInhkCTcLKxaSFh0Qjzs9SHv6XW45o5j1ehbLu8vFTrqhDBa4YyTknlkx0Npen8uY0u0VWj541pQLPBRg==","signatures":[{"sig":"MEQCIBR3FElLeqFz0mMXzabHGrBUEjypapbWV4D243N+iRw9AiB0DrYFJGdnYolswJW5Y4eX/8gDIHbyPJEjf5z0c+slXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31026},"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-apple-touch-icons"},"_npmVersion":"8.14.0","description":"hint for best practices related to the apple-touch-icons","directories":{},"_nodeVersion":"14.20.0","dependencies":{"image-size":"^1.0.2","@hint/utils-i18n":"^1.0.15","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","@hint/utils-network":"^1.0.26"},"_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","@types/image-size":"^0.8.0","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-apple-touch-icons_4.0.22_1687907310221_0.21782582272588558","host":"s3://npm-registry-packages"}},"4.0.23":{"ava":{"failFast":false,"files":["dist/tests/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-debug":"^1.0.11","@hint/utils-i18n":"^1.0.15","@hint/utils-network":"^1.0.27","@hint/utils-string":"^1.0.14","@hint/utils-types":"^1.2.1","image-size":"^1.0.2"},"description":"hint for best practices related to the apple-touch-icons","devDependencies":{"@hint/utils-create-server":"^3.4.27","@hint/utils-tests-helpers":"^6.5.7","@hint/utils-dom":"^2.2.4","@types/image-size":"^0.8.0","@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":["apple-touch-icons","apple-touch-icons-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-apple-touch-icons","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-apple-touch-icons","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":"4.0.23","_id":"@hint/hint-apple-touch-icons@4.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-YZz0FaFjE4rRFsxBHQ2Au+HOv+UJVFGGseRTHbHN2tiD5SrR1fjgvv5cOMyTuHB+QQoN9ruQSE8sw+to4uqWjA==","shasum":"63c0018dad20c8a992ae47ac7416343aaa9f7c9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.23.tgz","fileCount":13,"unpackedSize":31026,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBcqzKMIK3vcj57F01wUDD+hF91afDMjVN9WYBogX+TgAiB1xJLrzjC/9lRB/lto2V9yB2ECMcXjkIoTSRO/gdzxYg=="}]},"_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-apple-touch-icons_4.0.23_1724949320035_0.1769559009464532"},"_hasShrinkwrap":false}},"name":"@hint/hint-apple-touch-icons","time":{"created":"2018-07-16T23:23:24.640Z","modified":"2024-08-29T16:35:20.517Z","1.0.0-beta.0":"2018-07-16T23:23:25.017Z","1.0.0":"2018-08-06T21:08:42.372Z","1.0.1":"2018-08-10T21:27:59.034Z","1.0.2":"2018-09-06T20:55:11.128Z","1.0.3":"2018-10-31T22:39:54.976Z","2.0.0":"2018-11-05T23:37:04.834Z","2.1.0":"2018-11-28T06:08:21.958Z","2.1.1":"2019-01-02T19:04:46.585Z","2.1.2":"2019-02-21T23:58:30.929Z","3.0.0":"2019-05-15T02:47:36.000Z","3.0.1":"2019-05-15T04:16:41.541Z","3.0.2":"2019-05-23T15:47:47.364Z","3.1.0":"2019-07-23T16:30:00.665Z","3.1.1":"2019-07-24T21:17:44.682Z","3.1.2":"2019-07-30T19:28:44.950Z","3.1.3":"2019-08-06T20:39:58.333Z","3.1.4":"2019-08-16T02:37:26.058Z","3.1.5":"2019-08-29T15:51:58.739Z","3.1.6":"2019-09-11T22:29:44.595Z","3.1.7":"2019-09-19T18:31:01.273Z","3.1.8":"2019-09-24T19:29:27.190Z","3.1.9":"2019-09-26T21:18:07.030Z","3.1.10":"2019-10-16T19:43:21.881Z","3.1.11":"2019-10-29T22:28:25.206Z","3.2.0":"2019-12-03T01:00:48.365Z","3.2.1":"2019-12-05T00:21:06.563Z","3.2.2":"2020-03-18T21:54:05.694Z","3.2.3":"2020-04-15T19:17:38.510Z","4.0.0":"2020-05-18T22:14:37.564Z","4.0.1":"2020-07-27T20:35:52.148Z","4.0.2":"2020-08-24T21:54:43.173Z","4.0.3":"2020-11-11T20:40:49.314Z","4.0.4":"2021-02-04T19:28:37.798Z","4.0.5":"2021-02-06T00:40:50.454Z","4.0.6":"2021-06-09T19:09:38.500Z","4.0.7":"2021-10-21T16:19:24.557Z","4.0.8":"2021-10-29T19:56:25.271Z","4.0.9":"2021-11-04T18:29:04.418Z","4.0.10":"2021-11-15T20:08:34.358Z","4.0.11":"2022-03-10T18:50:23.008Z","4.0.12":"2022-04-26T22:10:31.233Z","4.0.13":"2022-05-04T01:43:02.834Z","4.0.14":"2022-06-06T22:27:04.785Z","4.0.15":"2022-06-13T20:38:55.782Z","4.0.16":"2022-07-08T15:58:10.018Z","4.0.17":"2022-07-22T22:59:07.615Z","4.0.18":"2022-09-06T16:40:05.564Z","4.0.19":"2022-10-06T19:43:18.846Z","4.0.20":"2023-03-16T22:49:39.043Z","4.0.21":"2023-06-09T16:27:05.577Z","4.0.22":"2023-06-27T23:08:30.413Z","4.0.23":"2024-08-29T16:35:20.283Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}