{"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":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"4.4.21"},"description":"hint that that checks using axe for accessibility related best practices","readme":"# axe accessibility check (`axe`)\n\n`axe` is the accessibility engine for automated testing of HTML-based\nuser interfaces. These hints run the recommended set of WCAG 2.1\nLevel A and Level AA rules from [axe-core][axe core].\n\n## Why is this important?\n\n> The Web is an increasingly important resource in many aspects\nof life: education, employment, government, commerce, health care,\nrecreation, and more. It is essential that the Web be accessible\nin order to provide **equal access** and **equal opportunity** to\npeople with disabilities. An accessible Web can also help people\nwith disabilities more actively participate in society.\n>\n> The Web offers the possibility of **unprecedented access to\ninformation and interaction** for many people with disabilities.\nThat is, the accessibility barriers to print, audio, and visual\nmedia can be much more easily overcome through Web technologies.\n>\n> The document [\"Social Factors in Developing a Web Accessibility\nBusiness Case for Your Organization\"][wai soc] discusses how the\nWeb impacts the lives of people with disabilities, the overlap with\ndigital divide issues, and Web accessibility as an aspect of corporate\nsocial responsibility.\n>\n> Another important consideration for organizations is that web\naccessibility is required by laws and policies in some cases.\n\n***From [WAI’s Introduction to Web Accessibility][wai].***\n\n## What does the hint check?\n\nBy default, `hint-axe` contains hints which run all the\n[WCAG 2.1][wcag 2.1] Level A and Level AA rules included in\n[axe-core][axe core] with `document` as the target. These rules are\ngrouped into hints based on their assigned category within `axe-core`.\nSee each contained hint for the specific list of enabled rules within\nthat group and more information about each rule.\n\n## Hints\n\n<!-- start hints -->\n* [ARIA (axe/aria)][axe/aria]\n* [Color (axe/color)][axe/color]\n* [Forms (axe/forms)][axe/forms]\n* [Keyboard (axe/keyboard)][axe/keyboard]\n* [Language (axe/language)][axe/language]\n* [Name Role Value (axe/name-role-value)][axe/name-role-value]\n* [Parsing (axe/parsing)][axe/parsing]\n* [Semantics (axe/semantics)][axe/semantics]\n* [Sensory and Visual Cues (axe/sensory-and-visual-cues)][axe/sensory-and-visual-cues]\n* [Structure (axe/structure)][axe/structure]\n* [Tables (axe/tables)][axe/tables]\n* [Text Alternatives (axe/text-alternatives)][axe/text-alternatives]\n* [Time and Media (axe/time-and-media)][axe/time-and-media]\n<!-- end hints -->\n\n## Can the hint be configured?\n\nThis hint uses [`axe.run`][axe.run] and the default values ([WCAG\n2.1][wcag 2.1] Level A and Level AA rules) over the `document`.\nYou can modify what rules or categories are executed via an `options`\nobject that follows [axe’s documentation][axe docs].\n\nSome examples of hint configurations that you can have in the\n[`.hintrc`][hintrc] file:\n\nDisable a rule included in the default configuration:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"axe/language\": [\"error\", {\n            \"html-has-lang\": \"off\"\n        }],\n        ...\n    },\n    ...\n}\n```\n\nEnable a rule excluded from the default configuration:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"axe/keyboard\": [\"error\", [\n            \"tabindex\"\n        ]],\n        ...\n    },\n    ...\n}\n```\n\nor if you want to set a custom severity:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"axe/keyboard\": [\"error\", {\n            \"tabindex\": \"error\"\n        }],\n        ...\n    },\n    ...\n}\n```\n\nChange the severity of an individual rule:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"axe/color\": [\"error\", {\n            \"color-contrast\": \"warning\"\n        }],\n        ...\n    },\n    ...\n}\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        \"axe/aria\": \"error\",\n        \"axe/color\": \"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* [Deque University](https://dequeuniversity.com/)\n* [axe core GitHub page][axe core]\n* [Web Accessibility Initiative (WAI)](https://www.w3.org/WAI/)\n\n<!-- Link labels: -->\n\n[axe core]: https://github.com/dequelabs/axe-core/\n[axe docs]: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#options-parameter\n[axe rules]: https://github.com/dequelabs/axe-core/blob/develop/doc/rule-descriptions.md\n[axe.run]: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[wai soc]: https://www.w3.org/WAI/bcase/soc\n[wai]: https://www.w3.org/WAI/intro/accessibility.php\n[wcag 2.1]: https://www.w3.org/TR/WCAG21/\n<!-- start hint links -->\n[axe/aria]: https://webhint.io/docs/user-guide/hints/hint-axe/aria/\n[axe/color]: https://webhint.io/docs/user-guide/hints/hint-axe/color/\n[axe/forms]: https://webhint.io/docs/user-guide/hints/hint-axe/forms/\n[axe/keyboard]: https://webhint.io/docs/user-guide/hints/hint-axe/keyboard/\n[axe/language]: https://webhint.io/docs/user-guide/hints/hint-axe/language/\n[axe/name-role-value]: https://webhint.io/docs/user-guide/hints/hint-axe/name-role-value/\n[axe/parsing]: https://webhint.io/docs/user-guide/hints/hint-axe/parsing/\n[axe/semantics]: https://webhint.io/docs/user-guide/hints/hint-axe/semantics/\n[axe/sensory-and-visual-cues]: https://webhint.io/docs/user-guide/hints/hint-axe/sensory-and-visual-cues/\n[axe/structure]: https://webhint.io/docs/user-guide/hints/hint-axe/structure/\n[axe/tables]: https://webhint.io/docs/user-guide/hints/hint-axe/tables/\n[axe/text-alternatives]: https://webhint.io/docs/user-guide/hints/hint-axe/text-alternatives/\n[axe/time-and-media]: https://webhint.io/docs/user-guide/hints/hint-axe/time-and-media/\n<!-- end hint links -->\n","repository":{"directory":"packages/hint-axe","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-axe","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","axe","axe-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"004bb0d23881841213ef1439077107816cdc7fea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-jHnzDW/Qmxov/bpmvRkYqmga33bOgSHAttB9/lfIIKsRw4p8rEx7gJF36cVqaqmwfTk/4ll7yaMvY8A+cg+jOQ==","signatures":[{"sig":"MEUCIQCH2q8jKDp4apxwvLtNCDRSr78ON8fVxcjTCQZe2l431gIgbqfTlrAF3f4dePtslOjzt99Fmb05UCyfgsmeHKrpo70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTSlICRA9TVsSAnZWagAAs/AP/Ap/oiYegdQUopYplSds\nMZn7gEOCghUH7Cb4vHnEz31WAakUPToR63HBm7o1w16eDsSmqRb0tr8qx83Z\nFUlg39Zep6EfxYYMUzZcJI8/c5LZ2haZGDGSoOW93ui0dg/hu47bFh7A+pyM\nD3uaB8ok6mk+ZyKxEhOuv/NDFCfR+ZiTQy9r16eSOzPexT8iTaBZrgfsF2fw\n3Vwi2EBM9gg+ahbk9r0k2UcREHNphjDPnCu55m9GuItBwoOviSgWtowVGOJv\nVUJM6J6eDVgoVTQWWQ/CwpZqHWu6RVrXLIkPDhaiU+mdBgT2CxvAIe1nv+Cb\nEHfegR9/kZ3i3M0HH+Mp7HqBWcsEB9Qq8ZuOCCqYaAb0XokEU3xJfRyu4Z88\npkJQ/A13n2b0WcDk6n6V6tWcUQ5Ow5qTSsz/QsiUskaiHiIznbtvhXKWnBoI\n4x8biJFtDvWT0qv+vWvwiwfps3AI7F492NRTkQrOZ2bD6K0HK+6SXGCB7hod\nLEVsUwZflLBA6C+xC+3T+KpfePXZhONbS2mQGumcnP5xcVNdwoRxzUwO2c20\nRIi59tA/aCXIcV8mzL1HrCsCNzlq9TXGtYeJQv76rp7jH7u9NOPEEjOlKplF\nJKZ2SSAzA3t//Ab5CgYUzoxDeAdPq00tn0/4sPm/AHapKsh1+mVhAdiB9WGw\nEXrP\r\n=Lu5K\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"axe-core":"^3.0.2"},"_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-axe_1.0.0-beta.0_1531783496124_0.2039120370958587","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-axe","version":"1.0.0","keywords":["webhint","webhint-hint","axe","axe-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"172aab55f5cc8f096f623bf19e19944df5ba51e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.0.tgz","fileCount":7,"integrity":"sha512-rnk1gm/kbNd6885278EiOKA8MC7VnyWuJ9yMCBm66X5Stt2Z+BkAfFtAVYy/rEiruMw61sNKdbKdNCr9TdALRw==","signatures":[{"sig":"MEUCICxDmThom+s6+t5erLmVtmdNwxgy0F63euvJH6XRitvhAiEAzzO7mizV4Aora/w50ZAJBKQjOi4f3Pjk3bhOZBoBpGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaLk/CRA9TVsSAnZWagAA4b8QAIxn2QI0VCRyYeDVW3KZ\nQXeqVFy05m0le0BF17pNxHYVtjHIIGqzEpqE4fjNcp/m6N0t6teYRl3Z4BCc\ndfaPrnEthdaE4k95ivuQFhcN/b8DB0TD/Je+PzwHtNxvjr11WiL3kNQ0k6A4\nJniAsE/fX/Y7DVWuOTuEcVGCA57Z1MmhPaT/sDImwLS8CFhNYVaZ0HSqsPt8\nNEJ5oeZ5Ehh2wTD3/faWjUJNrwO7oSnWiXlQHTz6pbVgmIXhw+NoFvInL/XK\nYZ2elcOp9GLgYDHUmQdC6Ogd0TcnGy54qV8d0CEpH7eZiztVGuwGoOJAxZKS\nlYGPMxOV93U2onmTzyp8bGIynwJ9RsQGFPHyeIWvEjj4AMFSFeHTiu0Bjjdi\nvUBqgPuwtGUnyrpT7A3LKBDe5zLpmMzE+GdSBOMRG/qS+6yUdaf13aYFqpWe\nvHLqCCdIhWeNFTdypRcKrS26PTUNE4CUEaQAjnUTYZOJvsvaFlK4o/i4su+C\nfTr2Cng9QgY3G6r720mCHo8zSbuF57eJFe6CloPy5bb+PrEuhrSjFfrHoeHe\nwKyAyuCUNabPSJS+U9u2iIX7HTlKlkfD2/AblCkfGM+Hh+AECCAeNz7YxAKj\nvHt2do3ePyqRPtQXYV3ILGmJIrKksJN2MFxGRb2sDniBnvpUHdmz//ss+gSd\nnKSf\r\n=+hDJ\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"axe-core":"^3.0.2"},"_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-axe_1.0.0_1533589822511_0.17014650060715564","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-axe","version":"1.0.1","keywords":["webhint","webhint-hint","axe","axe-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"8700f8d0215ff13e87dd4a2753d8c58b9d1445c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.1.tgz","fileCount":7,"integrity":"sha512-RfI4VuPNJzIZWihnNpNkOo98AJwCMgE/DH5iPruCIlIp8oftBnm8ixb/j6CkQHxNNRg3YgZ9E021r/d0AH7/IQ==","signatures":[{"sig":"MEQCIDtIL4pACuDhWAKy9XpRUXUqLGR8efQoKbTaMQ0hYIxzAiATVL77n2YP8Ltf50JrU4shaeUVMBjomkCbWvCOciRUYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbgTpCRA9TVsSAnZWagAAHB4QAIoWfQLnTVTzyTXyGG19\npM3lSD2vgXBHYZYHTR1erxJRfoQWSG81ci/Bh2kfGz8rOPG2fvw9eZ6cMutl\n/an/ISsSx3LqudUC2LeffM3TGfRBcJJxoPIZkjrnwQ2+zP4ok+HvNipx7ZG2\n8nDs5lCD/xzCeSwF3GxTw9j971Ub/1ud3MceiuKT+PPvNPExnYtipvqJ8x44\nzxCCETv6E61rDQt1YDr+gxFLdJOf9zR+yVzs2C7+VAG0Bbk8oJ0ovCS5HJba\nJZS021/GMckQGz/D04wvD1IHCjBE+d1CvdOfTv6+tuPUOLvogHJ8DBp5q+6J\nzf40cs7do2syJYJnKZ065bE2iAd+i8j+edJH5hObJSNpKOdp6fRYU7UqzsIr\nBg2It1m1FxwooXbv2JVFP4Dv60RwDpHpkm5RyZMsHcxj3Pu1QGq8AXD4zhcj\nSnzfjF7Fwb8a1mhN9hGiMsQZ9xdFwp+OnE5GzfwwwaVqwhRUJw6a0Z5V0dmg\nQmGr3xgDvUcbEC3To8Ezp/CKgYo1BfyhaTvLZpK8QWDKoccF5ToxK/4EZnYi\nz17/Ppwha6bk7Nt+jEjLQT/CI8s2DHm5TAo9nPsaUU9zSVEE/f8mfPh3/3Sz\nzxDLlywyUDt6YP+hnpnQyTOyhYjiB7rHb0K+W/9jem6P69E7C2fzw879rspE\ng+V7\r\n=eEKV\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"axe-core":"^3.0.2"},"_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-axe_1.0.1_1533936872553_0.5640590370887333","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-axe","version":"1.0.2","keywords":["webhint","webhint-hint","axe","axe-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"cfef3a763e31ec0eb7719786af205d7130817817","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.2.tgz","fileCount":7,"integrity":"sha512-n7N88oV2BKWXTwtnp6Ax2h8R2uazFIIiZUw00VlGJXFKeDb/S25pXZrodu/5CLhcfTjtkxEocNkx+pifFPeyrg==","signatures":[{"sig":"MEQCIDwCZ+B0XbmTYLY/M9kPWq6feAHqjjlwpnWPEEcs1VtmAiBT2wkrqEFnUFPmIiBOE8JRddHArCoI/iXTU5dACt/j+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhImDCRA9TVsSAnZWagAAVYEP/jBeLDM7swT6Wg54AL5f\nk7s5s8w1t310mNDJjy4pAvkhS38P3/i+trxK4IYpVx/0tQ8oOExqEcKq9hYd\nPWNKcanfv7z/NaTSfdJXICvkZrfbUBLYmzqHVcWG3Xkm9rnB/lkbfBV/rkdi\nZ1XPE86iqxtFe/q3zHsck84r8nzzMGtNDsO+S8Dt+vnRt7F4EH4gkiSKhSq6\nmUa/EHY4tNJzHvww3t0SH/TfQZj/q60DHqlYRuggk6YEZiu2aD3495myQq0K\n0WJ2SjugBIe6+W3Pc2rr4b2HRkzUA1evIVy3JTeCn8RLQ/fLJaxQ+j21Pky3\n4kd/M3VdotSZ8m9eqenogSlWo/P1OEFizS+JdHTvNPHtHEkrPUlAXm30ppZh\nIizMXws4wmbmjvpL5fiKZWdsUgb64xwNjw+YguJ45otwtm+7EPa6C9LcWZw8\nz7GSECGOVhH0GbZjcY6F1xKeGWYkGJR+KE1QS19IL5M9UBUUo4T3c1J6R7Bi\n7/GpCoBlhZp6u8svIiRMwzfvnz5ab2f/CAYsbaGhwa/WjUPVXSGPGAzU6PHg\nSoBnzgitgSno6GQF65tFfvQ3Ca85i4AXO1NxLBAB4FgOKdTrmGlFb86Ny1C0\nYe1aXyyBg+nnF1LoE3AnVcqPV9pq6Fntz5/ix0FE0wMYo4zjVUAb+FkXtVnD\ngdTI\r\n=iiMz\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":"5.6.0","description":"hint that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"8.11.4","dependencies":{"axe-core":"3.0.2"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.2.3","eslint":"^5.4.0","rimraf":"^2.6.2","typescript":"^3.0.1","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.0"},"peerDependencies":{"hint":"^3.2.3"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_1.0.2_1535412610801_0.7235069219699388","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-axe","version":"1.0.3","keywords":["webhint","webhint-hint","axe","axe-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"632ec5f43d0d6eb2fec34a0ece9ddd2576a9b967","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.3.tgz","fileCount":7,"integrity":"sha512-AewllkBVFmwNiMpu2iCg/mVU+4Y1Am2nGNr+YmgtMQFQ5JnNF66a08edAN41vprcW9b/D3fAiKQWjIsW7/E9GQ==","signatures":[{"sig":"MEYCIQCM5GsmGd/t8R8RFR5zjzaSFTlFIPa908PeZdj9R9xSJgIhAPGtk4yyPd41r5x6DLy0qIyg2fQpmsP2L3OGVs6kGs4e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhU/ICRA9TVsSAnZWagAAyPMQAINM2923jn61b9j0ZOz9\nZfEbn2RSPwIYOqMGu5cYe6ohS1iDqgkbZA+9oHcXnhfcPkz/cP3LI6d9IxG2\n2v8WlkthcUL6l/1nVDpNk0GE9X2DLGJYh2Lvw6s6bW9eUWK8twG7L3oJnMXj\nESpwmlTHc+fef04l2hRcPy+vWCebTt68wlCimCmTicE1+6KIxBJPrKes74fR\nz7N11Yyj1A+UEVsB0nc6oL4QiDSoEjBsAVyPvjyBy/AcyVLS4XNhsImpaeUF\nVeUhhACHlIq6izJORWw/zSurqk7UBtecMUNDaHxY+qxsS9kESNBU+Q8ygMWx\naJjn29WCVTucSQj9MGIMaLwFz/5MUupXBvlAwxmv4v1ofOWNSUC3LvqgDoBh\nC+VHcvhhMwi2yLQDjE1uMC3zYh8Hbc38PtTY/h6Ps38Ql5JQl1dQX4S1jpf6\nPgd+55XtWVhLgcrM1kiIrP5QO0jV/MkuAR0m/TEMyaKUQmtlwvjA8kSMGe7r\nGSo/TvaaPFPCd95VrmfU5lvUoI4b0AocO5ivVAf49TzX4PVx0O5Gt6/01FrP\nYvg7+95OmkftXGxXhoQAaqsNlwbyHfa18ZCcQYdZ7lF4Cf5Pua2MLOs1aCoi\nO8ICuDazJDk2fPF0wA8bt+aRnxCri4bvv8x5Kx4ZxIzE0gXLVT4ruiCGrgnz\nf4xg\r\n=w++J\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":"5.6.0","description":"hint that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"8.11.4","dependencies":{"axe-core":"^3.1.1"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.0.1","hint":"^3.2.3","eslint":"^5.4.0","rimraf":"^2.6.2","typescript":"^3.0.1","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.0"},"peerDependencies":{"hint":"^3.2.3"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_1.0.3_1535463367362_0.29211028455333654","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-axe","version":"1.0.4","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@1.0.4","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":"a678dd855ba231a6826459282c5dad7080b7ab50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.0.4.tgz","fileCount":6,"integrity":"sha512-6MqPX5m/Y1wdEOZyt62zDt4431458mzk9nc8Vd+bDN3A43FCI3A8YE9LKMBqekiKUl0U9XO+/ZId+vYPizAQkg==","signatures":[{"sig":"MEYCIQDQY5FmJouGVHtwXOXVpd7Z2AVonH03tPPvAOFlJvJwGwIhAKpW/itnlSNAPfanQ4B7LgaurSIJMELjgBorhef56P68","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZXyCRA9TVsSAnZWagAAUYIP/09Zb70OhlDoFPb8Cvq7\n5MS82YGB1QIBDuLfhK09G8iGwvRKxtouTNPEGEDMumvV2FgrL+fjK/G3OyLZ\nEPITA7SM/HoGVXKRCGw/NK/kvmE+tHZCod5nOJNoldM6ure/IDJTfSgYgGaR\nL9K3QMJWPgekBzFZnCfbHvk3SECxpXVQEhDglPhL4LW4DANnXacQ5V/ronW8\nbLzNljAWSryhqYwoZDKAqaAT84M+J11ziEqV5YveWGOe7jCTxI9LzgmgIxyJ\njKxR2HHF0phwI+qds9Di9+w+x+1radnvjc9ZNzikDwN4xKxAVlCRzmjOZrxZ\npCgIZElsbP5AUO2kCTTLUfKLI0guiMeBaq0fJfx79Zs/uonRwaqUpwRFXmNv\nfhfLRintSWXjRYbIvizplYnIsNPawo7Pi2u0O+sX3jxp7RzmBGR0ni5FkZyx\nqaxEx/v+SjHc8MLX5mTNNFTTO/TqyimBPkud5P57g6/cTDK4+X5waRTFpso1\nzFNyEYgJq3ILv1+/45+JwNU6iwrW+ydPQeiSkANs8n1M7BikUOmhRZTBtyBQ\nMQisL92T3LCbT5+tb/4650GLu/ic6tP6NXITFAQTsJ0MdgGW6eXAoacbmZyL\n1EtvW3MyNJoScIO5Rwdldstl339Nsak54n7KfDwe5FrA0GS6DqW4JCN3kOU4\npBzK\r\n=kuT7\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"axe-core":"^3.1.1"},"_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-axe_1.0.4_1536267761451_0.29107555723166256","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"@hint/hint-axe","version":"1.1.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@1.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":"4788673a9f8005b6267c8305e9fb7e86f1151378","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.1.0.tgz","fileCount":6,"integrity":"sha512-IRQUgg9FVl8cl+1m3LYAYKio9AAXn7dD8FgI3giAOBQO+r5tZbk8o2/jfAUpCKge9w6A+BwUKTZm1a2IUH5yIA==","signatures":[{"sig":"MEUCIH3x3srl73u+XTGBsVQzywtDvtaIEMOSu1D0zRvgzViUAiEA3ebequgtcI0M3rQrNDdTib1URpxhbTZMoETxegzlK3o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmDniCRA9TVsSAnZWagAAi5AP/3zt63NKWNAVNhrTS1rD\n6xPGUW/9u2KH9WHWMYaPJFRoueAFZzLXJ1Rw1RqhO81/+bH6kNbAvuJKP4pp\nSAq5Y+JLQa29QFFT9ZwdH54ijkwwo7EPCVlJ1AR5KkMuWkJKsWZhfgxGxSt0\nHdA9scjINGsh60ZBJYRMqqG4djklPTK8nmBuTT2YNTpzxybuXxXAHd3vIkWl\nWzUfAecyQgrOrKD61lL8ZmO9MIeC0LzVK0qbU0uFV1TIGs17RwsRFygc212J\nmkJobSJCwaS2FjkP8Dj4zU2qB+GNLZkT0PRJhjCnDtkGR9YYArUK3+PrlGoR\nFVND+YI/ADh17Zbiu6HDZADUoVk61LZBNF5CUHZi0idYbNiPFEzNz7+xBpgs\nULzCcT24vifIIKXgDvhFjZbbaGhbyylXdO581PBX7S7w15yWlD5JwfPFVbQt\nvaLwaZ+We0gMD4Bta2+n84GBOQPoHYas1C/DsfQSSSlJ1mybPfSMbz+x6oz0\noicVQVX/XP6Ax7v7qrEsQeWXLe+/fEDPy3Cd0ygI1ftf9Az4TqrRFjzB5Ylp\nPbEbZvtSDBUm4FUepN2KlDhDav+oCXiNN9zYLrwIdhszYEZwrXOP+ksS/4zv\nlB42U+TMTHL8W54H419hlfVtfuJ3n0VmcDZ5WfWMHfQ4c9B3+zNVskBCwQuP\nr+ho\r\n=Na5n\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"axe-core":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.0.1","hint":"^3.4.0","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.4.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_1.1.0_1536702945213_0.7664609328376639","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"@hint/hint-axe","version":"1.1.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@1.1.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":"317ea22349f24a05c2dc631b29afcb1cd7d282ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-1.1.1.tgz","fileCount":6,"integrity":"sha512-ca3K6stn6LZa2wVkNfTuxEQzv/vdWKd4llDMpU8RPg6QVxtPhNAZs10py6TLIljZqNbuMcVMxvQhrUxrNDxFGw==","signatures":[{"sig":"MEUCIQCd7IKvC8AnpBTo8jfZ9QaAldkLv1tP1hoLpH2/awjB3wIgcSZ9zpTyYjqti2TdCJZBOWkDC9aS0I6omtcXneRrt38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2jMNCRA9TVsSAnZWagAA6UEP/R2sVv7lyoN1cRiCKCk6\nNVCmA5Ap7IMcb/gYYLPNAX5i1PkWIz0FI4jAr+7VPPa9ckBhBje1HyKdAloe\nXC+LpO6Zw2UtIqv/QfTDJbdMlISJ0JBe3QTNZbMY0R62IRTaKRQ/Gf+17CaD\nLzEAHJLKeAXKBkifG2s51vEn/BvIkaCBY1G4/4jOB/9iJHoGGOlq7AYrDRYC\nTeVBQ964D7W0bI8FnbKvRjrKDZzdTDamk/S5KwUF3n2dUkw9ALk6q+mFCMgp\nH+Qcz+EnUR6AMtDx5l4JruI2/sQ3tJCZOYYcqC3Jfk3bKoxFuFxZwmGEUWsk\ncDXSsyoLHt/mho2FzayBv1RDYnAMNol9F1mHnWECrvgYzXmH5u8vFNJyOrHT\nRAR/R/wxmz82MDq9Qb5wHavDs0Jb04QAddoBqPczeyHVZ9LqKQrPZAcpn++T\nv7tJnlJDj4oE28Z5NtAauC+kUAmldJZJ/HEdt3qZYW7gLzUEi8PtCPjlob3b\nAxw2O76JjHQbPsn8D5anSHXZD9v4w4WmHyv8Vl9ZcxuG38qpc/oPQfVFKsxT\nqRqr7LkkGzTg34BrWIzzlkm6PjsVH4+HXphfH9Y4Pi9jK1kzwjbwsqOeis6K\njU3J6X0nnCiZjj51ZnWqwxYJqwMlbeUNXHWbXvB7Btk4Cgr/aRRDV71ykK3X\nxWk6\r\n=vZWe\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"10.12.0","dependencies":{"axe-core":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^3.4.14","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"20.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.4.14"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_1.1.1_1541026572586_0.685486011958363","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-axe","version":"2.0.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"5825d44be5f93555ec04b98a0220d171254561e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-2.0.0.tgz","fileCount":6,"integrity":"sha512-WKWQgngMQHv2QgpxvHNuig7Lpe6xFtT+gG2JJmw4BrQRh4cqVe4IrYBcCK3TOU7k5E/4PtCXDyXmdzSnUzZcag==","signatures":[{"sig":"MEUCIH/HMwTr32DQJ54GZkth9f5StpYxyWSxqYYWlnqGg5Z/AiEA8LPYsLQ1GsbVlkUQ8A1UXNHo5Qlo6c1qsb7cHR/vXoE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4NR3CRA9TVsSAnZWagAAL5UP/R73i3QMi+XFdynso767\n93Qhb23fl0Jcdn5wNX1uCRg0I8JYAOBAouY+AMHwWcOpAeozvO+92gTzSOuZ\nl66imSs5zB04dGoSLEKMJR6woTbN+9GrSeJu1WXqJX4EBJ2rgcgvc3EYy2tN\nXJYzuhn/kJWyOY2DmPXBE8CORme5gQRzLOlmy8wHOH8RvEWc1K8KtkUjtLaW\nzleNgPV6AHi7WMQ6izGaNwFwbIvYHqTzL0mwJTFl6x/Lg4Um0HjkaYXNc2lZ\ncefuPVh+xTbrLifv1CCSeuYb3shqG61uaJ5iNTVbltxd15KxUiEfcl/GiOow\noZOpyhmdhme7uq6O2gtTFK5HZEomFqlA4/c3r7j1hXeAGL+3oNLB6/Wq48/m\novZRNjmSjYcYX3DCrTIdXgSOwtqHrRSWGBK+IcJU0NlZ3c4yqj7ekAuHcp/q\noQES335OtjA0ZYmh98dvn+mQPk/J0yUs9SvZQLJlXgalxDcOH8KjqAXHcM+y\ndP4M+hShBCXqIXjAxcGj6w4mojcoFHIs1Mly9iH+hDrYr/bX0vLbxIMTMIst\nPZrhOwfF16GLa5GvEWduwcGHh23ceXaAOrsQK5nodKoDTpRv6ICGgS2QL2lV\n/mMd+2W+ntj87qDtyFcNv7jorC6Xgc0VCAH0AP9mnePbkaa57hpxtQnlz4nI\nZGUp\r\n=M3Vv\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"11.1.0","dependencies":{"axe-core":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.0.0","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.12.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.0"},"peerDependencies":{"hint":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_2.0.0_1541461110502_0.1967242535499234","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-axe","version":"2.1.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"313dbc161ca4cb967928b486af65a6bff7a6c1fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-2.1.0.tgz","fileCount":8,"integrity":"sha512-pXX4BGiVJSzpixqSV2Y9ACJ3zZu7LRIOpZqSNQ4b4eCJz36aLfVygTPBCMwdNbuChpDXvR77ijRm7Sv9nGdN5g==","signatures":[{"sig":"MEYCIQCrVThiQLGlnIX0Tau/XtXiInIe6C4O4J07+T/7vTgpXgIhAIZno/YVRSRZ6+Iw2goGSYgExT1GnpF8eMcJha/0AP2U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/jF7CRA9TVsSAnZWagAA4rUP+wWH2FYHYommabEiiXfp\nNGcXwyHR/DBhCKANYzGv+9tUxvvqD7ImxxLLunAGCLYyXrF9WGnJf0SyM3+2\nO66n/P7qscuLgsnDiTDmoFh6BkVbWakUHW12Xpe5WWiqoKVecpl9Z2m47Zmv\nKCxxrr08lEQ8CV0ibSz4iTGxuBib1cyJB0t6BESz7CtUSzYO4L9xFXQ+Vz1f\nrR5c3zLDIh/AONpAOEaVkIhi5xPk2p5LsdlBv1jOs5/txJQ0D0vq59zk9orb\nYc7Xg6FDyqz1FxbA6dvSFImANsyj98p2E/79JUOWFWGkY6AZkFE5+ZCCSvZP\nxCqbZkEtLmCZL9w5LYQzvtz2GSm6XzHBlr0RLNAawNIaLMkVkkzZMXNszXZN\n9ROtK+F8vbph8DCWU0PCmt4mj2ADwKDLik700W7+zJ65AGZjFFV5zn0GZBuQ\nPY/clSuJ4bK+3g+PCLL2qoBlHuEXwoncpeKG5b+cNFz8dA8GYnU7SAUfQ8Qz\nrGt+M/i9Y4FcFOQQuY/5YdPJmBG1FTBpj/CmI8YsarSLBAxB8LOw9jjx6ceJ\nlvcad+jd3hvLTm0+Off9Vb/3C1COnVVOr8q9eP9a0f9oCtKrPSd2J2B7Rxm6\n04I6XCYuVmZAjvZtT5NgCgVZe9Eo+IRr85ehW5kHQ18ydbNVNlffyHltlJsw\nKMQd\r\n=AqtE\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"11.2.0","dependencies":{"axe-core":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.0","eslint":"^5.9.0","rimraf":"^2.6.2","typescript":"^3.1.6","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.2"},"peerDependencies":{"hint":"^4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_2.1.0_1543385467255_0.25997531629135673","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-axe","version":"2.1.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"b8540373f303b531de936ec8ad2a5663b0e8a51f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-2.1.1.tgz","fileCount":8,"integrity":"sha512-+Fw+y9AKglTrFqkj6DRE5cr9/uahjKGHUS/a2Qox9DllWtw7D31mufk7L5oE2XfRo3cT2BqxCY6+o2fzmYt0ZQ==","signatures":[{"sig":"MEYCIQCfF2Dp5SuCrHi6NeXFjXVW1NWK1SpEk4hMnDuduJ13nAIhALweJFOX4JaYGvXnF7UgBcT0QDkDI3I1C7SHu28wRsQw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLQvkCRA9TVsSAnZWagAAIa8P/3ZIB3DLGGJRdITJuvWH\nnoM2XT066MKDgUzlcwwraS324KtGPslVmFo3RnBMALL4Pz0YRlaFHnttmEU+\nseeDs6S4PcCm2j/q6eLI3gWBqGL0evD5DyK4tWh1Ps3HseWtxGW6F9+XKZYV\nxvgelgpNjEXmI+78VPufjVHNa8KAqwiBTCI71f67H5nZ0r/I3mUSxHgvguFd\n50Dy5VuVTlKbjUPj02X9ZxsY1hxFL336WHI3i0e2myDDSfIDsnCW21Kox+LQ\n/d24Z1OAQpVJ/AIxRZxoxqLTomsnASk9Mz7rkq5mLE+x8C0sBTdwTn4VtCRY\nPsv3jqwXfAGJ5cceJtKYctemJS4PxhnBbf9Uu0+TLK7SNyL5s202kTd1nn6M\nr6lPI4YdRGFvsZl9rM8g28srLRZXPY749+FjrmM1y6ytaLcj1bL/r/OdNrdp\npjtS6k3TdOJI9uog9TfN2poGJx3YLCxUhfFMNenhuAkufeLujZczAH1QnDW/\n/CS35b4bzSzIpKqNh2JCko0qMmMywTj0GhdXhNlKf/gy/ljXUKup8QjYsjhI\nFSV9G6yk543/P90RcWaTPnQxVWxryYK/AcK7ETSGHG0Wtx4vf25joEB38s9b\nLR/XQlrH/vJLTmDIBjC8s4cffC7ZiJ5CNycei5NNEe/BClV9pVs90ap6IN+B\n0PpN\r\n=/bgL\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"11.3.0","dependencies":{"axe-core":"^3.1.1"},"_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","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-axe_2.1.1_1546456035933_0.32927094474745466","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@hint/hint-axe","version":"2.1.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"2d670079fd2f899934b0d512b9104ed804006fd1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-2.1.2.tgz","fileCount":10,"integrity":"sha512-a4cdL5/lL+B1Eu2tz5coPczmZe2b/klSvFK2WC2e/ewrawWplLlMFD07/h8E36A9jGLpRo96t2Dc8ABnI73wDw==","signatures":[{"sig":"MEYCIQDXfnQZDc24khrkvl0RCgsftYbNGEXixhNsnJ0TY3Lc7QIhAMQDu8rbxKMKSmmHvLbcMbkitZX8ScsssI1sOtd8ahmW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbzwdCRA9TVsSAnZWagAA5n0P/jh4I3j8i0eaiI0Z44kZ\nwxJz6HzETZYpZWVznWxUUF4sVVCwiPan4eFc5dt4xctIFSK4IgZoyw1l/5PI\nKdwGc+BqNNpsEFLYDSTofPfwP7d/+GRofK7A2mBMqIfzzFtg4VTG2Tm0Megd\nkOANG6OQnR2ugqpG2bBQx7lQn9htYNiD+2qTkjPU4v/3tgqnLS7Db6dDGG/g\np3Rzi/+F0fK1GGa96wOVnfZjSRLJSg4XxqsXJm90Tj8Tk/5JwAg/9wjFtVvF\nBMhvw0W+ld4Rtv8ShIjYkUsUJzp4ePRBHmSF792SdvCOrBHZFiRnygEKC0tZ\noWURwjRIdVWFQ+gCM8oT57q0Upot5qADSn09qlku1BZaqQfaROKqLAgMAMaS\nK/zreh8FWsLQ146QP5zn/BnHsBrzjc8tgmFQU6gmG7Ylf2C9EsC2PhN0vPJW\nZQsf8w+aB64sUhrH1c5ZT5b8bn12bCxMLknJLBJ106YAfgWoEtePIgjO9IFV\nHTjHXqwsm00gj/2DohmaXu+nJIprABLZF7P9q+r8yKM9OS7VL2kh4Qipn20d\nRjaIVHtPU5l/eCcMvlmr0bscPa8a8KVr33eAstb/dR1eiyq/0wxaUx0GWrLN\nILATtzFmYE58Fqd5KbFe28R5en1ZYZOom14PjfBW+BZU+EZO/+L3YFO40EUI\nuWWt\r\n=mRTS\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 that that checks using aXe for accessibility related best practices","directories":{},"_nodeVersion":"11.9.0","dependencies":{"axe-core":"^3.1.1"},"_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","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-axe_2.1.2_1550793756412_0.6852990240945265","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-axe","version":"3.0.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"abdf6136baa01c26a9a54f53c6a4f2c2acf920c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-3.0.0.tgz","fileCount":10,"integrity":"sha512-FyzL1Y4Q3bUp7vjbB/UBBkDsy2W7kyi22ufEde/6kBiumRyldVRNlJkAZccSecSX0LgKCSLOJIj89YjBCvWhxQ==","signatures":[{"sig":"MEQCIEDTrvn6/FA76E6TqUxKo+/29UUwrzN9qeJFECaoi0F+AiAeyWUw8u35MahGM0elb44nBgovvW168pDNe7MHFR54qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc233dCRA9TVsSAnZWagAABJQQAJD+6xzoCcMZ/gsYBane\n/FrUak/F0mKtciM+PtCpDQrnmk7JIYgvEmwVpulO+KFr9AkOOoRDJQkk0Uqt\nZrOBdVm1FF7vOATLC1NrhRIvVe+SRf8ViQdxh3irzEMmvfH5Kl1F503JA098\n9MLG/WplB8SiL3vroUWVSNrm/MsKLp9gvIQlbENl7xtNsoDQXzjkW1+aptgY\nxM28coAOSb5KoOlhzP/ptK7GMndjHeXaKLKd3OGi/ksweg6ITULX39krQugU\nOQ5Doa4wIM447eL2c/JFPYrS4lLCXxYzAQZ7ZdUvXAru0+zLbYEFExkiSjez\nTXpTE7lTp0tZQnkg3tiWgmF4meICIcbRfUEFHAdVvj9pBJjpL8zQkfsO8Wpc\nwZgfO6E7bjbO4U8KhtWuVcCV9+aKSCLWaj/iDUXBeI6FUMKI2NgWDIHXH7JN\nvQb2XyspsLrk7H575F8sT42CDGzzC2rgvx7hNmfWW1oj75HdA3lGHAXsEaWY\nEeYvgn/GeXStuZmrgGr57ez2x4kMOv6wvg4/mCLq13lpyRAgGu5gkcWzIufi\nwhrgJwNg6rLbplyCR11kYHN/6NSkGQ+0SQq/HfnNnBryi0t4OFEldGVqUu2V\neXNB+seZH+k2C7z0r+Gad8YHRRFe+H1uweTOMfpddAjUJ2fP236Kpolkk1J2\n8GEB\r\n=Fyov\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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.2.2","@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","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-axe_3.0.0_1557888476610_0.8409179604954149","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-axe","version":"3.0.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"91e40d8ab2821fc348b9d0c1556fce989533d02a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-3.0.1.tgz","fileCount":10,"integrity":"sha512-5gNUVB/FYCEcv3HCAPYufRfnePZWlpm+30md0PaIymw0WYqiO/F13NrbKOpwu9rZvVvKD/n8rsriC3cp11+/9Q==","signatures":[{"sig":"MEUCIQDfhfXK8kRk8yJYN1y0DWo/WZxGhX344AS+s1+GaINeYQIgOflqquQGiibq/b2SR47CPOznluJqctco2KQ5j+2dnbQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25K7CRA9TVsSAnZWagAAIxMP/As0VAjeAFDNDK/3ZNda\nZQhd1+ni1sJRQCfm6nzQMEJX4CSSDSK3IV7btM83NVoTzfOGh2PrPadNVBni\nf2e1dbFIN5WoxLZk+MHfTbyKDUUbyJ4wSAPaTAugcOBzjolRMOBPx1IEkfYC\nan33NT/fce+7Z01OUM745W8+ETQItHxITA82y9EcnwpXmZKvYkXqeioB1afB\nj/tyRhakh+xjUG3oZub0bhF5Kr33rL/aJzBhuLlmHX8GobxzZ8hgQ7ajALka\nthC0ezCLkPhxqIE1cnUGiEtGVMhfNSfNwzFfcFVkyhPxtyMa57HO+4w6Qprs\na9A4RQkgzYcsiIlYF/VRTGKwfQanQY/k+xiU6DoyEKsYTbk/tl+qlkag3xPw\nqCkN1CXrbQi9zRpNEfcyI/COwo1VSP0ZOzf2h/qRSwjoaN8D71d/WpC0ruOQ\nS16xHC9O9upexMxx6LpbkWzc6i+T2xpehKZLYmxoc0lepLZa6T97EbKIWDlK\nxqMCpYX+KbuODtFivRIRXKWSKTl9nohy07frXQmCHEOJeKUwiinA2k3vtaZB\nxShax+P/diHvxyAZ+7V3zcWzBFOegT6AtOlsNR2AsKUpS3QHKw3MGc5UDpX8\nK3SMRsjVqNPzTL2w0bOieMSEI4to6leCTxbBaBHnmGEmbFJd0Ap9+icXn3WD\n4/to\r\n=pryb\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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.2.2","@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","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-axe_3.0.1_1557893818009_0.5895440487832946","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"@hint/hint-axe","version":"3.0.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@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":"282b50c9e915d7c324092ab4cf7115abb39aa51c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-3.0.2.tgz","fileCount":10,"integrity":"sha512-AdYs0IsBeF6tBSHX8n+D1p3WtoQ3igKcSJcXmr6GzFqw1khP+pviG3/yeCGdY0mhky3jJIdslBGIB/gl2V/YYQ==","signatures":[{"sig":"MEYCIQCS5l9rzglTO7bUvFzycWGjzKRBTu2ao7vJM7lBQJKwRwIhAKeg04LcIikIsFTr2Fi98aglKRP0s5HpxUo+W/56rlWK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sCuCRA9TVsSAnZWagAAfKAP/0zGeBORd1XgyNSBV2tx\nraTekbJ06jKMuxuxfi6GUqUWqUmw/bChIwB7QAoRHIcsfYZjB3ZLkRxQZytI\nJUshNwTxhG6BIqjwkKYi2mPAz/UH69wjaQ7Kosoc3TzHDen97GlbyvkcXwYC\n2WpyTr+QazcGcy24J2SYjsGTFyPZcZWPcLKdyAjm1XVxxBiW5YtJ8fzpirJ5\nmLS1RgMwbr9u0LbzEku2FkIPoJUK4ObH416+mjMW7Rz+TdThOHDPLT5tlLRK\nKKdwsMDheDtUjn0U9JcoM4P2LDyB39Hk9A8nTKVp3mlLqO1JPCHsG1v0DTEB\n6Nnci+Vk9Wjia1Wl0SHtu42+e49HjfV3bwxijO/jYea3Uhge5bHzF8Cp3kz/\na5xkhRP0Loqgq7K8pGnuGmH3x/giXVP02NI7J9srEJWukerqQa36HfPhBF2M\n7HTGXKPxK+ILiIK2a8PhOhudGxUO9WJJy5Mqty+uzYj7R7EtdI8ozvQBCpuJ\n/Q5mG9GgwHqGb5HliuWQPF+K3ZXLzhopByCKeFrKUb8wefqbrFkljsX7F5Mr\nY9dmSb4pGqzPCzzC1u0PmeT7pwfBdE4srYE+B49ciZea+tFaIHqBWYGZgev0\n9Mioqtg0syKmi7LtPD8imZsShcPkvDSUtsOgk+/6WAou+iF4VU9XSJZ2s4qY\n12Lo\r\n=DeIn\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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.15.1","dependencies":{"axe-core":"^3.2.2","@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","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-axe_3.0.2_1558626478465_0.33873770812981574","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-axe","version":"4.0.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"01514fa2006370c081136c0f318a788735d87724","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.0.0.tgz","fileCount":101,"integrity":"sha512-6JGKo0vg1hFj99mAWHnZxxPTD27mAr1V09wAhts6BJJOzg1Y9l377naJiPWwvzhbQp4+lZOeZhsDfaAmFkDuxQ==","signatures":[{"sig":"MEUCIQCbsVjVf+PoVBjCr0ysmK1/aOqbPJmPyMk2sJ/MmHl+JAIgFzVTCV40H6PZ0sAglAQPJdGTIKZ13pVTx1h0iA3lnFY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzYXCRA9TVsSAnZWagAAb3IP/1/UyOn/VU3ho+tnLdPW\nvHMAJdPmRSgvfPFffGJeRWg2XeiBIpxIe1IJ95iwNtpMiuJIr5Asq5PB6+zT\nB3QA7duV42XDgxu4SWtXlPWkz6GAxAsT88Yyj9b9ZiUhDTJDFjYu+udeBVNb\n+1m+Da0BTmBsjv1SVUoNU+MXiFn1ppLQGGVDOvJthh8cVCNSyHhf8doe5BdX\nJ0i/NOQ/xH9SjoacYjADb40qkG5gsq5Rdkq3irmEsM4zaPd13wVIwVYVn1m0\nq8YVwzJSLBnVPj/iNRgKzJENm3qiL35bxSx67u1fnNMbwgT6au4c0l4gI6VM\nbRDKAUqWkMwpUbPNzb1MRAjpjNetjqkLTCwOY0EROn2TBFKLduHcW73/Hv3j\nWcze0byyU+qYHtGogZCLoY7nJGE4Twn0Vpeu4wz4YuAU1OSl4y+5S6PiSvGR\nzQbBuL1UXQxYa9JVEfSlWfgEf/sKGgg0eZuGvO4EJ0fy4kLgT0WLu+RyP2Jv\nGibe+JrvOCb/bwCqfcYkCv/LS+/EjXq9ADZuolhpFVymJk99v9/ppWtRbDGO\nWiRm6ljnyP9ig8vJf82wAoWU9+rhz6Rbvw+qXcbpQAG9EsocGULr5PhHqviM\nbm46c3TpU0qLJ3R8YPYfqduCZ5CBDMojgkHi5ulbd8zW1A9DWXnsQY2Egni5\n1yJL\r\n=9DGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.0","@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","globby":"^9.2.0","lodash":"^4.17.14","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.0.0_1563899415219_0.4229852372891787","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-axe","version":"4.0.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"73f623d57d1f5f793efa96aa74ea1ec728349acc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.0.1.tgz","fileCount":101,"integrity":"sha512-FafGtptyuB+rdYEpVSgF+Mlqd4ydjwCe5mIU9XLHcj9UG1J5pTUjUzQ/JQL0NUR8spFduV92ekF10be5e1JUwQ==","signatures":[{"sig":"MEYCIQCvtuySGms4Xc3vcEPvFYkhbnE2H3cs+X/Nepv4/b6iZQIhAOcyE4S3Z+dLP7N8dRHbcRlIHYvGKnYTenona3AWAWr5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMr0CRA9TVsSAnZWagAA0NMQAJsUCbLN7LvSDz7PFOR3\n3q6Qi9Mlq0U7dJpGocrZ43pKgCnL0E/1YxX3ar7ZfhsnlhF+mpTdbSbiIkWh\nnGYwvRoM1fxXaqN3iip/w5II+zI/1S1TfZ7uThot+7KMCSMraqUjPS/Tw2wF\nbv2yfLEuSwMnPzELQW07PUtvGpjbGqaiCh7cHhuvaCwOvuye1nOjpAuUj3QI\neKk6EupaM4OF189Px3z/oPHRHm7bpeF/2W37XUGaaD9GJV5SLV7433SMGcG6\ngMJCIdncfBjiWmwDMXrjVVMXJRjt58q6jAGWWmRncrPevQdAqY69k9njrCuK\nIEKYz+JmFuJQzGaTGbQj3U6C73yL7F55gVlw++nDbjX3ihaU9yM8x+OgBZf9\n6KFT80uJ5ehXYSJUoGTbMCYQscWPjHCubt2nacrCwvZMSHLtUPC6ywvp6JSD\neRyb4UPlWtzyS4WS+l3Uz3iHdQFw3U76wWuq1HeM86scRh5Wm+TjolZXk5Yr\nK0VhDhjzelfiMN2VPdNzfU01JvzFghm3dzXB+Ny2X3dh4BPtiOfz8f54wx5U\naj2dZgzyzDAsnnTBkgmmkRY3gBP9RcOaK9nSvVli6P33Wz0Ueg6n86D9b91b\nvGSHza7s8s/JX+0R/0pB2YpFG/FtvVWN/l0W/nRGYxXMJDo32rIgRbOEYmfz\nMP9t\r\n=WDT1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.0","@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","globby":"^9.2.0","lodash":"^4.17.14","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.0.1_1564003059899_0.734604450962689","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-axe","version":"4.0.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"788dd076f5ef18d6814c778a41d35c06008bb847","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.0.2.tgz","fileCount":101,"integrity":"sha512-kTWV7kQ9Ortnt4kcAgnpF7Zzgerw3cseZlY3yyDHouvnAL+yhtvaoBYiErTh2mIjaN4oB4yi6vyhH8lXehWO8Q==","signatures":[{"sig":"MEUCIQC7eg9hgLpWimqzHjpDGFlVFGvJ3wt/w8qtdm168+GVtAIgYII2OIkdtClN1EcFpXDfXzpl5PBGr0h3XKXAx2hU/dA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJpyCRA9TVsSAnZWagAA6HkP/jsBHW4GtnpR3eQfTnbX\nMbRWDoN9YXsadBR4tg12EkVDURGwu/cwgXiwurJohMe/xBcDe70wL2LHMdFX\nbPLB1xxAiggeJC2B4wOPdA889JsH03KCO2GigPvg1OGp9mFiKbbeiPhDsjvj\n9pbrtWFqbi2/D3wDTFaGavs237zwfteiClVG0phisAJQ7eWPkbep3u8YmOW4\n+JDRpvmjgvBbhUUfDBVI+HFTcuTNULE5yS8QBbTOmbywDsxQln70DMfNea6q\nb1iMw/ldSl+Y6Lvkw1fiXgKjuE8M4Rf4OBv+xcsyolHFVN6Tq5OToHG9W8qt\nRzbaUR84mgFFpwqbYmcPgxhYlVTBU3rtDu2c64j2EbrQLTHYatrtoGikwpiL\ny8Cd+5I6uhi4XZKpVVTjpzYMD5IdCjpT5B3cANGA7rQb7L4hG/b6MrnlleNr\nFLnuqsg/XzYACZATjCJd2mzSiXVTRuiqvkHzPxhc9DtfF49zKrZZSu2xLmzr\nFVj6xm1f72qeimAD4dV1L40jlpFmPVjNlIx7BkwuheHbWZTd25xEV+NsTVQ3\nQImvwX4rhRxOjA31T2QrWKeB6kCb559MqCn5fF7tMxGUVhYifDSOxs286vpW\nRHlLDh0kf/4HeSmVBQqm5rNcsveZnM5pctPPzTgeMSH7EWz4u2Yor6P1SdST\nSfVC\r\n=ED2Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.1","@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","globby":"^10.0.1","lodash":"^4.17.14","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.3","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.0.2_1564514929962_0.44114836477580277","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@hint/hint-axe","version":"4.0.3","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.0.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":"c4487767f41b320ffce220dc470917c0aa34dcee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.0.3.tgz","fileCount":101,"integrity":"sha512-0DBwDB1YfSQSqBmeyRf9F/ZIbZPl1HJd+itJojCk4/p16ZRwYcnBSrjhDiG0tt1exa3RwtN/KPlGIoYiaElTtA==","signatures":[{"sig":"MEUCIBwDv5gwNvfjJeA5VypQ8wp5hhkYy5ZirP/aklCxLpK/AiEAorpITqn44a12hL0cNTTFeEEF5vJerPvJpyrTettFFZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeWjCRA9TVsSAnZWagAAR/0P/is64AOywVZsAvYst+rV\nJissKBt/s5GdoYupBdxh7mGNA6u3lO+Yy+nTqv+n/4l8nIGnRJHzjD050NI/\nGgacOwjY08gVcJwZS9BcvfxZHIVv9+HMAgXQwxVXYi3DhawlKWMVRlOhOABi\nJo5J+uA2frCe42TUw0Yb/7MC52NLdOzHzEGQx161zvKOeMKoA2ikHPlDiXw6\n8IgE0UZtnmwGF2VCJS2W9dINWvEDGfrSdCCMyFnt/lDb2RkbsxRH32OYFRPY\n8OJNGYvSRGtk8R53m/9g/7BcDBgY1TWAITS9WO/yImHRvtKHpF7MoCK3J2qQ\n9Qd6Sk+Pb/HxWRMMV2kQkQ1I3f61j0m5akpRgTNgrNf3/3DiVV2OPcRzK56U\nZQ0ay8aoiW7EOEE5IDle6OWGtGJkEQ+6Nt/uVRZ9bjndeFhKAGqbHaPUi7eo\nPSztEH1so1W1W4Ux3XBl6uW+dXwlCBACVn9p0p5AcOLVffw4scm+Tzx18YJ6\nDUrihFWYFgqZzbUTO5h7hJp0BIVcv6k3UPXNS7Uq5QOcZZzvKmUCyBxnwHzD\n1FxxCGVLT4NEqVP918/T/cnpd/8jj8wqJraWxuptNTX8JMRoeWz15NOsbMpe\nB0UWxguOjr76ZZSxMfg4YSO9NDrO4e2gqyqqB4aSltbnIj08AvB7BTvb54l5\nx+QN\r\n=LXNX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.1","@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","globby":"^10.0.1","lodash":"^4.17.14","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.0.3_1565124003024_0.526110871881303","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@hint/hint-axe","version":"4.1.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8e82fca631e19052f71fe05e7888f89a5d284ed6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.0.tgz","fileCount":115,"integrity":"sha512-LCuT4JylzlU+3zKqgs5VQMREiXiVfZOI220enOFr0YL4zDMkcpGIqfcTYfyrhitYxtFCNt0pjl+a2QTHTpc2pA==","signatures":[{"sig":"MEUCIECZXvkPhVs+3hB5Hi7pbezDAVEOdmC9ReDdfaNcewyxAiEA1UahAvvVO0bbNp9+YMKDtvfnPimOQn6fyzXxC2ENxas=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":112575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhbrCRA9TVsSAnZWagAAayEQAIEofcw5O1ktOqO3MxMn\n6eIYQttEpJD23JsAlsEm2Wl5/ryBM3FJtQYFZAbamWN41IjRpZKt9SawPO7d\n9NI416LHLtGLavaaiuvDkxdM3E6GUvsX/fM4nillRAdMEH9TbKgomKmJIjte\nFLclkdHlij4lJMBZfyb6uIP98U+SjJzjl+7KIoo7URE+lL44LmKtGoCfIQ+u\n1B9BNNPKU03ZRKaAsPQF6PaRANx7ysh9GzPEOhurbHKe3Mbg18duvIgV8Sbj\n9ngNs6zT+/dmpugqZ1DWfnz1t9VdxUOdDbm1Sa351FLcLgkFLCmS1NYSo6po\nni7j3hWAnt63eFzotok1UPRUWOiSXsIgeetcbJWqGPlZ87wuJw1t7gY0sHG4\n4bG4Tno6cYOUhrIWTytytlmAxhkvxyrr3Wpg2He6HM3/7Pzc6Ck8bjLbRzSr\nCYzJ++svOoBoQt1xw/+7hWSlW+ipLyxl6Y1ucdtuJmA0oijE19MGAxszvnH1\nSSoGGE1jDroW1T3j4JW07tCc95RMPvrs+OAm1AbzizBeSyBdp+DyHTAKBmKO\nKm4cD6CpMgYbcpEXJ7SFSMrERgmWZAb0iAWVGuFy60trNcrztUH8yx1Mm6U8\nj8IPIXZ6n47JOhNUI0mEee7H3n6SxQkGYvIWt6PNX/33nOZMOmzo7C+fF1l2\no++n\r\n=jBPT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.1","@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","globby":"^10.0.1","lodash":"^4.17.14","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.0_1565923050638_0.6749537543238808","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"@hint/hint-axe","version":"4.1.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4273421109d38cf1a19286ead358f646188dc78c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.1.tgz","fileCount":115,"integrity":"sha512-cwEJxgnxjeW8HBg+Jf4izl1d8KpXjgeZocVMwmW2+LshnFyDdw0ki3pYtzoqe+Ui9JUu+eILs7BhuKjj/0llng==","signatures":[{"sig":"MEYCIQCnOyPGuTcmcfYnqUMdFGEaHYLliYTa/WSALjpDu84UOQIhAM8kEy1mHEk6XPNMJYTYaEsR9aDX9apVpWnVSSevIOet","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":112842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/SkCRA9TVsSAnZWagAApcAP/ROe6czvaFOHli+wXo2Y\neQcXTRopzi+Fcevv0hPc8qzKvem3EWOtHFnpRa7LdT2STlnUb8tXAwZSPlkM\n2vFEOI1rXGmMc0VT9NiIYnW063X5sm9ewFtRGkDU5qK42P+9PEFcHNCt8aMi\nrP3FfBKVb3K6cbZg1Dodbqzhkxfl4QnV4vjPZOi2n3MMF9eGaLGanLTA82OE\n1QQHt3gdQaLBzDk5B8eEiRN7jCprt99daWrAgnJWVinpgfVaRhJKx2vFAoX4\nasoqx3DtGNS1KVKtRnuySB39nFpgFT55JPK0YN6wHrwsXNMcbl4GK+Akztrx\njCcJv3IbdRnBNY9Fe9eG0dWHEbTLZ3cKnwe1F4r+HN3CYqizWMX7rdeh/pLe\n5D5Fn5URF6rQsjV0AuePYbyA05NTynBnHooD4Wsc5LWY+0hCsC/w8kA8XisT\nxAOyNmovjJ8m9nr1DSZyTbxiF/vLKAi9rZXAn3MPIRyPJfg78zUDOEy0VKqw\nzuFAtHYS/yCF1WQiqWL+upMBq8HhdG7kYYj8XMdeIt0jtsaUQRLQ5gYx5HZG\nlbL+AsD5jgqeTy0g6JgGLsxjzdpKIDEves0PYER/qtrkNM+xuf/Qi7E0XT5s\neyAw9W5Spq3sPjD0g33mosqNGh2yDbENg/Sl768zbrvSWBQ86NkQOt/QoUP/\nsXUj\r\n=Xtiy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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 that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"axe-core":"^3.3.1","@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","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.6","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.1_1567093923723_0.5441155936868474","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@hint/hint-axe","version":"4.1.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5ef94d2df0fee2529e1c24bca8d7f89309969a8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.2.tgz","fileCount":115,"integrity":"sha512-XXZSQMSQFy/cp0uuLm2xgCkZpFB7anHF7Eto2n8pDgQvcT22u6XjYU49vStry68qXwkHrl60kIqmsDdTWqS/Ag==","signatures":[{"sig":"MEUCIQCQTjRw+9HLkBawpQmUo+dQpYhO5AdJQQEVxC9aMii0GQIgbNrHvpHgaZ6ybyDuQkm42eGxU/82WWCvFFnOATAZsNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXVdCRA9TVsSAnZWagAASZwP/0CTju5TE76o7y/tOdRL\nx71NztlWEOru8PMaQGqZ+mAVD8Ub20PKUQTNhspVsBNMbEl0hw+nRwCyIQXf\nMFNuqg+8cz60pXkW7S/Ko9A1t+UE5wubyRePgfrOvUIL4pNpf0owZlyJDx3d\nlbVFeeWM3x/Nr7k1wHfCX8KVBvHFXsN5AimM3OFHbPO919SbsXjpDC2arz/h\n82BTpvArCGiCL0DK5Bk9bn6s8YLXW3g6fs36Kgtb1p1nT9uyiu/Lkt3vWgKN\nMLD09O7N9ltB9hJZjEDc34P7srFR8BE8DFTtz3mQW6lyCKe085fc4HxOgLOA\nFqKpnnpLcjoJiHHUoXuV36sg0MARr7iQaiFWWY4x0RXqakYYJ2HrTzNJbA4Q\noyH7FjVGC5fX7i82OzPMtX7rI16nX+j24AOWaJE1kbZaG5Dp6xYIh2/P/AP+\n+iX8NsdVpd0Q8wTK3kM2PqJ5kAgt/O6NpQX8fwSXBYenjUAMn/JtMkstIxPS\n5KS9/8wtYV7/kU2q8Wr2rSavcxCO5edugaLYicNP9yCHQx1MKWCpi1DQyWpU\nY8jIclnNtTRL7l3vFgllV7ug3gAmvMfRWQtS5xFlAOK+CtLZTQrjDFUysKGg\nkPjGs7tphCdjl+DvVVsIBcB7QyK2vBOOQT5HdCX8fKgVJ8vxI/51DLvNCGeT\npcgB\r\n=2bp+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.3.2","@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","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.7","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.3"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.2_1568240988933_0.14636047953067255","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"@hint/hint-axe","version":"4.1.3","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3fc43e553cfb9650b0af4bc255f92ef201c3a13c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.3.tgz","fileCount":115,"integrity":"sha512-PPy/5TNp2KINRQW2KeiptbXfJ4gtxYF/uvKnUsa06WFSdUnXGcERRxf3mbGQsiH5IXDqR5Jwtq3oQbyeudwaXQ==","signatures":[{"sig":"MEQCIFGxhGkkUPMx/3IOMp1HpiJF04CANjyzTnMs5zH2E0X7AiARvv+mGbDO4vi3OkGlqHpMLmY/53doHAWlgYPsQeDjYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8lqCRA9TVsSAnZWagAAHVMP/iYNyPGZfhov+QS3Shd/\n4oX6N8w4KH2x90gmG09e6rnE2jgBOWq08Q5se5CcHEd7Yj/S2/CHC2+GJHmR\nIRPTdxEoGwKtUkzy+f+fMKc5DClkHzMasPUgNI35foToomF4Q9VAMn8yLh4R\nRbgP5w5shoRHNi0z+qTKkfY9eTe6yx/MHwUq796h5n6I007JWIkZSpHbrkZr\ncdjQOkReXRtCqLrOnGFy3usfNn/LDQvxaRjJ2GqKpk51n0yPWgYfpN9dydEa\njRDTDXLU5LYoFRmz4Mq/m7l5s0VhpKXWVxt4h8l8tStLw/cFC1Mn116F8pXV\nobR7+IqCkllRxNItbS54tefcovNRP+oQFlWI0o573V8GdL5bT3c/+473kV7+\nLQrXfkibXBzM1zxJ4PQrYCtQGUGUFSEeDv27h4OeXFTI+D3EhjqWSJp0URmV\n/7n4RVuWBRJMDG26o5nyNOuW2908T738JV85iHySk818XArDFBzYeVFm49Xp\nu0Gh8ncVWATJNXaGAKv53fzUOYsCGfyhRelvn232YSvo3S4MOIlqk5q++QZV\nWd1U8Y4za6ZGjeYVQy/R7jxnWFfk0ZLE/328nj0Dyqe6Me+qToKgGCRsUTI1\nmwGCIKgbnJ7Exnm8BkH2sTySJpiMFhSS3d/1rTOwz5hw9nkbVPmiskP0LZum\nQQn+\r\n=9TRc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.3.2","@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","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.8","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.4"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.3_1568917865756_0.6179876827643747","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"@hint/hint-axe","version":"4.1.4","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"66c2d63af126c144868fd9323d172693e8b858ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.4.tgz","fileCount":115,"integrity":"sha512-eFPcidMsMvMWK9u1RuSTOO2bccctfbZs8+Ty0ahGxZkcPsbForYE47sBbCE37vmKH8Ewa2XJ+rmJCwGbi0PCqw==","signatures":[{"sig":"MEUCIGbVEARr1Vj5v4s7M1Sd/BGXBA6We0s+CvjWAe8InW1cAiEA81QcxH+twRzFXgybubtGbeb48f3z23L+Ya3VOxKwV4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim6bCRA9TVsSAnZWagAAg0oP/Rs7NW6z9sj3EGOzu9fE\nGot9o0Qjs3ceIFNaKFdU8hNEX8NDv0lvw4Kp1oTgrOQ1aNiOvKs4YSo7pwOt\nX9DWGLwplj2aSi42IrmRe2TkTvJU+JH5/fUwqqSiVnZotO2RmgNNrCb3fMmN\nwb+eM3Sq9XptxjlScQiCKPudyrFRHWOKSKVuhrycPux8u3+PakdLHPEQzGNz\nNY//1CA5GaOL3EIDwhw6L/AxsKOH1keUjsv9cjWlu6YBtg1rjBhkKc1UzWZO\nTRi8eA9MmgoGAWyvky48gli7MCy8b4eRcVe0c3avloRnZC9UopDcPW06mmLc\nEXyId7MFuvy5Zii7XYldaii4TbYH2CmDs0+bJPEuGI9k70mfdcHt+6x8Hdxp\n/9SuQxo1Zwl2EmGdfBGcb6cvszJ2E+SW2o/Q0QJ3jhUxnkuTnNbtZR+3zGIt\nI3pct/7fK8wuqwI0mXrYiNbAHZ44L/TQ/Qo8Uyvh+7fHxfdn+x4nXm05r5XY\n+uNKkL0sY8MObL1l8rmhVHMTpALZV6aSPbuUbDu+YvV61NppDRuduq6PXaEC\nYaCBnu3Qy9w9MEFhvaVDRsS9KmUw7F2ytlg8BZkH2t1cXeZuFz6p10M02VOn\nNpbw26vqBcc63VrNXac5+4TZSl4ccr5mgrr5NISfl+bJXePg1khh4D/KOEZ2\nhzNT\r\n=o1kb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.3.2","@hint/utils":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.9","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.4_1569353371330_0.9362819034919756","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"@hint/hint-axe","version":"4.1.5","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"0af2b5ff01663263f02a7f8eb04cc740c3e4960d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.5.tgz","fileCount":115,"integrity":"sha512-7h6Xq8d9jsf/ljfVv4e4n5wLV8tDwTwkrC7/nNaaVGgVh/RDM+wX81z9RFB5jHakVcow7nI2CGVK2/gnJy5Npg==","signatures":[{"sig":"MEUCIEiTWXnrBeufKuZFFcf5Yvm3s+kZpsXXEhwcJoMHYOHGAiEA3xKz/YrN8w4U46ox8YdI2jKJFe/m6eIo+r7fblZkCjY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSsTCRA9TVsSAnZWagAAssIP/0OaJp1sTsKnFzXOeJgP\nLyXSwCFSgL5IhGE8BWv21YKX4/JBenCtQNxT0oOxpLwDbRPxdXUYV/q2tQOV\nW1AUDmoPcK8Q2ONt0FUxx63h2/uK4UecKF0N4HaXSgwF+6vL1ZCDzvpANSjv\nQbMHlUQ1g8tcK1hix2mY5j5sK9VTIoRBhIy0hNNy4LmJfEKdivbiDZfeueS8\nJGYqQblLX3DrfP+RrA3ktV3LMBccN4J67lZItZMhqjLoicS5C6PxB8DfaDCi\ndSKYxVTFVRuc4v3DungJZyKvF3LWxWT3BUBtHxxuuvjXC8G+KC7leTVobmNE\nmPBywmkC2mPHfm2EUUmmZLsoiGmssP0K6zHiELqisjQt57yQCIqJjEZwEv0Y\nZDOhp9VCElQLs9mfrlQmpMtniuQOtQnMRNVfHzObMFHFSLzw1PLqHblyJ4HL\nwe/9VqeoFkRnl7ek41LQcwycJykocmyg0hQju9hVMC2E0/BkPAIXdIEpicEb\nWQxN8OmlIwz9CXmGW32hX8xeH+izqpHN/0bIo+jwBhgzemilSmV7oteBIgJW\n71gaDax9I2Z1uZT0U/2SHKu3paZOOFIBZQ3XghZeN+3yC3Zj8v9Umur/eJq1\npsCQ0VR9Yxr4rkPjoOn4E6/7bamjR32BJldN3WeXBM13gTUrg+tgEU38Ls2W\n1TI+\r\n=SArR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.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 prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.3.2","@hint/utils":"^5.0.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.10","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.5_1569532690962_0.872927437929822","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"@hint/hint-axe","version":"4.1.6","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.1.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a5ca7059a4ef0bc4f87cfb5e1865cb9a8a85cfb3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.1.6.tgz","fileCount":115,"integrity":"sha512-OB/CYobvUd/2/Yk6wPjijmfmt9iLEANUR2rm1TzOvhETblZef+PQ3O+vhjQMI13I5wARgymVWgiKblONsziriQ==","signatures":[{"sig":"MEQCIGJedcnZYsLBvD++CgV69srQcWvHPQ9eIfwWL7jHLroSAiAQIhUv8kkpf9a4varyKhcINDl9YWyq8FRhTcBcOXgF3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3LfCRA9TVsSAnZWagAAhAMP/1wcdSYEjMCleAh7n/1/\nqEr+OXLo9YguH6pBsVURp8TwjXiSUBXehGOErs9oj1Vf0nRoGU/b+uWG1rwf\nUNF/uCfBiJ8cLdvPHKae3qduEltP5kSPLXFHvZNc/G4PPgfaZYKjXjriBzTM\nnsyVVcINPcUrjqWAHpaT/Vlinh2n83MOdq65bNHq7qHur9V++30DRC01dCQE\n5/1hNaPfVvQJ/ibvEiCBpDZai66j0vqsgCHuDRgHJWkNsa9ySVzzCNCnY4Jh\nuVyeuCUoAQuLpet6wc0pGAuWFPX8BsHGQKLlpGfLHP5UbInJD4qQkcz4+O9+\n2tuIGR8rSb5zBxAmR57e2tc/5jdneKkK4D15oc8nm2IUe6ltaBrgZzw+u/lY\nb4I6DvHj4yEiofgeoI6ssePDkMJstCEaz/O1c4BIZe+Gnayzrq8U29pSyGHe\ntpS+NbU0nQObUpDHzUH2nTnkYyPj0jLuTnd0qf3oHv5aRgSIai3Y4UK/KDgX\nlLiT4vyqZrzuEQvzwyxBAx36VSEg3r438uUtjaaiNfVlSXtVAX5eQ6hXHj1M\nkS500VQrgYgfdRFmM+0oePVMpG9FuME3WJunRiFC+fJzzOXan+CiK3DawW5X\npAypDX3hSnhzaAIXsaZ2LUoGCQzIM4AKAxcMoVzx8/3WOh7PsZc3FgVRswhb\ncD1x\r\n=Axm5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.3.2","@hint/utils":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.11","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.1.6_1571255006474_0.3090788322815623","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@hint/hint-axe","version":"4.2.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9c19034946a0837684efdff6a03ac571c9fb779c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.2.0.tgz","fileCount":115,"integrity":"sha512-hlOCVOA0abokzVSlBV6itgwWBFPSxf8irZriaSo9Why9shLBEjyB8aCdH4on3Vyn/7Vmn3fT0YrpjVtq6UnsBw==","signatures":[{"sig":"MEYCIQCQP6Y1Tj0xrN39gUPrZCHRAPAPNU9QnnIInPXvkZfw9wIhAK3fuElizjogml4f8ySVmG6UnBaY2+jl2ETuXnFBcVOC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":117713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL0NCRA9TVsSAnZWagAAEmwP/0mCudEUpjSwTZRcSbmZ\nfp0wjczBHxyggatFocAFSxxOia5tcmEZl/fDYpAi3ZWwNJmXACC4G6/RnUOd\nhKGZCRGtd9B30/oh8OKnNpvDsYDEzH4mjKAgdZwT7Gm+TFij8JZJYx6Gt6lS\nKtl3qyeFd+fhjY3ONxQI6E/QRTiHHjfxi/M6RtsdjhVozQZvaYSUvtum1evE\nJce44oKVFamtFqPXWPvUgxFSCz3bEQWkv+OoQa5SpcT6kPw1sgKw4tXlE7/Y\nyyo0OYWA64MBjIgXr39eZMN8cH/Rd0saAxO02jM0OvnBhEnFGfiI605Frs+v\nLdARP695iYevh9gfQC2xr1Vg21Qe9ytx07UgW1pwwQkwkm6wZj6wv2e0FdO8\n/PN57KfHqn31aKU+2wrgD68ny2xJpNQK4RLgNhCqaUcUUwvW5oTMsn6J7Pa7\nm7TsRg80OgdgKycRRZgHUqnsYFoAbK791bFzXVJfGfAe7hyds+AsjZBUE7vC\nnkAnTYwdQsI8e8EySQxxQBUCcBzpDXiNkEp3tRv6xcrQdr43YxqNTrf+8EaK\npfGrQpT2+ByjJrH20TRm3XMsPJ7hbbg0Ih6qZEAFXPlpM7cYs/Uix+annoqe\nVmXiQ5jwFLnvGi4GAfDwmPkYwJJbxobtyvcpy9ebnwurdzgOHxpD9V5G8UOM\n2iuF\r\n=g4aY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.4.0","@hint/utils":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.2.0_1572388109307_0.5701682575083522","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"@hint/hint-axe","version":"4.3.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d3f089816a0e98ef468213fac47ef205259aa8ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.0.tgz","fileCount":115,"integrity":"sha512-B1oSu1pBltXgNMnJVxrRvEFbKny/M1VZ+YJsJO5dzAVRahCADZ+6RLOMfFqkKD6whZIASGTkSntMm0qpY72lyA==","signatures":[{"sig":"MEYCIQDH6urlvakZPk19dtEeSYTdhavseOmJMkDSt2PNKiXWsgIhAIgrHkDI0fm2RGIdzbwsWqpEkLrnXqOmrftFg5vMHc5G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bPECRA9TVsSAnZWagAAjywP/RJIOyYMEBGPIqJprzrJ\njTUNoNCrvn7HUJtVh13xy7zv+HHejzI6xGhVbcJNR+u1ITzZ7Gktv1dsSPm9\njBw1sjWEFuPN+lO9BbjAwf+CLB9plvSJ4pRJu90iSOSYEMBjwl+R+T/Igg5v\nrb28BCjS3mabP4QKUD65L5BKvCWGX5g6fitaZ03IBEpikjmVVlEUOP9hKEIy\nJMgrEyKN8Cg646M/AaceP5e+k18iJUi8cv0bCaEA2fQH8E58kqktcu0z69qM\n0OeaHtiKvAbOCR5ruY6oWweV6jwA6FpQeEGE8rQfOo035cxAD+sXnmx9hSSM\nWw86fKlCTTshlEBwaOqtWSMh2f0qygl3F8+lOgb8TKeWLVAwqXnB8ATCsywr\nxQNetzvcgBPYSiLr4KcsbGBGi2sp34yQgMksz/ZDzSWxtvzCmyHAv5zEMNJx\nSnuCtfnvTriPV6/OB3clbtT8VP5baMWxU/plyKwndaitKaSxyYQIps4dercT\nSgnGWFzO/8fSedtWEa8lwZbQYNeRUZvF5dBWAwHoLhd/t+EU/8s5qmqmaotS\n5FfjtTpW3nxa33GOyB6A4480ly3JRQPYc76uUBtXc0diJs0DT4QfhCG0CDlM\nAOYn9z3NuzlPDETAouYUmkp2TIeCntTSmpZ9doF89tpkhxU3gNFfgPh/wk9b\nxLHu\r\n=KBWv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.4.0","@hint/utils-fs":"^1.0.0","@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/utils-dom":"^1.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@hint/utils-tests-helpers":"^6.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.0_1575334851972_0.2037864850623745","host":"s3://npm-registry-packages"}},"4.3.1":{"name":"@hint/hint-axe","version":"4.3.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ffa7adab6814e9f6919a0a262c59ecce0cf5e0a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.1.tgz","fileCount":115,"integrity":"sha512-jjxJVhohldyKtr1eSDlUb6ROiL0R7EBCfT+DZwC5/JAtgZmve4DvtE3q//cX2BFPWi13NulyAZIFboaCjtAI5g==","signatures":[{"sig":"MEQCIAEW38pXvA+pTaI3XzSQhQytWa/yoIu83zBixWEysz++AiBH+LpkqYOe4uFYT4PMyGoQh1qAxXzroS/NlgmSSsktfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5yzjCRA9TVsSAnZWagAAtlAP/i5H5rkkh/JnXV+vkYqk\nX3GruOgfvFm7FAgoaOVrGEYjXtlEuzv9oK2eIQ0OTnrQQpJX7KGxb90ZDYH4\nAWGrk0+yCzaNqCj/b1rK/DnmIRWCfPWJbNMCwdA9MOW4pnS5/EbLyEQ7gIco\n5/5lhYR6wp/RbBysxpuYxT0HIIfvhoAaQKqJqF+zOA9gGwV93hXPXE4sk6Sq\nMieQZDXC3joBM8eA9qQ56lLRIWgeOag9I0QZCEtQsexzGe7+HBBQAgRRdZeI\nHcd+E68hvr4XBmFRkTXvBUgzvcWgB+jUCRRgIAE3rH4fl/z0YKzbfO/E1tzb\nCwvAA3iFha2GnMC+J4V5Yxl8BushKrxIg03i6Z2YqMDiN6aRrIyTvYz3QK+1\nruyqvLxxUm7Ms96KrBTcwBBaflSzQkG2yzWYnDiklA7+YuTlCSDw9ZdZd+md\nIsT0w38ElRL5vdc91ofkP652mWLLSHS/s8Kq2cPbdaBnxPxmYKTjE3V6iWi8\ntmAZ4vAmO59A2yNC47FOg7ugTRTo7dU2jozBnMJU35aS7+SQrMPaMLNWsm+7\nJ+tn6lLTok7MCa2Fece/wnL2HCr4UZ0w0qkScXUL3Fcm83dbxX95YyvLhDGY\n+ckAJgzZEs+QLovtPlIt1vlPvDklwBUOxoztKAlyKF0hav9QDJgdBrrQ8seX\n4hK8\r\n=RhDW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.4.0","@hint/utils-fs":"^1.0.0","@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/utils-dom":"^1.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@hint/utils-tests-helpers":"^6.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.1_1575431395395_0.3976215165547017","host":"s3://npm-registry-packages"}},"4.3.2":{"name":"@hint/hint-axe","version":"4.3.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a78e7ce5c50d7cc481c59d8bd7f12ae9cc4ae51c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.2.tgz","fileCount":115,"integrity":"sha512-195k3sHmQnZcCSSmzK9YxyiC/KmaHuIJLoEfPKGT4k4EFxXYEC7mjnibh9/7B4SSDWg+2EjZJyI0P7PGO2f44A==","signatures":[{"sig":"MEYCIQCN9WzO3FHl0bpYYrhEoOnuUsWF5ianp2AWzz8BdzRA6AIhAIQ1G5ZfQp6kOio1BTVtQPxS/IKMp+ZUhlrDLH6+Ua8q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E13CRA9TVsSAnZWagAAw44P/jUT7IsxlaNfY6eVVzS0\n2KDtx8ckSZuj78epBiTAff2ol+avbXH+bv98rZdRyIAUwzIbcTdHuoUp41BF\nSkLMqWFfDoh8YLQnlsXNk2pa8MVNwEppLnlS6qDmJ1JjfzplPAgo2WX62kqE\nfhKk7wYNNcRREz6TuV4xA0QO9Jmnno1M0WB+lCbWYNI4BHKd4PIVcW3oL+hf\npCO7F7DZhf/vLgD1UW642rn8S0HCXIlOwMgdo1k5wUJafrfEYd76qwPW68rC\noVJc1HGhW21fez5/5ZRNirjZ7dwCYF7w07SSS+pMmLUfYI+h9QFuqvbAsGeL\nf92XwmavXC3j8ni+pOgXRV8LFTL0coAqjK15d/lag/3cZgIbV/csz0TnzFI4\nYo+Fp96Grp0qqNDgn04Yg52liQk3snKANAwzME9v41Myvs6mjc6NFhFtRvqd\nG7QtekGot6HE+CNzxLDyR6Dlx609d8CmsjjeZEICSYZNXWu28w6yLGmOB7WH\nUtuQpWi+NoX+6a6ybOzjVm35PVrDOSMH+ATsgGcKat6dlnTsRDlg7TrHfjKx\nTc0tfifjvIGUzDkJZLcDoH2orEqMt+a/j3TFT78u29MAIRJFhu+SHsXaC0ct\npnwm8Wqq8np3opbvxB3CFAYBKtmkNXVlXTp7+cEB0rxKXf1sB3U//qitbi5d\n9POn\r\n=tGgF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.9.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"axe-core":"^3.4.0","@hint/utils-fs":"^1.0.0","@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","globby":"^10.0.1","lodash":"^4.17.15","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/utils-dom":"^1.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.1","@hint/utils-tests-helpers":"^6.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.2_1575505270400_0.07819533594983574","host":"s3://npm-registry-packages"}},"4.3.3":{"name":"@hint/hint-axe","version":"4.3.3","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a68b77c4a5394cd1fa77ae5d55da91382d2694b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.3.tgz","fileCount":115,"integrity":"sha512-9aFXEk6uXjKafTNouaK9JPq5RU1w4lAqDGtiFUWCmoBzVL362mq1tuk/r6h64jsUzDek/pFtqXT6DR0T0Atjsg==","signatures":[{"sig":"MEUCIQCVNfcV+NkhShyo69IHiLpbVmUclskCixLSO+UEd2CotAIgU57Iw/2QH/cVSxYTmxfXFJwrjJhagU0+6x6VuuBLFl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpiBCRA9TVsSAnZWagAAJaIQAIXco+VIUEXuGesnzYDh\nh9XKkdSOzcYcu2wqVvCwKB6D/Q66GtIdZVGUgR1Wj+Kt6LaQljncsIqG0BkD\nyOQauC/Osk+mnt+Z+mmu8xJMCPZtHKqrYRoSaLiQ8XacSTSkfFk2mBdtAO/Q\njkaMBDZfxtjLWaJnuVuc+7IbfLTwtkLOqu5s8ueQHLDgmqmiq5KKzAG0wklO\ncNMcbRdZoqr1Fr8tpVZSXEHiZvewRTkuHoqrsc5c7n7v7tVxrz4GNO+acusV\nQh8TG7MOY0ZastmiDhkb0rgPE/glEjK8fLe32nKGqV/EmfotzjRs+zx7IMqn\nHZ/zzz0O/pUPEfH2S7ZSN9PWQTYK4N0S5tflUByzyR6ZeYih1HHeiUSJnwvn\n48C15I4qfQjSSQlkaeRX84FuT2tYyXoarx2GEEpATT8B9ASqdGo/vqZldrTS\n4G0NBVNx3EoXdtHOUfuKVpQsgxe7iVqJQm8LMOxKB/oDtDA/PC6QwZO/4Cnu\nU+My/XSdxpTboz3jRyto5pCscNjz1otaEeCb7s2esoHttIHNavoICdXI8Prr\nxxQFCJMdUtw5IXk43R43dY/EL9ITEPFdyZCTP8a6UNmyf9NCh1bS6luj3bIJ\nFy2Ve7wgyBialK/KEXZfDDxGeyg5jLg9315YKWPgkDRwCJfpYMH3eCTeXulk\nSk/1\r\n=Z5z8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.13.4","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"12.16.1","dependencies":{"axe-core":"^3.4.1","@hint/utils-fs":"^1.0.1","@hint/utils-i18n":"^1.0.1","@hint/utils-types":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","globby":"^11.0.0","lodash":"^4.17.15","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.2","@hint/utils-tests-helpers":"^6.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.3_1584568449325_0.9008778300102214","host":"s3://npm-registry-packages"}},"4.3.4":{"name":"@hint/hint-axe","version":"4.3.4","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.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","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2691818ec6a7b1640a4dc1a6e62a26c97883aac9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.4.tgz","fileCount":115,"integrity":"sha512-6TSreUBB/srHI47wVXlo/NknjPD9dqDSyadTuagt2ZzMLfvFwdOCiOaObR+hAd8TJOSvE1PoVOtW/DCH1v06vA==","signatures":[{"sig":"MEQCIEgE+jOh5LCPAhfAY3qQHxXGJfGI3QCoDGchd+hYJz54AiA7zaA9RhFKbTK2e6GjpqNZtNO9EEgztQcuy91XRsrD0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130636,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel13WCRA9TVsSAnZWagAAu3kQAJaD9OwTYKnxidxpZSjo\n5jBUbIMJctRND7ciPBZoK0n3z5OwSizoBLwNozyVq8Nuo3Sr90uGANL2uC6g\nvMf9inzfESoXq/QviLJNvUN+/JPKRnslHOCPV8LovF17D45pz+e/5rmpiV8/\neJ+GfQUu84n8Ogd0TdDiglLQ/ACI8Hw6nLPWV03MeoaKaFM/5TwU3PDEcX76\n4UDCdegRjIG9hpcT8pr/EyrVshuePkX/cuNE+pQpnFoggoZdbveyz8FLN4ic\n4hsFwPhHu8sbfLCyKCA825iYOo8cZ78Rhv8p8b2i/H/86vgYxLibrnxaR5Ng\nQvukaBzdBp8KiwVD6/wgHiMe3k/OM8XH91fZJJgFP8U7iPnN6i4wI+xp6cs4\nIMmHKRaFQdflsS8IEWFsFCR5AQ+JjN0HHu2htnW4Np/rCyJxG/vrOfn1Jtq2\nidmfB0vANj5xPoT/C1gqwe/rb3WIg5xmbXvFci4jP3qyltZ7Vzsl2yRYiKO4\n3aI17qVA3Wl9dCXyPXhTMI9Q15NOHE/2oxm0o0e3u8hYe94M7L4WtH00Vbse\nYEtwH3TvUK7YpIFh8mM0Y9pyaVOlafkPz16UbvXUKsL24URzdhYhhOp2FpU0\n3ZeHOz1K9cZQsWj21xWmDtdHtM6KP+LDmYvy4eKZYDBMdK+1RU46Dx4KnZon\n6lKX\r\n=rkTl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.4","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"12.16.2","dependencies":{"axe-core":"^3.5.2","@hint/utils-fs":"^1.0.2","@hint/utils-i18n":"^1.0.2","@hint/utils-types":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","globby":"^11.0.0","lodash":"^4.17.15","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.0","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.3","@hint/utils-tests-helpers":"^6.1.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.4_1586978262069_0.3902694068030801","host":"s3://npm-registry-packages"}},"4.3.5":{"name":"@hint/hint-axe","version":"4.3.5","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5462d222abbab1516897af2785cce3755fa88e2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.5.tgz","fileCount":115,"integrity":"sha512-w6yLS6pMCLyJvg/0SBK95gYh8Y8bDM7YmbUTBvDbPr0uEEJZhx37hImdpzFt43dd0cAQzzIGxK4jr+e/w0PPrw==","signatures":[{"sig":"MEUCIH2wG6T5ojwrfI5vWkJdgDJy7+dBPlTSev7teNs779UTAiEAhL492zUveIcCwUcdXtVF1WRJ5Fkc+RsA7QG8/lWIHsw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwjSCRA9TVsSAnZWagAAZXYQAJphfsfTdU79CFo41VRy\noAlR6/BI2hMfH8AyjLc+ZHXNTs30NDdWUDrskgnRAwyBKrvI7jT9bvukGTpg\njmtB1Cjke9qOQiAMBzE+qPvaONNYfarF2NuWewjqFlKk2nnibE74HeyAnRVA\nHxOWP5seV5CWtGyF39z+Z/cqxZ/v3TBM4lis4CdeiKS2ofrwyr3NcSnMJv8F\nlNdXeLS8H4t+Up9OjtG4VUNQbikIuiTOY0GBhZ7S0WNECfOldz+EMxDlO3St\nJ6e0/poZvWD/t7Bqfrgfe4VlXDAofW7a76tgGE2CRxjGLb1g+s4d8f2t4Sdz\nquwPO7Qe+OPd/jTh2cXRwgBKe+nOCCtyFPBtfWJ5vy4n374yTE0mfG07iVON\nCOY3vZVUN1ju1KKqtCMMvTABI5vm9Q377X+E6/gipBK3idz+YxBqMF88is9O\nA382Rdrn9FfBsFf3kxLgL4jEt9npvOZDC3k/4uFhC4YxvzwQyc71dLKSQ5GJ\nUSwyb+b2BSXfLrifj62PSBu4cER4rZpohJZsM4PrqcGNyHsT1YZLbWgNP92J\nQUCZQmkFAePHwYu6YF8v9Mw3jM1bbhKbhFzO1lD6QZQctnx6q9y2hOpmFWA0\nNxCnONI32CJgXUmYf7w9DEnMffCDFl//JRLw/MkwPV5WvONaKwCnRc98J0tm\nA+P8\r\n=NtdC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.4","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.19.0","dependencies":{"axe-core":"^3.5.2","@hint/utils-fs":"^1.0.3","@hint/utils-i18n":"^1.0.3","@hint/utils-types":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","eslint":"^6.8.0","globby":"^11.0.0","lodash":"^4.17.15","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.1","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.4","@hint/utils-tests-helpers":"^6.1.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.5_1589840082027_0.8891481556213916","host":"s3://npm-registry-packages"}},"4.3.6":{"name":"@hint/hint-axe","version":"4.3.6","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.3.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"05edb5291c3221d39f0598fa991a43118fdb48df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.3.6.tgz","fileCount":115,"integrity":"sha512-iaavP7bgxHr/PoGKAjVMh3ToH+W1/SmVgao1kvEAOh2nkJEjMxGskS0HfF9+rnxOo7sY+U12VTFCzu1ar4dLMA==","signatures":[{"sig":"MEQCIDT8CpTi21p2Id7pX5VimV+OuCNpXvqRTtl2bel02tuvAiANvpez1s2aEOU2bpPgX7FRhDEpbS6iOzv3Uh94l56ZAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzq6CRA9TVsSAnZWagAAzCgP/2s6CzQ+twSlJ3VCI8Ap\nEo3LGHXdvh0U2tpQABSyES5eLW8qNvjRO0xAevsR0S7aWJDEWx2aChv1CHsM\nvqX7/7CPQiOjdZmjFd/L6yiWm0gXkG+SmKrfVdCllNtADHAlTh6KASaUYyll\nIMSfsNvN8UStQkrzlKWrqeGLGABF+wD6U8hy1PyDLObO4psP5vwzm0GL67K7\n/wmebqa553muCKasFFHibVHE7XC1ZWE4qYnPFECNkE1H2fqUi+Q7O8qJHIeR\ns/cYNSNvjBpINngHHZpISRBv1qPqZm++46cRy/d9t1rwP52yt++/M/W3PN5g\nRmgdkeoU/ZF+rF3Ab9AAMKPCBztWa6qpXVeKnGFWcwzVzvQ2wnUmE2KXbbKz\nkD3FHa9ZBzNsJVfQhdgd3YbvuP6SJCBfIonhf9p0wt9KZfix7k3l2QO2RInK\n3eDgBMjYMbAkwzOq5hMGrQzW2MV7thhv5jmgsXkXCbrTTvlBP/K3c6BnIMCq\ny17DNH4m/x3fZQpLlVMTWMrhRiCIcjDz1iOjiDx/9Ke19Fi27JDiX35gbqIy\nWaKZK1/Ru85TFKYKHYKFBGyuEkeMrkWff9aEbOC+YUbwCC6i6mTK8desiRjT\nYY711lfwE8iSOehYeQjU7dXNhpoNaDMDAXYaS4RNaUzg0MU5yIqsCDyA34H9\nQkvd\r\n=hae0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.4","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.19.0","dependencies":{"axe-core":"^3.5.2","@hint/utils-fs":"^1.0.4","@hint/utils-i18n":"^1.0.4","@hint/utils-types":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^6.8.0","globby":"^11.0.1","lodash":"^4.17.19","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.2","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.5","@hint/utils-tests-helpers":"^6.2.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.3.6_1595882169889_0.47026872583882273","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"@hint/hint-axe","version":"4.4.0","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"87cf08e544032830ac4c289225bb0aee68e17d95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.0.tgz","fileCount":115,"integrity":"sha512-r0CurX6WrE7LCMnJCa3Y4XZ+QZcLVckOL6ijBTjjar22V/2u3ZEOpAkSRMu65sWrCTg2ayD5rMFVEmSx/E6png==","signatures":[{"sig":"MEQCIAPLkVy656U7HzGFiyi4tAeeZjJNmptDFt09m0zLY6LxAiBmr1noifeNTITbOdzG9huFa774ctcY8WE5BJ1DcapXWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135090,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDcnCRA9TVsSAnZWagAAkP0P/RwG/UV22Xwbt+VjpYnu\nAYZmFxkqR4BCfEuD93qV0bIbdYceETmjAfU5tvdS6lbdx/MRpWiHdeelwt2X\nmwHQeNehdHwHdqzMyJnGyKQfXsWmtq3orbHfbdGWvErnrAAFzHeoiDQlGsqv\n8bf4Nb2PwhRu0rZgSLQPh+FBxVJP34orAXfqr8oJleH1Dln612Rs1BI3MAMs\nlg7kJr/W9VyYCGi0c63/E5KyNhKdI+6t8AqkjJrs7A7C5PR2pbqZvJEzA764\nuX6TXC29qq6iMvA5vx8Gj19ZQPPKPgJm6YEXpiV2/THOhIirTPez+XLSg3nI\nMzZESMFhBY+a8QJHWe5vqDMIjgqPUZXu+eEvCCIKqwkFvGxXpTAm6zeb6F5O\nX2HNmPiveuthjmyE0IFuzEKiIPslZLOeEd7WxwCf1bGNk8pLGzPm6TJ9Nz3n\nY8z8Rf1Bw8+06CkpjKarlqEGfHP2WIt/5kdergl8e0JpKY+R5CQveY0YnN8S\naB6NTKS3+nugbABzFOdpy1JF1jThV5uD8tDpxsITq1adbrCpylM8QAjXmvO6\ncGw5a0jb5Ez8heNhs3eStUOimZqRO1b+X0PYaJSNrntDJBxYK3Lu+PMlmzTt\n7cWvGGCsYgmpsvRxN5YcrPLbWP6MfSZYL6oGvFgU+n5x1g4QQ4AA63iW+/No\nwach\r\n=B5Uy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.6","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"axe-core":"^3.5.5","@hint/utils-fs":"^1.0.5","@hint/utils-i18n":"^1.0.5","@hint/utils-types":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.6.0","globby":"^11.0.1","lodash":"^4.17.19","rimraf":"^3.0.2","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.3","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.6","@hint/utils-tests-helpers":"^6.3.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.0_1598306086755_0.21446772743623344","host":"s3://npm-registry-packages"}},"4.4.1":{"name":"@hint/hint-axe","version":"4.4.1","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.1","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5549da8ae0bb8f97d8c4fadd49682f2f0df75978","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.1.tgz","fileCount":115,"integrity":"sha512-b2Z23MxQvysPWbYC8lV2mnr3mi3U/xRZ6RC7858echrWf9HDckByr+UH8yNHDFq/bpjZSNuRfbDl/A/i06X+Tw==","signatures":[{"sig":"MEUCIH9ZNHnEHKhqyKoi1HdotVAAXrbwkpg9ib6NoKmI3HUBAiEAqqiOQKmwJRB5mb7tB7lDcMlGBOeQj9Tacz0+nRBwKE8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135096,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrExXCRA9TVsSAnZWagAAeDwP/0vWIuE0MUPvLQWaBOAM\nBOMBRypejhHb/QXUgsNQrXH+SNxS27R0bC9VHklvJWa7XXtmL2e8Rgv3+gLo\nOltoX7xG3O8kF6IjbPLV0necUM0YOd7H6JGxF8zt4n0348ILzLSMt8kcl0FV\nvv2VMlWMZ1r6alKaUTDZDdL+1i9RHXyab7JqQRBeI7gYBy+ALfoz/sM6yLe3\n6iYjsE5AEE8FfEeEm0GTo0NpwlSWGiLWSROF/9oolR2gec1sYT1+/K22nopP\nRfTwfAulWUdKt7RSgJNJHGOloz/3UoNfny5hPmUGWfuWhFNZ2rBrOXl3e5xP\ndnjJ7vyrgSwrBu8DpalsytH7+5g7V9pDotl/y0SwUPeQ86Jnf2oyfVk0fAyC\n+u76MyfYXcy+CRlRRSkLzJ9UbBfAYMYIDAJ0Qb2qAOm5gkVTHjQeN+SoPKY7\nu8vgOlTs1T7FKYeyOR3Pnb1O5mAfxytBspcEw+IUZSOmq1u54CBwD4WvYCXf\nWRfaro1hfWOKkHe2ZVNu60ZkHuj+MTACUzl8EHQ0utRPjPqlZiJemMXgY03K\nzq6pulmbA+dXpKPuBMLMmbHYemLAf9nEdDh4ns25Q4MawORssprzjPLYmzW+\nFUv1Gw00fZ+CYIuCH522e6OschL/Iv9YCuY6Z6ZoAvwpLqVg8MHjwHq/u8ti\nQ7CR\r\n=f/T9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.6","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"axe-core":"^4.0.2","@hint/utils-fs":"^1.0.6","@hint/utils-i18n":"^1.0.6","@hint/utils-types":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.8.1","globby":"^11.0.1","lodash":"^4.17.20","rimraf":"^3.0.2","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.4","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.7","@hint/utils-tests-helpers":"^6.3.1","@typescript-eslint/parser":"^4.0.1","@typescript-eslint/eslint-plugin":"^4.0.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.1_1605127254683_0.906609702376729","host":"s3://npm-registry-packages"}},"4.4.2":{"name":"@hint/hint-axe","version":"4.4.2","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.2","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"821cea84b33b9fa9657c028c8f6bc157784a627b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.2.tgz","fileCount":108,"integrity":"sha512-fq3jxwAyCSK9yEZKMtcm1SHo4jyJShBZK/RaRE3eeW0A7/Tb5AURmeDgAG8/UCujZC40ibaSUcrsKgvgFNi2mg==","signatures":[{"sig":"MEQCIB5neGtW/I5GN9huQfW0bkmrvqC432yTZ958qceCnslnAiAL+XEP+VN7IBGifA04abJwdlFG1dNhmpmWQ/tmYWZeaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHErqCRA9TVsSAnZWagAAa9wQAJ5aQZwgughBrbY1nsQR\nKEmqnuxZ6mewCWuHhdSsJ3+VIAqlpaPq9kf0mgLTXdMUvOtItcREEsVrChUS\nfVfk4pAGPYxK5ItHUhU6hHZtVzf3SU5uXzwX/+HTsVWCymOqIKT26C/lgdY9\nO2sh0NFlzlYI4tLnvVZ04lw1cUagoLMeg/mMwNNaFgCxb2YxLCcczD0t8MYj\nB5qwTQfsAQ8JNFHR0+fNkRDS0LApcxtMJoLsbYdCcICI2ze9ABhiKLY2r2cz\ncVd+ZzA+VU/dswfffLWtXSJK4UH1zb6Rad40YV3GUasNzfpuA6oRIXgDF9BG\nfFjbbIQQLKYag5/7t0jgaGpLnu4xDScrXZBVFv+QADQKybOJ5xDEZP7SGioG\n5Inx9jZ3YgoY49MwVS81FT47G/QoT/FjervrdZD7yiMddwNliK7uzQGLU+pr\n6MP5flps8uLpcAe9vVJYU55tR6n5b6zutSK7K0emaHnXaq1I8K2F4WtwZrB4\nTEROBQiygyTLsyJOw/EeBsroIP/UGMNYQZ4UbniHXIOnnxGgUPeURYSOz6mK\nf27mSHHwdrqKLUDJioRMxhh9ibTgAcdAXQ0xL2gC7OUr1XQ6lcI2m7ovGxNp\nMaqnKPHdmjDos/bsPqsfMA2n4Slp7rIoXZlkvXNNZVYQ6x92nhkKLld7Os8V\nupHi\r\n=KXQX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.6","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"axe-core":"^4.1.1","@hint/utils-fs":"^1.0.7","@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","globby":"^11.0.2","lodash":"^4.17.20","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.5","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.8","@hint/utils-tests-helpers":"^6.3.2","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.2_1612466921666_0.4959785377362025","host":"s3://npm-registry-packages"}},"4.4.3":{"name":"@hint/hint-axe","version":"4.4.3","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.3","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"bb6b65d8d416f4e647f194fd056388cc96258675","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.3.tgz","fileCount":108,"integrity":"sha512-Gqb8dzxHx0rroXE3OjmIZ1ivYmJzU29ExagTLlOZm6KaVG+KDva65UIt1lw61yrbjwXnOuLR4T/lrsQoqvg2LQ==","signatures":[{"sig":"MEYCIQCXftfuzcpBZeDVd9mNep2fltHAIIz7vPvITdiDdtDAYAIhAJgS/eWUlTye3W3WTHAQleIGGTanL9dJZINQ6ejTOmm7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeWWCRA9TVsSAnZWagAA3vQP/21VBFuIuLNbyUHPaQBW\nvMs2RI9m/kMEPbgip5xPzVw6rHxb668ILQC5l5+BAvFr/qGG54GmVE8sbxg0\n2qlQfA/iT7PHbLD/zwX6Rkg1RC4f5k/Oux2rbaknlsKtq/nAAZOK/W65O+x/\nrHzRvouvEzSiTf3iciVlIZsZlM7SGF+JXK/+DX9zwOYdK8ZwgFMHmsDPjiXi\n8jeOiiLPw1RRUQcRoTtYg3wecxo+LWhGdN0N3weZUclCS3Cy2d806WxtLLzp\n3ortJZnt5ci+h/f/A5lt8MIjN065ED3IsFywdtd2Zgk942661ixKpbwl67Dc\nyXwH5Cilc/nmVdtYUbRmIXn71DF/JkX0f/wSTFDF6nDv+YukGACz77cDBNT3\naKTvqgl/yv87fFUjIPet+wO8fqAA7w9luZQRHNFfBV7FQWOFlNQM2islwitA\n6Cpc5DSe+96yHxi1N/z1437+AfRLOpU+P1gm7NPZKLn3isYQWaArpdUVFzAy\nsOnenVS/SCO1lwDHh5L9hKDR3wsAN6JQphbmgA0/qNvNDJ84DGDJdDPZWbPY\nnATEjBNk3iiHFVz0GmSRM3aAEN4Wz4d2JiwhiznidXsCHCYZVwL8nu2ONmME\nuefETRTAV/iMJaADpaPTkAvtp6FOvNDyKlh9/cMPsI9ZgzuKhNk8LObSFE9y\nVUA4\r\n=lNYX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.6","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"axe-core":"^4.1.1","@hint/utils-fs":"^1.0.8","@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","globby":"^11.0.2","lodash":"^4.17.20","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.5","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.9","@hint/utils-tests-helpers":"^6.3.3","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.3_1612572054268_0.9013574155020287","host":"s3://npm-registry-packages"}},"4.4.4":{"name":"@hint/hint-axe","version":"4.4.4","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.4","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d69b984465feb4a81a9019ba2c861f17e632d167","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.4.tgz","fileCount":108,"integrity":"sha512-LsQ/PQghgMYf6U8XcX0Berpt8be4hu4D3jajI14FEf1p8bH9mAU2KtiUeRsWiXomuTLgn6dmodFeGquxwKukkw==","signatures":[{"sig":"MEQCIFBTFvWdenszdn9Y1+SKoLoEPNNtaYWjBw6Yux7UJtoVAiApBkh6WcFbrbS8kMPb/CpvPzTggKG6MCL5+74eZRXgTQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRH5CRA9TVsSAnZWagAA5nUQAJcYfvOzqCNpusjEBZ8H\n154+oWPNcztZ4fES3Y+P9POi+tZP3a3htsuRJ9qRs3/HFeinxumOxRS/N9PF\nF/g9a95NyE79qq3B4v47Gzz3SckaOcUIxW2epNSzNucfD2uwP7k/X64TOBI4\n1kOKugtJfIqn5NBI/e33MQNwpqwAeJRHm3+fxAoHQfv8U1yBqPoKfHvQvDMj\nHBD4khnvVNjT8n9rWwCi6HfwoT+GKZqJN/DC8AFWL/jUnxB597lacPFhrlBN\nX6+D6ejeeFyhhOEQTA49VGjeiCvx3NN61vmuD+WXZIj7dZMKr8E/i60EWqfp\n7H4iv1rpgvhPIXGeJqtl5cHBe58BBx5UbQWo0r24xctcNRAgA6pFCGHKQkDK\nB9QYSmE+lD3VZkHBfklpDEX1ilAxGrMnKMXegJ9Ueb3XaG6IcraEszs9FnEB\nFdfaILKzoQsUwMry9trRbU8LcZ/w9++saXhvT7yEUD4hf2kEVwnoBFnSQ2+d\nyvkdYV0DNtDuyiMl3YgJRH0gC+Y7HG9uMexfhAf8UIRSmP8US1IVOwtGX0G2\nZcSE1BDqfLkwg44dwLuSJjc7HwSVNJjJINECwJS2XoWU/D16tOp2hntsEfo/\nLi4kMQ44AnMX/rXoG1Q/cEwqNHlcV2kcUdLa6sm1BPRBAzVmTMLaw4mk4HUe\nlBth\r\n=SmGH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.12","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"12.22.1","dependencies":{"axe-core":"^4.1.2","@hint/utils-fs":"^1.0.9","@hint/utils-i18n":"^1.0.8","@hint/utils-types":"^1.1.3"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.27.0","globby":"^11.0.3","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.6","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^2.2.0","@hint/utils-create-server":"^3.4.10","@hint/utils-tests-helpers":"^6.3.4","@typescript-eslint/parser":"^4.26.0","@typescript-eslint/eslint-plugin":"^4.22.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.4_1623265785503_0.9919927456055311","host":"s3://npm-registry-packages"}},"4.4.5":{"name":"@hint/hint-axe","version":"4.4.5","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.5","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8da4b8f87b768cd8029b9f466b8a1d41bcc0a1a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.5.tgz","fileCount":108,"integrity":"sha512-jK/BghBv89AGPBrC10AKPJvu3mkFOcfWG3DyIeQHG41wuRyxxrDs2p8poKad8G0uI6FKjIai2z6tVrsRUg7Vng==","signatures":[{"sig":"MEUCIBPgC/v2jp50BIuYwCnf0yAYYAPD9oMeVhCu/vt2N+BKAiEAhj9KRyVa+5uhfrZOZxjzuhSvi9Pc611QWbNq4g9CJfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149689},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.15","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"axe-core":"^4.3.3","@hint/utils-fs":"^1.0.10","@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.7","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.11","@hint/utils-tests-helpers":"^6.3.5","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.5_1634833165604_0.30522960994806314","host":"s3://npm-registry-packages"}},"4.4.6":{"name":"@hint/hint-axe","version":"4.4.6","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.6","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1a6e8e87c56b3f8b77399d6639f0a2cbea4a2128","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.6.tgz","fileCount":108,"integrity":"sha512-ZnzHUKKMLZqC60t6Gn7cNgdKFGv03eTC2huBF4SUrqerohoPFcrJKLFGOSJoc+q2DcT0FRsG53JiEQuNgV0vkA==","signatures":[{"sig":"MEUCID2WEf/svOi12OneHg75Rr/w5ZYI2e2qQmr3WOOfeP7QAiEAsNIjfisCrlhpFHphUawWv3iUa/mgkTpTNqZAfUeOHgI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150085},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.15","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"axe-core":"^4.3.3","@hint/utils-fs":"^1.0.10","@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.7","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.12","@hint/utils-tests-helpers":"^6.3.6","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.6_1635537386367_0.7402413210974155","host":"s3://npm-registry-packages"}},"4.4.7":{"name":"@hint/hint-axe","version":"4.4.7","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.7","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b95c97e6ffbccd94b1ae1ed2dfacb3782bd00747","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.7.tgz","fileCount":108,"integrity":"sha512-hvNFPh7nvnbsiwGfBMiYw7oZqEld6o8R2PLrC6FIDlploGxC4QDszUjb1zyg8fVCgIr/K8G2yMJWtCa+nLez4Q==","signatures":[{"sig":"MEUCIQCNAThUTOqJWhXerbnsgWIgR1jckIYU3cPJWAOKC3sGiQIgQO8mzoEEKy6g9leV+CquOLwfs/mVV2py+2a73HnN8aQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150350},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"7.5.2","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.18.0","dependencies":{"axe-core":"^4.3.3","@hint/utils-fs":"^1.0.11","@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.8","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.13","@hint/utils-tests-helpers":"^6.3.7","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.7_1636050545740_0.30450457449646495","host":"s3://npm-registry-packages"}},"4.4.8":{"name":"@hint/hint-axe","version":"4.4.8","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.8","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"791624a28d5a6ebd4e718b529fa70288d4a1f24a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.8.tgz","fileCount":108,"integrity":"sha512-PF3f13SyFQ/hMMoLrRtDG8uPPWdrZtuZQgyZmOpLmp2onziamsrC5OETp09tl87XKcqtuYU5hu7qjsvNTHvRFA==","signatures":[{"sig":"MEUCIQCFWDfdpVZwwDIBkoBqNREq8Bu+GszHITrxCqa79T3zEwIgGtNxy7TnPJNj5yT8AENgduu3mNNQJJVzP1sSiNRg824=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KRdCRA9TVsSAnZWagAAgUkP/iIEF5TnHoJ3r15Gb3ZS\nnfl6l4oAZ1MRkWf/hsLwSonvo8H3Jb75wbattF7aJS7/1uNiQbAHO0vPexwL\nIIAZzmvaERJvp9EhKRHmKEv58ShBYBgHmuC8vqb911qP7lPQNQpfPjKe0Pqx\nfsgGZo73L0lx0KjiAImG02ZXdgl9rg9sCY4aC408kYndv3HQcz/3Phgxec/Q\nYUWV1G8J09KJa0Qmmu23LqYzqNQP6PxgURHyschZceyaVx4b0GDH0na5dZK6\nRZ8/BCRcIEQH1XRZk6YUgqPhStXFW+Ivjl3G7DT0fxt1a5VPkxIzjMOJWWob\nzkMKaAMvjGgSe+cZqiNNQ5rcjhMkTZmJiukvqmccbTSobCTLT+6tS3fN4x/k\nsbpcgLIOnP1ZpQfsOIppX9lNraK4MX4ANmahZ5QPFz2U5kXZscTQ2Y+AOH1c\nw2avQ7XHqkKna0aRLruMFFlBo0UMbUPwmobqNKPosYnjW5WfWVH+f+Q3vL2T\n68KrVQscc9SREKJFQid4Zo7FxuJRybmH7ITlhUIQ8K85VLCsPqw3KInD5Wnv\nQdKA2DnCB3N/o66tH2aW2wi3ErkpIkfUFvp4Tj0QSMkpHZn636NKXhDhxw4i\nN9lwXt+wrV+RfH247RsdhskDgBuNEm3ejzovYyi8sRGjHzs93m1epz2EwgHE\nt9ql\r\n=vKXV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.15","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"axe-core":"^4.3.3","@hint/utils-fs":"^1.0.11","@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.9","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.14","@hint/utils-tests-helpers":"^6.3.8","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.8_1637006915370_0.04470173648121967","host":"s3://npm-registry-packages"}},"4.4.9":{"name":"@hint/hint-axe","version":"4.4.9","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.9","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"239631558eec12d0e01d6761da12e40fc8d6a77f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.9.tgz","fileCount":107,"integrity":"sha512-3qiZaXpKBzS2iOND7Lr2iBaS5XMoJ4hWUvQ+jMU4d5SlkOH2fr0wBagaijRX7dDHufLinlsAU/Et/G9jHPxwsw==","signatures":[{"sig":"MEUCIQDB3DnXDyoI/T3xaMdcYBqjmDbvr2pKk98+xVlv3T5r5wIgVRFwe39W+z/fjiSbEcpdNYo+UFZUfL2YIJALJvy7joY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkhwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo9MQ//Qk8H+jn4XG3KgBrszBMdCPovsoDoJbV1cfnNuuV+NdT/yx6g\r\ndpNzy+DKRJTXC1EbysrZ5Wp/RJPxZ0PgjlAraAH/9JMy8fO1T6IW10Q/0wkS\r\nNltmFgAJjJkCpvnW8wyvNXH6irxc0zqq7QeQ86kwIp/qOGAvKvxvy8vAQDrV\r\nsOKFdv4L+9DBdGq40iFj2RDCuhf6WF0F8K7nU3M2nUX7zNin3CijGGhf1Tum\r\nF5zaCTSLttjWVd5XnULE/K6uhtcFJAOIN2EZ5WgS7ifaZJqMIKlha07Q94mZ\r\nCt7I4jikJs/QRFfU9jn64aTByWQy7nOWqo4x2Jjq6imkla4h0ir++mNkQ4dU\r\nJqC9S9ECX4RcIzs0KlVk329J1lAAdtdNfl8UdqUqJYUdaD838EFEv0BpnDZ7\r\nLiB/WMvr7lxgjypRiR7mwLGacM0Wa3WB3BhoVTzEzMPd/iSrptYdZ4NCuTRz\r\nrZakR7Mur6JMFZG86KCwJGEB6M2HQl25JdmF6P0i4uLZ47FW/YUItPdqPBMp\r\nIBhqPHPGXp3gZhq3XK8oLp2pYnz+9RdNxGLbOIPGYIEMog6oDUa13w0M6SWX\r\ndPxQmiNOgbV7NgdyeqstFUm37QuMrNIuMdY0ovsEcPmxw4RYZ5xPYcwPyE53\r\nm48z5XuIbWPWL0L3frHX12E4u9p72Q5a470=\r\n=cbYA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"958c5ae10b0cdfebd292c67584ef5b99de8deb14","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.3.1","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"16.14.0","dependencies":{"axe-core":"^4.4.0","@hint/utils-fs":"^1.0.12","@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.10","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.15","@hint/utils-tests-helpers":"^6.3.9","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.9_1646938224741_0.3035866904340867","host":"s3://npm-registry-packages"}},"4.4.10":{"name":"@hint/hint-axe","version":"4.4.10","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.10","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"22821605a0176abde277115a1a2e98c78ceab66f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.10.tgz","fileCount":107,"integrity":"sha512-wGc29p36BPwteFzDJGxlT6R+Dhe7yQBweaW4ZZv64sUSyfC1mFOlyiKZ3N8SG6L/e5viwbvn+RPXEk80NrZ20w==","signatures":[{"sig":"MEUCIA2rfO61KIdoVA2/26bO+m+yeiQR5wMw2DnuVnSwT0L+AiEAwwPKXtvygHMylRwds6W/SBNMpt0lXJcbT077z1dxScg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG3ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqDnBAAoUIOudpaeOGhm7KdpGKOX1gxDCEDfIo2iGF8tjYDhINuQbyy\r\nejcUsIe/ZyIPASYQxTSrqUz1gqONc/i4R4Ub/f6LutZVTSeVAIa0ZajsiHB+\r\ns1/7xQwIWIwp+srUcGwARnD4Set18g7yDPmqydHT7hyH3ealCG1m48pRGA3c\r\n7DKrL2Kwy/zs+LB1DU0h4eP8baH2C7lEn/7oeOYqNUPz0YMMioBk5xVfNKRz\r\n39EhdX7T3fRd5DoLsNTRseZta5Z1SZfSUiYkf9zeB+4tB4UjHYMwltgpdVsH\r\nqmI1Ac+/RYf5tQ5BGhTRvUQTzt32lNeYuh5iGTFph/l98/RpQcLUNl2zeEv/\r\nv4px7kIwqV9RSj7NaEo9jGTAqak7kXzsnI6MCcwqu5jm+MsROGkP48rw3SPy\r\nGoPycTop/DyFpbiJ/STQzY8cWPvFjJCs7OnKrmJ2JjYqx5Qok8UPhRPnAff+\r\nyVy+2lW8R+2WW34VTuRQPaU/jrL+EbQysPoSmwUFJ7PmK70AjVyegqtaHlmt\r\nodKSYou0RizB7lTdBByhcJpset1an+ZL9HPwktWPExJuVykpByFhN6SZOVh5\r\nesDPDHemD0W1pan+Edykwtkxw4nUz+uKm9dHcj+g7gUJsVhMREAHBD7ikt9p\r\ni+/PQBzoMQaIFrT6jwoPPbnrLqygl00ktxU=\r\n=WUMN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"ed090aaf89fa89e6575bca6c116251a40266ae8c","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.5.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"16.14.2","dependencies":{"axe-core":"^4.4.0","@hint/utils-fs":"^1.0.12","@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.11","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.16","@hint/utils-tests-helpers":"^6.3.10","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.10_1651011033019_0.09749554982265018","host":"s3://npm-registry-packages"}},"4.4.11":{"name":"@hint/hint-axe","version":"4.4.11","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.11","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"60fd9167c67dd1ff889372c67de708f31f6ba1d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.11.tgz","fileCount":107,"integrity":"sha512-eLAiHF5lfemH6JHleNTb3Hd9Sj/0ZYttJND9NcjZmpczH77yH2U6gh82x0js6UF3D0pYjeB1l955fmKDs2aT+w==","signatures":[{"sig":"MEYCIQCkoLEqOUmvbnjpUfKqvNhS3LJbeNFm+QmUL6O+qd7mqAIhAJwLCfnMoL6xRH80wkDj1Vq+g5qL4QYO8CigX++Qoe5f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdoqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD9A/9EksxciZS7cpixDADVsv2ERFjvPTUMKDmWwOD4HRp73BPsRFR\r\ny1N4RKX0teo1lzRl2rTs1VxTqURXGQ1XxY/LNZ6AI18WhyhJfq1hGAflldZ2\r\nGfgCrkkbVdtRwPSVEI9U4i8sKAqPvnrnLLTSH13lxg3qCxOUzmAZhfOKXSQw\r\n0smmwNhukxqYg0eQCFunWqfjP84fQnxbJThVyyejdq1tFJ5k/vYYL7NyrFJM\r\nx4bbaDuPmnYzh5BsCA/sx5om/VCAewCFxJDme2AYg4rD6wGG99IOW0od7sBS\r\ntkvklk7cO5lX0MTp6XXmE/Yio9AV7WKnd/gpUAun+HAhZG86zukozm2H+iSp\r\n+JWIsBlD+NJPXuVAYMbvGadQlEfqQ/5QjjGKQuogpx/ht0Gbv4Ddzl11nYij\r\n3ilQPXAVyLCKYVscYJO/8+2hXE5ixzHXA7IyCdKhGsD4oEvBH4ygxjj8c5iL\r\nEzF79pZ1Za0LGV9IbXE103Ic8+1WfXK+OEZZzEPbKOAyv0frWi1QWMdR3AtL\r\ndlitresgVbplhGYxX45CvK+eMBSESeUJEylWsM3+3olmKZ4W5RZ1c0OKcsQM\r\nL+U5FKbMm+645dp57sYHDADkgtDb38n1zH+y9m66Vr7kh8hR0GuqFNBV7UNJ\r\ni7UUTlD14lhnyuzgYznDgHm6PQXZTvt6C9I=\r\n=Y8S2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"86a21f9d09e2e0c824fff06081f329f0382af256","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.5.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"16.14.2","dependencies":{"axe-core":"^4.4.1","@hint/utils-fs":"^1.0.13","@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/utils-dom":"^2.1.12","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.17","@hint/utils-tests-helpers":"^6.3.11","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-axe_4.4.11_1651628585907_0.7103518777115203","host":"s3://npm-registry-packages"}},"4.4.12":{"name":"@hint/hint-axe","version":"4.4.12","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.12","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c34d734974e51e67c76a2991b254959e59099424","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.12.tgz","fileCount":108,"integrity":"sha512-Yqy5zkIMYcL5GVlZZPdZc+86J7yDPKxnhIBwBy8GP4umeAWCyTrV6SLkkuf3oMh9NjmQntG/vpgI+FfUGURBMQ==","signatures":[{"sig":"MEYCIQCrn63j+5dVX4CpYy2kysIHLlWSnFq5MXN7kiB7JE928QIhAKajXOvnuimbZnnfUA6Ovbu4YoNH+S8UCheA9VwIaHeU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":159399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn86ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrB3A/9GV1LEHSyV+Y7t9wUkHzDC5TXSUyndEHFP/BvS+79y0QDa5zT\r\nL37YScPaUFg/tZzW3B0c+kLqfCCGxxiazpevHVdu9FqN6/eZ7ZCyOx+nS7eB\r\nnyPM8/Wlw/fBxE9JzBuWlUA6FIeVopvD9qOuF+nMYoHdhg7eBm557wNwQX7a\r\nn3RW4pH5hCiKnDjtoxvIAFKf5iqsBHJyqQjDk6mRlMoJxTaJKFH8nDJqwnth\r\nYiG3XfihvpDlOEVE2BJeHI/ZSef7vvDeu5DtAMTC3XHQe79jP66xuwiZHRWK\r\nG0hMi36DGw4r6uLFdz26U8PA8okfDVRzTJCEbhHGh920aJZrJxpWvJ5SSWMb\r\nMhvWEoiDgu4i5ptzWPgkgHOCkPrKd7xYxkd7sjCtK1++TSl3dWnYfkKppY6E\r\nTbLqCGfOCaTK6ewgmurBPrgFgFQLUfZNgsv6itp8rfM9E9KnWwcO3rJ93e5i\r\n6XKJ87QD9ikRgkA53E7VP/RhO3MfOyvAmYTmG+Sw87dgY+9fXr8TXAkUGGql\r\nrgvzRUHimKsqqCekoACAKEwRSgsYlnF0FnSGECsJx4tkat3nsrK+FwBfUd9Z\r\n0/hBMbDuP/vMkpK0YJkWyipcWFNv8p64oOeN3hkOjuv6vY9gpKPr6dLmijbm\r\ngNyzgJAW4k9FIssPmLC3VmgzabB6N2ev0O4=\r\n=jlvy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"6.14.17","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.19.3","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.0.19","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.18","@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-axe_4.4.12_1654554426501_0.6083056579282393","host":"s3://npm-registry-packages"}},"4.4.13":{"name":"@hint/hint-axe","version":"4.4.13","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.13","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b527d143d2135290490d2db4fcc4430df30114ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.13.tgz","fileCount":107,"integrity":"sha512-3EDRQfiFU58RGEpdZ1GUPeByq/r5No1iAsbddL2SDOFNmogbMmXpH+2j3BC+MNAMX51wORBfXOJRlPHPT3Ne0A==","signatures":[{"sig":"MEUCID41KKZwarE41m0Y+MbQmA8dJcxUMKhM2pGEsg/WovUVAiEAzFyaRlFYDA6cJS9OsUlVNzpeawmygb+wHWBZxOo+Ocg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6BhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFHQ/9HbvN6GBXa6q81nZcku1IPGmary1L+UCg+TsssB8V6pALBbYE\r\n5qIjLPFdmWPhHQSqcypgq212UrWYTgurT5bgEaOpItTjOQz35ItnqOPzaC8d\r\ntOV8/k1TsqwpGyV/jXW5LKvJkhNeWSEGsAYGa5hjg9m5gQUQ/EAYgmmZPMDE\r\nkFp6b/d3u+myzz+ItCmY/NKgwJWibVy1MCeQPZ6HCj4Xd5QjDJE0uUobEIGz\r\njAKmR5RqRPr4Fbb8ZxtHKk2Z6prQzCEVNsva/rwGcxdRRv3YfKEW7zOBsQ0f\r\n2f7WjNoi7anUBK1mWgko4PJ2YFgmbH095hRmBchzpx+njTSUGUPe1wSpCBcd\r\nCvHrlrhdyvgw/O9gluryr0kC6q8yV0Wj4hwT/y/ldjYLcWUofDpyVba0YkP3\r\n5N+OQWPHJbCj/GBs8wHRICwPpFhA74Of/9WaBsUe5zIB6nVKz0yjwxe3a55w\r\neDcfZcjHfXWYX/TQ5gRj2BetpAUdoC/ewEKsh6O19q6kD9yC6IV2I97QSfWN\r\n61gwlwo46Hl8NvHVNRI/t9HZLks0QRKBI45pBojqNTQTi8fhHMa0UWt3qooP\r\nQdbZ6m39kEIreMgL5d15CxTI1Ft8frJyf4UfUaVIbIXy7YqzLaP7dr8KfQeM\r\nbn9vkBEJMQ5REFBSg9F+bP8Ju+dNpivMlLQ=\r\n=kqBW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"8162e2a7a04d31bb7e79e09b1e0b9a2b9365148a","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.12.1","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.19.3","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.0.19","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.18","@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-axe_4.4.13_1655152737529_0.15528872359685675","host":"s3://npm-registry-packages"}},"4.4.14":{"name":"@hint/hint-axe","version":"4.4.14","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.14","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b059a7bb0020da5e3fc1f672765250674a801938","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.14.tgz","fileCount":107,"integrity":"sha512-EDZmszBZbvq+tC777acuMYG1Qb+ZW7o7pb9Or+hu9RCdAX4TUuG6km6t+Dn0Jt8dSErNbfHowu4ZRqBgYaMgSA==","signatures":[{"sig":"MEYCIQDtkoU/M3it4POufy+tcjiTh78bXMd76+l9mTnX72NVWQIhALzu5jFM2/niMlOPCWBts7GojdjDewL2B1a0WgO3VRPc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFQTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYXg//Wjjh0aueCq5Wvdnc5DeDA/BZzxcwH5I1krKR0fArfZC5JaLF\r\ngCAKX05mQuxaPApVGFK/l1za4nSIe/wCaSx0rgxds1r3LDx/LjLiA2F5Q6Gr\r\n8HQGxGAHFPX5xiv2IVvXsQVWaypy8E6UhXyINHeWbs/leeh0AWNo3bGuV3r1\r\nQzPMUb3Ia/MNt2KAfyeEN8Ig7CYRArEn26Tv7cMEAI0a8crFtl2JyxAfgDGK\r\ndfaf+TYdKOV893DYjHSeuosoT9p0LPj/8eBpXvaxjumYst6GYxpeAjzVXzdo\r\nh0kbVnhyM+uI/WVlbJOZmNW/g9BrDJ1U0NR8vPKYvGNfwnXMz7BRSQHhcWm9\r\nZZ1U37neLsvfxZ9ergSobbiLARqu1Gy/09difKHYAlVSY0jhF/ljnIa+mrH7\r\nIRpzkBT26w9qMfzmzSo5tOWO8oULaF9pSwi8qu5PA3YNnXP9aw5p0nT6iJP3\r\nvcznAtavuAneJ9hpYi6/1SBydThkYnKOZE5JI7GQlhCR35/sHia36aCN+RKO\r\n9drRf1V+sVMLvGGRdwYHqZaeDUm8X8TFUEluQk3xs1wYo2/8wfbBKW90TTBM\r\niQKX85fxO+e+bgmDuKtjTfr0QBNLQHSsEGvEg8khu2lWj41ceF7yl8+ttviJ\r\nDWpzrpaBRo75E/cpI/Mrbe3Mw9Vw8heh1VU=\r\n=haXu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"50e8485324a6c885c736d0b4d1ac8513d875f5c4","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.12.1","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.19.3","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.0","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.19","@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-axe_4.4.14_1657295891536_0.6626049644885244","host":"s3://npm-registry-packages"}},"4.4.15":{"name":"@hint/hint-axe","version":"4.4.15","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.15","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1a1b7d063ff2fe5e6f926114b3a52e2e30aeedfc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.15.tgz","fileCount":107,"integrity":"sha512-g5NUIfreIklO3DaYph3DHK76zZW2bYJK4uDoATBG/jwXndfFBXuOcI0/SKFKzcpT7bUyp3nfR2HPnHmQAeRAjg==","signatures":[{"sig":"MEUCIQDEQFJzrgNHZi6PTMmPwhbIC0Grb5d0+J+/J9HfkePSJwIgVC33U7FWIGJrEk86waZfIZ+Zsf8V1rhsh02M1M/rT/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yu9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIBA/9Fp2T7O7pOo2derjCNd+mdMktl8TRy3uTCX9/W4eW63tUUzC0\r\n7pIyFAVSE/dvAr+8MtZLpMEYDdg83h8UQh0c0aWVoOXndHyquL+9NbmJ5fjO\r\nBCovkHhQE4ea3apa5vIMFdg5hzddYkoC/pqrhxkiSk5k6+iE7lqemkm1+mWL\r\nU1b+LGLnfldzuZSnCYq7TeLJmy+VSLcP972TdfiVdFiBjbJTlN2z+DzZCGzL\r\ndDfL5bhJz3+Z70eysdaSCwBv5HIfE4bElHCQmpOPd4djd7phu8JqFRVaNLEQ\r\n33s064UU2kDLIK55D2ld5utjGjf3X6lnysAvmjVHpyZkyxfpqTTmcGcxejBk\r\nGqT+K+HmHwo6zCwkxSUaLZzXj6A8NEc2w4LETv3aeW7zBgY9rjs7umaoCPdN\r\nWEbtjCCH9KD7ufSP0KGdOssbmB2MRdpabMYoiaqu902L2Nca7oUP3QxPAKg7\r\nKrP3j6XhhARhjs2EluBSbuqAi+3MAzwtPweJA2AlCd2qmMh2CVsq+e+84blX\r\nQseshl97vMs0qkY/JXwlcT+rr85FKqM9YFyfYCX0bbV/baNxuzvnn73Cezm6\r\nGdvx+PAJS+atZwyvFsDIPUDWdx3EvRYdAPGigHFv2Q9hsSkykIjemuAICZdF\r\nc/1LGrMVVIFxh9e0jm5kEdDsbQE0aRyb3H8=\r\n=Id/X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"3747703aad67205d4aaac4b74e7f78ed86402c0d","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.1","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.20","@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-axe_4.4.15_1658530749263_0.4163696705745814","host":"s3://npm-registry-packages"}},"4.4.16":{"name":"@hint/hint-axe","version":"4.4.16","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.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"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1123d00aa7a6e9c6579063ea87d23ab354629992","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.16.tgz","fileCount":107,"integrity":"sha512-2XujJvrYUD89OdXFMY+MhgvRO0ilRLWfmeV1fyK+Wq3ws3WhPd5YInBE1AibhTJSBDe+8YWc1z/YyIGg04EgmQ==","signatures":[{"sig":"MEUCIQDu9J3tZbIHk1jjOjRN6UwPUsiwuZeoUOxJJeJZXFGdHQIgUdxl7aJJi6KXJWvGdbzcCyW/s3zw4HEwdVsBO3bujC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3fnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+VQ/+JHOMzP94m7u4uyT17JQtHQY6o4uf0/YtORmtSfivhsgd9EKi\r\n/U2VbfUIhX+bayILbOuuxM9pHv3SXNKrUieeKks1Y9aJploOVxqmYidV1qsM\r\nt4lY+vfo9vzj2CMwoWLGGivbpIyV+Ba0558kOY8LQm3wiH4vodZA0TvhPcag\r\nvz8upqn/2CpbHa+aKA3ZVdoEQo5CUZJ2Zfq0+j2q3Gk6vQSI5IAF0x7IDQtm\r\n/W6eRJ0sRNpC3uhHHT0wLwKle7tEUjul0h2leY0mogXRiypDzj19XYieMZDt\r\n51beTfZssS1yh1U8tS1xm+jRoTFOS0y7I5buJgVQHBWyGpzLyRFARvy83NNl\r\n5tZcZ5jKsitA85ozKgk8FQKeZs1ra67oxzWJ6PBBs9OY2ai+FTt+hP8ZIm+Z\r\nTjEG1PwOZ3pG5BHmd7bTTdEyPkX420O6ZqjA37xQ1GhR8IquQyDfcGPfzHKe\r\n1s89wlQBJOsG3ubib/hCpRJoR0q3fcYMKwyOe9SEOC4E3kGwwNX4I5at87tn\r\nh8+h5890ITnhm9LAtzzY4IJmTqrROmlu9Ltxa2AuiipqWIoc5fJjhgX+rBd9\r\nJH2drvTmJmLhvWYq0fF16p4yx6XGykkFnHc6uVsTFGKn43Z+bJpkQucbifsk\r\nuq+ndLFU9xmum7WTuIRbI40jnPe5LEoAV48=\r\n=E1uF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"64f0d5cf033aa97b12ef161d91e00bd2f750da6f","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.22"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.2","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.21","@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-axe_4.4.16_1662482406962_0.4726648945717209","host":"s3://npm-registry-packages"}},"4.4.17":{"name":"@hint/hint-axe","version":"4.4.17","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.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"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"38ed7fdb9c3ade94f352f4c9d1dca3dfe79b0f2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.17.tgz","fileCount":107,"integrity":"sha512-YJhECp8W0hMrORGFCpJdzZgzs7hHoUcokKc868rPyUH9Jf35KC5aOYuvIbW3NZldnaglG1yO89rn5vX2R9xwKg==","signatures":[{"sig":"MEQCIEM85tlXyqkKGkJDN2v+RdSME75f0F5U0t0lbuVpoxpmAiAd58dfCcxzpW2YIQJPKhuyrIovbnKmRHGqsPPv2+6qqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPy/ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLixAAjjm2n+l3c9SwJK2hpVtuJTz2Vw2QPf2QxItMOO2ZbChzkii6\r\ncXVvlFnUbCSU0rfdrb70n1eDz+q58mgVgyUhlJxQ7cmBxvYscpzThOwqozQl\r\nuUjpiynWKpoiwji0+pGQK4Gruj8ItEywqNjI0APruvd3xVx4wj99hDA6Evx9\r\nGZKsodUr2juHOFDhuf0r+FJzwbzMy0ys7a1wObWlfOlr64wejJnTR1xkg0e7\r\n2r+9XYnmVZENGkZXo/IBO8nOPcrTDs+jRQFmwjaR6bWtte/XuiZ9t3fdtbmj\r\nKfXegO5ivJn2MfN3fFFNRmN0fOQ8TupUuSafNKP4tlU0INW20Bc8im7nzTNz\r\n/riP3sXGDMyXSg8O0X7u1+fBr+F26rUhWS5NCQTUPf7BwNq/3T+HKjmL6R+B\r\nZKpBkoIx91t1Uz1aBcG4n7qlTWckNxcCzrDRQiLKkRZ5X5HtU9ELTxBVnmR7\r\nYrWn3xVAsVePdZeSK6yJ25aNwge4oAHNsOsLb6v2yunWXW83sViEutLtbRSn\r\nPIvAIa61K5SmCN3uNz6jp8bDrNA1aCnsJufUTFm7D2qFvQRqLe0Tl4Jzetge\r\ntaYLE/zIk6KwFBAj92IQATOjjnHJhK3K4wmF8tuqGwXRH1hbPZqCPx+utGpi\r\n0oD/JayDlHuZe5FcWEwNdn1Vwq2fFHWiaQc=\r\n=ea0+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"8869f1b823276a7cf0417925b78b6aba21d4ee2b","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.23"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.3","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.22","@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-axe_4.4.17_1665085400852_0.13485991040778078","host":"s3://npm-registry-packages"}},"4.4.18":{"name":"@hint/hint-axe","version":"4.4.18","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.18","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d2f7234278ae2b17e3d18eb82dc06577cd22320b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.18.tgz","fileCount":107,"integrity":"sha512-MNisrv8A9wrgvFHAK99a4/fDn+DrGV+iu4Ae/hz5P+/Yr5OBMNV9AvYbf7r24GxnD0D6NRG1HiKgB5VpbWE1NA==","signatures":[{"sig":"MEYCIQDrWMf65MlI5LyLeCZlvP+3AUnn+9xXt5MEMWsg63f3QwIhAJ2aQWJDbOORvGN56x7/FUZjPfRckArg8qLXB8pkuRa8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9nRAAmHzjV7/zHeqodW1JOvd7H3jEqQZ+lRsAKjFKpb96gC3LINee\r\nq01KXcMukO5M03KA4R8+JbeW4Ke7Jb+6SI43F91lxMfX7YsFfEwU1QV40yQb\r\nSzJfBchlI51uUfYh5csQnaTnPQ2vshm3H1FhNpLj2GHhS5wqT7G08bp930rj\r\nXn7wc7mbp1wflouTosa9+y7A/FK+qoI4ii9SbLMxsU+3QSaDiYZVPwDb9Lez\r\nZPdpAXIKL6pom47vdESsYwy08MlVegDqUyPLwgIZwLeVQqQAPKKxx9/QSp8T\r\npRMS/HGBf3zKNdA3OGDrpZyAfNt2WUdukt1aEETKSnou8t/18Tu5yOInQsYs\r\niQjxa9aqxRbR0xcN2/yivubUoPH9Z38V8Cr1vODRyiI9FPKl7uqB9SCrEuBt\r\n4SG1vRBJn7k0zEG/acE7jZOywMtt4NNiTK34y3cjrqZSKar6rhFX+mizZhyO\r\nqTLrulsxWKRVn/sP8+rUnEYiIKiyc+0q7YuG1Y6dxDRh8TY9a4ZismBFtA9Y\r\nPw6zc6dIkabiwOnuGB8ONb0MgRrbE2rO0lsuEU9hP3CZ+YJLjJ9VSURdu75u\r\nXF5wH3XWH5bB3xt7WYrNohbGsApWSY0lu4psse8Co6bgXHkcOKH8+olve8jI\r\nOZknDhotKXGsr5BcotItJ6u+iXvcbUBKPeo=\r\n=bS1V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"722be1b4c0836d5c0adacfb00c8c4f6bc5d1e707","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.24"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.4","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.23","@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-axe_4.4.18_1679006980555_0.3516107644323676","host":"s3://npm-registry-packages"}},"4.4.19":{"name":"@hint/hint-axe","version":"4.4.19","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.19","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a5832644eafb3cb785d441fca34da2e390527fbc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.19.tgz","fileCount":107,"integrity":"sha512-m8pmjJNdQFCNWAZIsRPskTx0REBs8wVo4jb3QunzAkhAc+WMmjSRlINHoSyOBgVW59c6z0T8deBSAT+H9x5Rhw==","signatures":[{"sig":"MEYCIQD9mPvXcRg8b7z5CwEQEVqxbVDt6VrT85mk6Lgr+hyrBwIhAK0NDeX6/mYp6OrtvacyhPTu3/EXXCOYIBVYW8V/7sT4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107199},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"fe6feadb1f77798203ea9d75edd88cf2fcfd1b61","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-network":"^1.0.25"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.5","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.24","@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-axe_4.4.19_1686328027256_0.7092724146776135","host":"s3://npm-registry-packages"}},"4.4.20":{"name":"@hint/hint-axe","version":"4.4.20","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-axe@4.4.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d4b19d16a7d29e285ba4089d4822af49838a4058","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.20.tgz","fileCount":107,"integrity":"sha512-YiVPtJ1e/UW6czGQKLeowpDCg0yDq3/xOrdc+tedLAv8oiFaGIBCDRpevKKMLDnaUvVtsBVfTbhZRySExVg0Ug==","signatures":[{"sig":"MEYCIQDC0YXpISLlFxnPZRpBn1Z1GtF6Qe+3IUvehtY5lm/DMgIhAKymeY6KZZgWcv9WeIpgzIBbg+7EyfYBip3eoo5ATQ/I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107199},"main":"dist/src/index.js","types":"./dist/src/index.d.ts","gitHead":"89eff1633735f4669156dd0b2d093697f458aea7","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run prebuild && npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","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 prebuild && 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-axe"},"_npmVersion":"8.14.0","description":"hint that that checks using axe for accessibility related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"axe-core":"^4.4.1","@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-network":"^1.0.26"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","lodash":"^4.17.21","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","@hint/parser-jsx":"^1.1.5","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/parser-javascript":"^3.1.24","@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-axe_4.4.20_1687907312002_0.10245199195320143","host":"s3://npm-registry-packages"}},"4.4.21":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-network":"^1.0.27","@hint/utils-types":"^1.2.1","axe-core":"^4.4.1"},"description":"hint that that checks using axe for accessibility related best practices","devDependencies":{"@hint/parser-javascript":"^3.1.25","@hint/parser-jsx":"^1.1.6","@hint/utils-create-server":"^3.4.27","@hint/utils-dom":"^2.2.4","@hint/utils-tests-helpers":"^6.5.7","@types/node":"^20.1.1","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","chalk":"^4.1.2","copyfiles":"^2.4.1","eslint":"^7.32.0","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","globby":"^11.0.4","lodash":"^4.17.21","npm-run-all":"^4.1.5","nyc":"^15.1.0","rimraf":"^5.0.0","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["axe","axe-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/index.js","name":"@hint/hint-axe","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-axe","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm run i18n && npm run prebuild && npm-run-all build:*","build-release":"npm run clean && npm run i18n && npm run prebuild && 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","prebuild":"node ./scripts/create.js","test":"npm run prebuild && 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.4.21","_id":"@hint/hint-axe@4.4.21","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/index.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-oAXT+k7xnQdhSziQFkCe3NCJHk2gQzUVMZPVtgaHMgSM8Fdvs7XiUkeIYgR+IS9872RsP+xfTvRpdHBBkqh/sw==","shasum":"94e6b7dd0169d8656bce56bd00cf39a9fe0b54fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-axe/-/hint-axe-4.4.21.tgz","fileCount":107,"unpackedSize":107333,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPjtOn2KqJzK7fKFJQipH2RzFXFdhJUUx25y4HCekO2wIgdAGyGSceiC2bgMj1SKxUXuvu8P1vETWBqUTxlDcRW1k="}]},"_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-axe_4.4.21_1724949322496_0.3896792223928547"},"_hasShrinkwrap":false}},"name":"@hint/hint-axe","time":{"created":"2018-07-16T23:24:55.917Z","modified":"2024-08-29T16:35:22.907Z","1.0.0-beta.0":"2018-07-16T23:24:56.238Z","1.0.0":"2018-08-06T21:10:22.562Z","1.0.1":"2018-08-10T21:34:32.735Z","1.0.2":"2018-08-27T23:30:10.932Z","1.0.3":"2018-08-28T13:36:07.473Z","1.0.4":"2018-09-06T21:02:41.603Z","1.1.0":"2018-09-11T21:55:45.361Z","1.1.1":"2018-10-31T22:56:12.829Z","2.0.0":"2018-11-05T23:38:30.662Z","2.1.0":"2018-11-28T06:11:07.422Z","2.1.1":"2019-01-02T19:07:16.082Z","2.1.2":"2019-02-22T00:02:36.567Z","3.0.0":"2019-05-15T02:47:56.898Z","3.0.1":"2019-05-15T04:16:58.540Z","3.0.2":"2019-05-23T15:47:58.599Z","4.0.0":"2019-07-23T16:30:15.392Z","4.0.1":"2019-07-24T21:17:40.050Z","4.0.2":"2019-07-30T19:28:50.153Z","4.0.3":"2019-08-06T20:40:03.196Z","4.1.0":"2019-08-16T02:37:30.870Z","4.1.1":"2019-08-29T15:52:03.894Z","4.1.2":"2019-09-11T22:29:49.049Z","4.1.3":"2019-09-19T18:31:05.987Z","4.1.4":"2019-09-24T19:29:31.420Z","4.1.5":"2019-09-26T21:18:11.148Z","4.1.6":"2019-10-16T19:43:26.718Z","4.2.0":"2019-10-29T22:28:29.424Z","4.3.0":"2019-12-03T01:00:52.180Z","4.3.1":"2019-12-04T03:49:55.573Z","4.3.2":"2019-12-05T00:21:11.599Z","4.3.3":"2020-03-18T21:54:09.507Z","4.3.4":"2020-04-15T19:17:42.197Z","4.3.5":"2020-05-18T22:14:42.162Z","4.3.6":"2020-07-27T20:36:10.031Z","4.4.0":"2020-08-24T21:54:46.912Z","4.4.1":"2020-11-11T20:40:54.876Z","4.4.2":"2021-02-04T19:28:41.815Z","4.4.3":"2021-02-06T00:40:54.408Z","4.4.4":"2021-06-09T19:09:45.626Z","4.4.5":"2021-10-21T16:19:25.956Z","4.4.6":"2021-10-29T19:56:26.491Z","4.4.7":"2021-11-04T18:29:05.896Z","4.4.8":"2021-11-15T20:08:35.493Z","4.4.9":"2022-03-10T18:50:24.891Z","4.4.10":"2022-04-26T22:10:33.212Z","4.4.11":"2022-05-04T01:43:06.050Z","4.4.12":"2022-06-06T22:27:06.719Z","4.4.13":"2022-06-13T20:38:57.721Z","4.4.14":"2022-07-08T15:58:11.722Z","4.4.15":"2022-07-22T22:59:09.450Z","4.4.16":"2022-09-06T16:40:07.163Z","4.4.17":"2022-10-06T19:43:20.980Z","4.4.18":"2023-03-16T22:49:40.734Z","4.4.19":"2023-06-09T16:27:07.438Z","4.4.20":"2023-06-27T23:08:32.193Z","4.4.21":"2024-08-29T16:35:22.643Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}