{"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":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"dist-tags":{"latest":"2.5.25"},"description":"hint connector for browsers supported by Puppeteer","readme":"# Puppeteer (`@hint/connector-puppeteer`)\n\nA connector that uses [puppeteer][puppeteer]\nto communicate with the browsers in `webhint`.\n\n## Installation\n\nThis package is installed automatically when adding webhint to your project\nso running the following is enough:\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        \"name\": \"puppeteer\"\n    },\n    ...\n}\n```\n\n## Options\n\nThe set of settings supported by the Puppeteer connector are:\n\n```json\n{\n    \"connector\": {\n        \"name\": \"puppeteer\",\n        \"options\": {\n            \"auth\": AuthObject,\n            \"browser\": \"Chrome|Chromium|Edge\",\n            \"headless\": true|false,\n            \"ignoreHTTPSErrors\": true|false,\n            \"puppeteerOptions\": \"object\",\n            \"waitUntil\": \"dom|loaded|networkidle0|networkidle2\"\n        }\n    },\n    ...\n}\n```\n\nAll properties of `options` are optional.\n\n* `auth`: The credentials and elements to authenticate on a website.\n  See next section for further details.\n* `browser (Chrome|Chromium|Edge)`: Tells the preferred browser to\n  use. If unspecified webhint will look for a `puppeteer` installation\n  before falling back to searching for an installed browser and fail\n  if it does not find one. Keep in mind that not all browsers are\n  available on all platforms and that you need to **manually install\n  either puppeteer or a browser** for this connector to work.\n* `headless (boolean)`: Indicates if the browser should run in headless\n  mode or not. It is `true` by default when running on CI or\n  in WSL, `false` otherwise.\n* `ignoreHTTPSError (boolean)`: Indicates if errors with certificates\n  should be ignored. Use this when checking self-signed certificates.\n  It is `false` by default.\n* `puppeteerOptions (object)`: A set of launch options to pass to\n  puppeteer. See the [puppeteer launch options][puppeteer launch\n  options] for more information.\n* `waitUntil (dom|loaded|networkidle0|networkidle2)`: Is the waiting\n  strategy to decide when a page is considered loaded. See the\n  [puppeteer goto options][puppeteer goto options] to know more.\n\n### WSL support\n\nTo use this connector when running `WSL` you will have to install a chromium\nbrowser on your distro (e.g.: `sudo apt-get install chromium-browser`).\nBecause by default `WSL` does not support graphics, the `headless` mode will\nbe enabled by default. If you have an X Server working you will have to\nmanually disable this option via the connector's options. E.g.:\n\n```json\n{\n    \"connector\": {\n        \"name\": \"puppeteer\",\n        \"options\": {\n            \"headless\": false\n        }\n    },\n    ...\n}\n```\n\n### Website authentication\n\nThe `puppeteer` connector allows to authenticate on a website that\nsupports Basic HTTP Authentication or:\n\n* uses user/password (i.e.: no MFA or captcha).\n* redirects to the login page and to the initial target after successful\n  authentication.\n\nFor Basic Authentication the `auth` object properties are:\n\n* `user`: a `string` with the user name to use\n* `password`: a `string` with the password to use\n\nE.g.:\n\n```json\n{\n    \"user\": \"userName\",\n    \"password\": \"Passw0rd\"\n}\n```\n\nOtherwise, `auth` properties are:\n\n* `user`: the information needed to identify the `input` element via\n  a query `selector` (e.g.: `#login`) to type the `value` for the\n  username in (e.g.: `username1`).\n* `password`: the information needed to identify the `input` element via\n  a query `selector` (e.g.: `#password`) to type the `value` for the\n  password in (e.g.: `P@ssw0rd`).\n* `next`: the information needed to identify the `input` (or `button`)\n  element via a query `selector` (e.g.: `input[type=\"submit\"]`) to `click`\n  to get to the next step of the authentication process. This is an\n  optional property as not all services prompt first for the user name\n  before asking for the password in the following screen. An example of\n  such a service would be Azure Pipelines.\n* `submit`: the information needed to identify the `input` (or `button`)\n  element via a query `selector` (e.g.: `input[type=\"submit\"]`) to `click`\n  to submit the crendentials.\n\nE.g.:\n\n```json\n{\n    \"user\": {\n        \"selector\": \"string\",\n        \"value\": \"string\"\n    },\n    \"password\": {\n        \"selector\": \"string\",\n        \"value\": \"string\"\n    },\n    \"next\": {\n        \"selector\": \"string\"\n    },\n    \"submit\": {\n        \"selector\": \"string\"\n    }\n}\n```\n\n### User actions\n\nSometimes you might need the browser to interact in some way with the\ncontent before starting the analysis. For example, in the case of\na SPA you might want to click in certain elements to get to the right\nstate.\n\nSometimes, this actions need to be done before navigating to the page\nto analyze.\n\nTo achieve this, you can use \"user actions\". \"User actions\" are\ndefined as follows:\n\n```json\n{\n    \"connector\": {\n        \"name\": \"puppeteer\",\n        \"options\": {\n            \"actions\": [\n                {\n                    \"file\": \"pathToUserAction1.js\",\n                    \"on\": \"beforeTargetNavigation|afterTargetNavigation\"\n                },\n                {\n                    \"file\": \"pathToUserAction2.js\",\n                    \"on\": \"beforeTargetNavigation|afterTargetNavigation\"\n                },\n                ...\n            ],\n            \"actionsOptions\": { },\n            ...\n        }\n    },\n    ...\n}\n```\n\nThere's a property `actions` in the connector configuration that's an array\nof `Action`. You can define as many actions as you want.\n\nAn `Action` is an object with two properties:\n\n* `file`: Absolute or relative path from the execution path to the file\n  containing the action to execute.\n* `on`: A string that indicates when the action needs to be executed:\n  * `beforeTargetNavigation`: The action will be executed before navigating\n    to the target. If you need to set up special headers you will have to\n    do it at this moment.\n  * `afterTargetNavigation`: The action will be executed after the target\n    has been loaded. If the website is a SPA and you need to get to a certain\n    state, this is the moment to use.\n\nThe file that contains the action needs to be written in JavaScript and export\nan object with an `action` property with the following signature:\n\n```js\nmodule.exports = {\n    action: async (page, options) => {\n        // your actions here\n    }\n};\n```\n\nThe parameters the function receives are:\n\n* `page`: The [puppeteer `Page`][puppeteer page] with the tab used to navigate\n  to the target. This gives you full control to do anything you need with the\n  page (click, type, navigate elsewhere, etc.).\n* `options`: The connector options. This allows you access to `waitFor` values\n  and any other user configuration. If you need to pass anything specifically\n  to the actions you can use `options.actionOptions` property to do so.\n\n#### User action examples\n\nThe connector's authentication mechanisms rely on the user actions API.\nThe following is the code for the Basic HTTP Auth (transpiled to JS):\n\n```js\nmodule.exports = {\n    action: async (page, config) => {\n        if (!config || !config.auth) {\n            return;\n        }\n\n        if (typeof config.auth.user !== 'string' || typeof config.auth.password !== 'string') {\n            return;\n        }\n\n        await page.authenticate({\n            password: config.auth.password,\n            username: config.auth.user\n        });\n    }\n};\n```\n\n**Note:** This user action uses `options.auth` which is already\npredefined. If your user action needs another type of user information you can\nuse `options.actionsOptions`.\n\nThe following is an example of a user action that will click on an element\nconfigured via `options.actionsOptions`:\n\n```json\n{\n    \"connector\": {\n        \"name\": \"puppeteer\",\n        \"options\": {\n            \"actions\": [\n                {\n                    \"file\": \"clickElement.js\",\n                    \"on\": \"afterTargetNavigation\"\n                }\n            ],\n            \"actionsOptions\": {\n                \"elementId\": \"#id\"\n            }\n        }\n    },\n    ...\n}\n```\n\n```js\nmodule.exports = {\n    action: async (page, config) => {\n        const selector = config.actionsOptions.elementId;\n\n        await page.click(selector);\n    }\n};\n```\n\nPlease look at the source code of `connector-puppeteer` for other built-in\nactions.\n\n## Further Reading\n\n* [Connectors][connectors]\n* [Puppeteer documentation][puppeteer]\n\n<!-- Link labels: -->\n\n[connectors]: https://webhint.io/docs/user-guide/concepts/connectors/\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[puppeteer]: https://pptr.dev/\n[puppeteer goto options]: https://pptr.dev/#?product=Puppeteer&version=master&show=api-pagegotourl-options\n[puppeteer launch options]: https://pptr.dev/#?product=Puppeteer&version=master&show=api-puppeteerlaunchoptions\n[puppeteer page]: https://pptr.dev/#?product=Puppeteer&version=v1.20.0&show=api-class-page\n","repository":{"directory":"packages/connector-puppeteer","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":{"name":"@hint/connector-puppeteer","version":"1.0.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@1.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"e43eb34b9737ce78c0a8f59d3b676db790a3310c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-1.0.0.tgz","fileCount":25,"integrity":"sha512-2cPkl2xKydxIQMAUouLJ8dc4Vs/Qw0Y9uLi5ROSCR9JDgnl6ST4z+n8onKmIvJ2kWrVr3N4DJdraxIi9uf12AA==","signatures":[{"sig":"MEUCIQDeK/elKRAPQ5SwbmQT35+3ICWZRWJlXrDxjuUjdX2QMQIgfrVPpAmHKy92uPDoy/HM40jHs4Izm5rwmiUe9ifvKg4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sBVCRA9TVsSAnZWagAAAVkQAKS5cxp0G1QAJkCaRRBJ\nQsMjxY62vAwgKD7Rlkti145NGhVVLfADYUqFIbiViUsoiTIdIVk8SopYaBXw\neC3CcslSWwU9Pzgb210DTEpkN9OGWPshiDZ8aJ1iUfCzDLoeBeLLu3mruV5W\nbE3s6O0ToTvktsPXYrm2TyvhOKDT8HhqNujSXEIMpPgDkOgh8NjdFnHYLydc\nDgmG1QIbDwPD9zz33SYszd1cJd8fivfo2wtM0FR2piug6WQiwqUrpJd4p89o\nOrMtbHmZhKxLfso3bsvPwsQd3AT9jp85bN9W6eHHhfxtjNFAG88CjPtPQO2C\nCE3TJSvMhgZ6Tqs3Tkjgd2gP6FPIlh9WajMqRwL/pWfYyPywBC5jgAxzOHH5\nM2fSiXX02AGh/INMIZX9uUe1c7k+l4kROKv6pJgenVPKnMrNoNwQ1d7WlsXZ\n4RT/1E3e7PPpzGXURsg9aMmSgfeS2lIxoEDbtgtAq9TDnbcOYp5JAnmYvsva\nhd+KirE9l+tt2NN5Bym5XeY9mZT0FytnnfwlW/HVOf+efBqoqCfE8WxHwyME\ngWlEXhyKn7EEiN85ox/ZE5+BpQ+fcJZ7SgknV2VARZL24FR68MOiaSYF8n78\n6uRqDT4hVJx+4OKsaF34K2tFSBd1FbgHaPnDh5E24p0xKvy1zC6XQGAo44M7\nkl8k\r\n=JU0S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.15.1","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^2.1.0","puppeteer-core":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.0.2","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.11","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.4.3","@types/node":"^12.0.0","npm-run-all":"^4.1.5","@types/is-ci":"^1.1.0","@types/sinon":"^7.0.11","@types/lodash":"^4.14.130","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.1","eslint-plugin-import":"^2.16.0","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.2","@typescript-eslint/parser":"^1.6.0","@hint/utils-connector-tools":"^4.0.2","@typescript-eslint/eslint-plugin":"^1.6.0"},"peerDependencies":{"hint":"^5.0.2"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_1.0.0_1558626388779_0.6683318938056493","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/connector-puppeteer","version":"2.0.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"ce8ee5fff7072d1962a41b9de6788891b77a781a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.0.tgz","fileCount":25,"integrity":"sha512-DU2VEVWKONJI7cp8ZPQ2CW0adYN79hW+9pvNauCBGfIQirV4m51FqRAp4bhxOulTSMHuxGVT8yiiwK5paaC6xw==","signatures":[{"sig":"MEQCIFhrMgMc5keGWarl8t59ZK6DMv2WF4GjmalOLsEtEps+AiBDjq61ZQVnvZqWM3i56RMUUs2dGIynIqujM8c3ybc3/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzXKCRA9TVsSAnZWagAA1csP/RkZdxJccUPh/dCefP9c\ngumzAtNwKgNO3fUB+XnTrApT5+PS2Q3qvdCChZUMGC/MHAAz4WVJtv1fSrni\n35Cl334wlVpltHGl3m3pUnR61tRQauxeCuvnVmPedLoj7vzOIxxjiO8grLl9\nHqaNkXjuz6YmlngaCa/vMsdRPb7np65MM2Jw7t752LBxugfJyBRKC3xDw8zu\nDW66AN0eMjAb2uvj/8Rz5g2C1VHwN/ElOL5emVm8O3q/fRdiGH52mwnWkwhh\nx48tpcTOs6og5lISkGew4evbJtiBS9VyX0+7jwjObCbdzK1Y19WSY1T/QYvj\nP9c7YJg/vbdD9Eis9q26Hw3guShjf1NAkHxAVAylIctlRviw7lxfRzNa2+HH\nFaQdQ/OIPyRVH35tKAuPwe1xEdQEITEznLz4FxM8p9fXMQ4/DC5swUq+w3kL\nvupy9/lkZJqQwNOF74CHja9MaaPL0kPiJtzWjzuZZYFlC4pGBauRGRFiNFnd\nX2iAekuQ3IkrbFgXeqqEj8z8OOTBHFaqcbUA5sQG4sgxxzJMSdZs/dPkEIYF\n4Zqjt0J653rs15CkAuZ7Hf6sJ59HEsk49HYyFV6e30QbhC4XctklPdhjNaXH\nuakg3oT4ANYL2gK6Jk/sPFqdaSmw6ohUWvGQYZtevVrRnZoeTPxIXSprKox+\nb0az\r\n=uHsn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^3.0.0","puppeteer-core":"^1.18.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.1.0","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.13","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.136","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.2","eslint-plugin-import":"^2.17.3","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.3","@typescript-eslint/parser":"^1.12.0","@hint/utils-connector-tools":"^4.0.3","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.0_1563899337730_0.9088994857556443","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"@hint/connector-puppeteer","version":"2.0.1","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"41d52caf3b57b7dfd84ceb7853d147a037666d34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.1.tgz","fileCount":25,"integrity":"sha512-Ul52eNicdSk8ctMnnV0hcIqBonTGOoGi//6YjSHLsVcri93G1vMS0wf24275DkYdHFOCjS8EpL7PH7BKU/cayA==","signatures":[{"sig":"MEQCIFPPDv/7Ua1i75PxmHGus+A9edFYBsSW4lqVdw5Zz6f6AiBdhjjvdus8vpsTMfc5ZWtlgk3WldYyVTFvDa8ggNqJ4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMqtCRA9TVsSAnZWagAABWIP/RV3tMl9WLJj2fOhCIfF\ng3IzDmGGlVjVRRqsY0xMZvV++LlleQ/QgqNOkmQ95y00LSNkLMg1yEAyXLjl\nOOcmeJf3AmbnWUEHQh7RcrCnOKPMeM4e8PIOLf8v+rK5vL9OmmwNB431Tgir\nk2fYSB9C/5vEptTfAfmB/hc7iPeSmwM3AibVgo2liW3dwDQ8rxGuLirikzXu\n1Mm8e3/o9VrJ7o3Hvt7vZZNLAgPFsVn7W2W0iEwdS8nLEbQe5RMflMUDn5tN\nfOIpcYqM1A6gJe/Mh1unJOwPVB2ps4OVsrxQ+RyuRLzn9dfRxraX9ORcNlSs\n3mC+Sp9jnQdMPeJU8RAF0SNXYexUpA49lqOgaObc2klRKo1B+AdRBiiXRc19\ndINatH02BNw48FGB4hkVUQmVIGqfiC1alDp9e+1mA6v7zIbFx6DqT99u52hB\nmX4PqcnJb37vvEBifkkO1K68Lq9Aq8rQokxai9KKoox9o1FhBdv6x+FgtI9e\nRAMSJ0nRG9mUnw6BJUQWnYwErKjUgCdN5quvxD0SvhKZasMJThtr1haT6hWE\n374PDXoHb70ozRzsQeNiPMCQNue4AZUW2xylS9y5Z8iy84lhDlEkzG7Jr6tl\ncpgkoU00Ilzeo62+mTBW0lQ1eE6FBvVF2XZUU3TGGQk9vCQg9SptMKR1wJwg\n2/kG\r\n=AYgc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^3.1.0","puppeteer-core":"^1.18.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.1.0","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.13","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.136","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.2","eslint-plugin-import":"^2.17.3","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.3","@typescript-eslint/parser":"^1.12.0","@hint/utils-connector-tools":"^4.0.3","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.1_1564002989098_0.9120269118953923","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"@hint/connector-puppeteer","version":"2.0.2","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"f4feeac5091203f7826ff6c97277226dc9cdba0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.2.tgz","fileCount":25,"integrity":"sha512-w7fKw1FyJNmmvHOhfkAABRNQOEJm5g31V9NSo63Nkv6OV1kv8fKXRzHkMMdxtNQVtPUNvtAfIRDR35w5ivBreQ==","signatures":[{"sig":"MEUCIEE4M8CNWQvik7AdmhEaEqtONubHuD/xbDLF/Yxg+8X9AiEAwg0t7Rr9LEK5daGhMmPZgbQ+it9DkU9nnF2BjDfdUcE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59316,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJowCRA9TVsSAnZWagAAnkAP/0kM4JaFRb1ebLI9SRwm\nb0vifwZnPQ7swecFEKsm+3smu2ZxK94erNQnka5kLNCybzXcM678TypEIM6a\nSJ5X9r/1YEAqOpVMeT4OKSuttFMe+DPnW+vIk8YcR0iR19NqWAsGUe6HiUUU\n7b0S9eKtPVhzBR4t71RPXDNKOKPvqUzM1iSP7pkDK6KKg29QD5u1pXZn0iVa\nMfrEadezYniXo2QoZdAtD06ljLzycSD0YJ7xZw4RFjB5c9qDMdPUFBHnVKMw\n8ucKCAOD6ov9X0zT2j0H1NxJngiwitNYmPP8p9XxegFj36hCOKM4pzjxXcIg\nPMoIj0ZVPk8xqElWsq4e2LbLiJ2exLW5qJzDKydPi303EwUF1QEzvCEEZ6Ex\nmzFgl2Nm6896Vb9y+SpieC5mfj5QGOWpYsvLDJq53YkS/GILMijg0IdMd+Le\nio+CWj73oyqbgAs0X7o+Qri5uG+BO5yH9YGQGRM3hquhe87RKmgOcwQGNIVz\nxq8LS5aIXn9QBclBIc/hxlKuZsDlQxXdXjQtfGlQXxfRemEaIwyjATIVw23d\nA3RhLWIgfVmjUABYrofn+YaECHUFuZDWPqxcSuogWDRWhPwF0VlU6DnR1QIP\nSZkUmKq3eKZG1ddYfpVMT19o0Bx3dXte7tg/yb0WqRg2QSqCOIsJgkSzWBea\nJ808\r\n=RNvA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^3.1.1","puppeteer-core":"^1.19.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.1.2","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.13","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.136","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.3","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.5","@typescript-eslint/parser":"^1.12.0","@hint/utils-connector-tools":"^4.0.5","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.1.2"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.2_1564514864060_0.4077524021226693","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"@hint/connector-puppeteer","version":"2.0.3","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"7bd2b3e67eaf6fce2d4019f315053f67c544334b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.3.tgz","fileCount":25,"integrity":"sha512-v2/nJS6bq445MQ2kQDm0w9bOcc4A4q4T93PQSzaBb5AmLkFfo7Jk0cZKt7OJYfjcQVRWILGV9z+uA8TZAEa9JQ==","signatures":[{"sig":"MEYCIQCoVbwKGRgjUoMtT/LPyM4DjG9QdYbob1oWble5R48e9wIhAOG5adfcR7efR5M2Q7xvvzDUKhv5AbDs+ytiu6TCcRp2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeVgCRA9TVsSAnZWagAAIAoP/0BvE8rnwiIdrLt7eqpO\nFucji8HsRGLM9aHE5dG1aopMJcJzBruiiPjzO1ISfCd5KdTrQI3ETDD8bY8V\nCyQ+gjP4Rt+gpQpAHq/pyvKtlGDp2Fk+Ole3nueEWtCccytCEB7/x+9fSoyf\nblNdonwlTy7SJ2SOpbQhvYqXy0Y/5xs2dV0l7mLqSXRqe14Ni5XJDZ7iU60s\nTAdq1JuGdHzd7j/QN4/bEfiWz39Dm677YXIW+bkGiGnr6CZ9s18l310b2/td\n3NtQKnx76Q71cEqgK9y5R6mPOw7Hf42r8Pu0yzoNRKWTE2ywDuObkhNPwfgi\nb1KsOA6urBKb8R8PaGk9REpZ3WGJgaAdXHFx19M5SpVGVCkvSk83R3Lbzq79\nAJ/2KnBys941mBogDcQdgFOSFi6XwxB0bTpau7F57G5Ko7tPtCHt4F7C6Nd/\nESgBErE9JUyp6Z9DyBEPykwpjVkRRpb9W0mAl4Aihoik4PxjRw+15DFFSz6E\nTWg93gBqRJxnjs1oYQNtEUi7lqCyAESZSeiC6VEc/JPv1qS73y8SlveNeQ0u\nHgOd7s5wqLmhtFqMv5K1NiQhVMnJbKEOw4h2MLF7f3h1TgnH0RCI/Dyvk6U+\n/qOX9ZLS4MJqL5yOsgwZIQlBgkz+enFcFs9A3KmoMk4+d4RDqSv30+GOeOjF\nLqId\r\n=CDCi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^3.1.2","puppeteer-core":"^1.19.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.2.0","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.13","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.136","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.4","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.6","@typescript-eslint/parser":"^1.12.0","@hint/utils-connector-tools":"^4.0.6","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.3_1565123935903_0.7363498142660394","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"@hint/connector-puppeteer","version":"2.0.4","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.0.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"71e0655d9d453f21e460d156b456e4b6a67edcf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.4.tgz","fileCount":25,"integrity":"sha512-zDVUvPq1zexp2BbGti/AHGR80ix/w4s8cOHslIJGTO1g1p6hESRyX1rLG0uQWAX+8YC/5V3LqBX2sQ4jdp00nQ==","signatures":[{"sig":"MEUCIQCruC48rlvlP2xrgqe1PSzIx2drTK2k9x4h8YlNPvlb7QIgOlaxIFjLLO7fBKvNYDQfeiFqsldpGwZEZaXehwq3UqY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhapCRA9TVsSAnZWagAAQuUP+QCBI0rfBKVOmfVbeUNE\n47jh5U26/FjsKIa5JDFJ59E6bH3GijiNTUfclxmNxi7Z3gEmmWcNnKpJ8VAv\nkYZcPRilnrXewrwzDoXXdRLsl+FJ1Dwz6btQIwSjSSorCGBkiR6S/oz8Hpbo\npR5y2jhzSBWlgfdFkoi6xSN10c9DM62He4bPsEOuftx8Zi86Jpu0MozNy0LK\nhFX2oLmsV6kPQR5zcmLgBz1e77ApaBhnM8kOEh5pYumzJuKFOgRrDO9n7myS\ncJCRjXC/dvNBA2tuul2OeIzz6VPQhdwHv9VmcdIvrwV9ZAJOEAqURdl/YnA4\nq4Sl7mVFmriqrmPcAxsO6FERTuQXkI6biV+O4XS3nQbsg8BCSJmOPeWWdZRZ\nYAkk3LemWl+R8muwBsglWjq2PpCKNwT4UCTw1tH9Sp9sVGTcuvxQiadLbidd\ng4jRxlW/1wvgcijbFb/GDECidaybakejcEafiIPQECBb9FELqj9x2HoIZb6m\n+CBzuU8YllH4B9vS0JL4jgG9IBnQmraOa+mOeB2fvBwmKN9HgzOId052SF5M\n2EnXbX1yKNtz63DnC6SQd5JKz9ejfADkzwu3ZaLApRr/9nViJLKX+P4ble2R\nMfL4KqzueJvf/5Z4mPlC8PRG8sChcBNjH1RdvdX11XJP3RUwSuC/Hk1cN8jX\nnwxh\r\n=4HS7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^4.0.0","puppeteer-core":"^1.19.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.2.1","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.13","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.136","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.4","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.6","@typescript-eslint/parser":"^1.12.0","@hint/utils-connector-tools":"^4.0.6","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.1"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.4_1565922984803_0.6266391172784354","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"@hint/connector-puppeteer","version":"2.0.5","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.0.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"0e2874024626cfe9ac75cff0e191429a45d16df1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.0.5.tgz","fileCount":25,"integrity":"sha512-vCUhF3v2TalYoAIyWUMFt+LOPFv2n17jQwj8+HpHoIMIupH8lrSVzWr97UHzZxFgoI68Zyitri3tFMAA+vLaiQ==","signatures":[{"sig":"MEUCIQDsEUrdczYC8iswuPeA2hENtarp48e38084xuz3PwL9DgIgMON8fu4YuHhI8etXaH0qLc9SZnJAxF65JhA3bpGyi88=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/RWCRA9TVsSAnZWagAAVJQP+QBrjDLEtPdGIJxXhBua\nddWgEY4X5kSCM+/OHLeEQRav91q0QdEpXf3vqePExAY+X6z6AYrKonP6/QIL\n1j7zfZzJ4PFXNqqw0KyEaeAqjESxecTb8SbvidUpRUvlJpsIzj6METI0CtiE\nAJPOyOO5Dsp5AFt2CnrEfQXj8mbWIA9UUVwZQ0dDxN1hSVACFuMbpMdDCSB4\nUrwZui3YTLFnX/s1PLmbSaFQhmksiABC8RL+bieyDhuOW77/y4bVI3ElFsKs\n64jJsLPaNUP1HJ/ufUI4P3D24l6hYjrP32qUmXmLWWwWva4/FIOrSxxFu7KN\nmetwsXDYTMYMkzX+sEDJZrSpXj0Yvmz1WHstBdJkvHPbhaPMKW7p8/zLxE63\n4e5aZtYLkes1MO7G4QwKMKn3iEPoDzWiQNtipdyRHQOFKEvRWnRbH3jmA2Ya\nLsGUj+Zpymei56O+bEujO2dMwUt84/7bnSQF6fOaGvvuyi/ECStDSm3DodgH\n+Flrwn6MVqDXFTYaMTB31QqmLXH/8NwSzXYFbBLkYrpd8x7vMJYGynmjZzc/\n246FHOdEk/XDjzcy7ab/AJ2Sm3qIrAaqAf9dr1l7iyOI2LYLbTep7buHClZU\naNagrHoNixdlN1Echyb1Xf+63pwMKMpbSVIxiF8DiSsdOMoSdbF9pdYdP42V\nFI5e\r\n=DUat\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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 connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"8.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^4.1.0","puppeteer-core":"^1.19.0","@hint/utils-connector-tools":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.2.2","sinon":"^7.3.2","eslint":"^5.15.1","lodash":"^4.17.15","rimraf":"^2.6.3","proxyquire":"2.0.0","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.137","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.6","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.8","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.2"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.0.5_1567093845421_0.4338857585835312","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/connector-puppeteer","version":"2.1.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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","include":["dist/src/**/*.js"]},"dist":{"shasum":"1d2a26411d9025001987fa68b897ff2418dec6c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.1.0.tgz","fileCount":25,"integrity":"sha512-O5MQmi0/oTEYf57Cq8XQW89D9Vve0nXYuzqjjB54WvvQ8RuJAWX/olhIBuK7dBf6ZvmQ+MgjWvoRs7YG1zQBPQ==","signatures":[{"sig":"MEUCIDnJuvc5TwlHlYQ56GZM4BoJQFxo5u9Ya2u3cfzTYx0PAiEAolXayRO3DUwv1T97rsd605swfGRdwPUhAFOCTko/mXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXUUCRA9TVsSAnZWagAAccYQAIogpWfYgbEIoo6FxUBO\nM3+2/cCd4ty9Rjii2onLXu9ZzvBxkky0xa9xrzwctECjaXkv0zOu8RJxR7Ux\nd0SqME8hp2Ur/Ov3ZcQjTTPpEqTcdtD4DE0mxAs5M2fWqdgUMuQeJdQMwk/B\nCZkXtJLpAUUfadY8fBIG+Ukb1IkD3g4myqL6sLqJb5bqTRJhESiJPB9Y1UfP\nO1B0NDGaCFhmYXkncSjcQLQ10wnuinQq5xhZokfENQnjN8Q5m021be3Poykq\nt9kPlA/yBuhDccqH0Uh0OMAZOwG3ovvORXQ23OwgRRnIxYNIm36xUbjGFEDt\n+4CxkRdP6UF+H39eiqlyCHd9EVViIxrVVeGfhKd3FBcfskmCOujCxEt0nY8J\nXwBqYheL59YW6x2yJPrESArYc5kxRRVI0MBvulsWKO98xnBqiCO2TbQcFVZC\nU1PiEBflT1DnA+E++eZAai2aMS9kw6MzNbR07e9uOuSUl31kDkOUpCvwhuIz\n1bCd+Pwg/Xvgqj4Q4ZM3QZ01NDbosd5xotxx4TCZRDfH8odA7vF1EGP1Xopz\nSqDW8m4qLoDWYj0rIhmWARRW9FGLHiCO/aS3LZkp6+vm57A1vQPbq+wa7D6z\nOnoGVCz1PODD34cHbjIriAhihzesaOaxOkHLGHTOz7ZTfu/QitjZZCsXhTFh\nmb2S\r\n=NsLm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^4.1.1","puppeteer-core":"^1.19.0","@hint/utils-connector-tools":"^4.0.9"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.2.3","sinon":"^7.4.2","eslint":"^5.15.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"2.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.138","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.7","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.1.9","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.3"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.1.0_1568240916274_0.21112166206179306","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"@hint/connector-puppeteer","version":"2.2.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc","include":["dist/src/**/*.js"]},"dist":{"shasum":"eedc07069ad96f3f5f6544a12d70b5cf282cf0b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.2.0.tgz","fileCount":25,"integrity":"sha512-lyA7WH8besqSBEoZ9VSHaGpwxhcdEokVC1wRkUEzsaIFyWKwJ8qaZnhf9D8U5L2OSvSd5zvVM8/Ds7uUOFJiyA==","signatures":[{"sig":"MEQCIE128AL32tPDadJt5cjOhvpd6R2xnuunOgFgrAo6/dBgAiB6kOli0UC7gFkKODO34N6Lu7xmU2Zr6eHjAInC4SvE5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8kRCRA9TVsSAnZWagAAVGkQAJK4IoTXk1MP7Jtbmjmx\nsS6JQTIaLgykOKiutoRsyq/Hi9rzw0w9Gs6dQgxHzSpCj0NzQHa+zD18If/W\n/XHMhF9RHFKj+PkJpHd37eV5GrYCouk8VIJIydb7dB/0OgjKiC/+mpbibXLx\n/Ra6PZpHmxMCwLb8ddUL6SyhoGH0BkSLKqDTNz7K5ZK8dpv894JA1HuWIbuo\nNVIdIibZ5G0RVQOkykeiP1KMX4hRgn+zeMs58euAQA+VtC/ktlKHrR11orYA\nhnPVQc+yIR0x/lbOe96qgWZQ1bI9CnnyYaCoFESXMCZMbMqqV/wEkhIcHan4\n0Mqodglpj7rVsJwnEKkHspeX8Tjw3LwfYo1sq8CM9u7vhf2pRUUwjNSn1i6N\nNZFM6vyeVUShFEty162FoSB8i0qb2xqHmse/Hv3f0VUglPcHS4FD4GS9RUNK\nz8H1Lp8ZX1B/bqSLb9Ur5nOFZm0KHeGejDH8UvjrvldNn4GefTeCSWIacCe2\nTV95agTB7rQ10J9/zxsdizu8C8sEgMf6ivPuNGfpuCLJZAVtIENHJUPnPtEo\nBZIPWmQNAfB7ZQ2TrLtJ+MEoSbG5mTYIL2EiQKiEmLZOwKiasTe025e3yxD8\noRNno7wSx5xR6q53JbLo05a3vRUKuiLzF5/nhPnkLFz8vmA8GqmBBpaqGID5\n31WG\r\n=KbqE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^5.0.0","puppeteer-core":"^1.19.0","@hint/utils-connector-tools":"^4.0.10"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","hint":"^5.2.4","sinon":"^7.4.2","eslint":"^5.15.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"2.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.138","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.8","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.2.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.4"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.2.0_1568917777113_0.7105544021623602","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"@hint/connector-puppeteer","version":"2.2.1","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc","branches":75},"dist":{"shasum":"ee1ddd2bc239e2ca03b0b60586d2b0ddcb1471c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.2.1.tgz","fileCount":25,"integrity":"sha512-x38N5GQllUEvigtcRTiuya9CO3Im/TszB8uGqKh7TqMUtHNAe7HGYCDGenJzQ57+k/iAAcJ18PgnfBmul+LhHA==","signatures":[{"sig":"MEYCIQCEh6J78iLwMhprRvHI/1oX/xnwW+gVCyRWtPotavxpDQIhAPWmQNuBSEJ3cH9wL9KYCUyEq6XotNdqXnLoqgZU7Km/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim5UCRA9TVsSAnZWagAAmTQQAIU9M3pKwT4NwpeW80a1\n13+e1mIkpsA1h/vdoDCke1D0McKINNM/1ktim/K23pz6l3/fEpJEcEjv7PFm\nFI1qViqHq5FYOQp/RghnZX62TODds+aK5QuAsyfuwAYlLLm4lcr57O356flz\nVFZbnQM9ZyxHAPzSkiuIPzALAnSABBS3yhp0Si2Ic3gAlTmglBu4ZqIPQUmg\n2iLZqeRYPsEs/AM7sI9YyTlJZrM4jd3ZS74FxuG8XTtFkXWOtWSWcW7HLhfM\nLBjZy8fstlQzbbqZg35Xe8ck+wEoZRDM8n30aTWZ4duXebAcrZAI5hm7cxtX\nCG2tt+QXTNogYHHTwdEJOh3BN/qeTUMtWJzgb1U8MnSf9GfsDlOi3UM617am\nU9JJtlA/kyRWhn7u8LHFWMX7XH8mxoab9HsWz+5dxM+jKu9qZ5O65Z4IDazN\nTvZvFyRQjMgZJwcAjugYQ8H+g1RIl1fs+6Nm098evuII4SAgPSxw9fyURMmE\nDaPEwCCRuZyc2Pb+YpFKNQ7ZtfwJRRHV6HkIZgPSIr3svCAgynA8wWIphe8e\nHb9+4DJVTXvzZz3Zlq1KibZdx1PsBt3qtjpi4WO2+fQBxIGIriMZW919nMFM\nWPDsiPuIvqvl/C2GtY/nhpd1Mjnx8Rn0Lr7PN2HtDQqZqCP1+dmn87m9AEVw\njedi\r\n=R6v1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^5.0.1","puppeteer-core":"^1.20.0","@hint/utils-connector-tools":"^4.0.11"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.4.2","eslint":"^5.15.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"2.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.138","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.9","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.2.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.2.1_1569353300311_0.19044999101286875","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"@hint/connector-puppeteer","version":"2.2.2","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc","branches":75},"dist":{"shasum":"c44055363e868a81a5ec06652c511244c960353c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.2.2.tgz","fileCount":25,"integrity":"sha512-aH/0YHlo7LzphgNE1mtQvPY701j90RKh5L5fhwLCsQfe7d5oeaG5EjXw+jPy6A0jsX3RB2a2lPUI1Gwap82Mmg==","signatures":[{"sig":"MEQCIAPI28kYHA2rDZ8gdZ7kxWl5ZbEWusH0MxeQ/uEvvhHqAiBqcIzimBW/DkR3gppLMu4LKInd64m4M5t2jMXyI2D0PA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSrPCRA9TVsSAnZWagAAYdkP+gN60jq+D+kc86EShhIH\nrQl43CCb0ZRRs2k8poMfSrDCCJ4NQeZ/csRcczsJ8iHBc4U9x+7p7GFH3eBZ\nlbhVMKHF0OmpFx050Dv0cZ0hoUmyhYxtNKw7wukZa6OM+gOs7NP/rnKeWhhr\n+yyJhKyD6i7d766WVaXtvqDAifP+OcQBXL7aTQOgLG46ZL5bFuFypAYuGLLh\nHV2pgJ2w2HMEU1evm7s9u/94x8mdqvxMpBl1IyugHW7gspqO7pd16Pum5IhA\nABFIhw6bMlu9/RBWZmsz3bplNwspg0mFOaSrJEpUjdPpCQPc9e49TZPigEtJ\nvf16WNXzeLwzx+/ji8cf2ONdSkZA86iHZStJ/iXJb73FARFh5pilkBO+6NhN\nQ4EXBKs0pEPf7s9w8jv+ZqtfnLfiz4V/alvHVVmvqWjnSzHt0PNpGW/Gyv/e\nnKGYMdLB0TxW3TKtsIv0k/aF2GcT08+A1L50mKzfthw/oTelF2PK/52MWNZt\nlC4qMfIn9NdAtlmXNUa9NAZlx255ayT6WbbCR51ON/Y097tWdWijLCBZd1kS\nr1SiW2HDdYnFpSRta3xjXKAyJpbmWCWVRKSFeivG6/8gpnkJ52DqGL9mD8b7\n+yyzDo001S5LRVJjXdTWAgkbzPQVe1gDEt4aP4N/0gNUTsj78yfXRM3fS3il\n81pk\r\n=51Vv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^5.0.2","puppeteer-core":"^1.20.0","@hint/utils-connector-tools":"^4.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.4.2","eslint":"^5.15.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"2.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.138","eventemitter2":"^5.0.1","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.9","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.2.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.2.2_1569532623002_0.08474967442266346","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@hint/connector-puppeteer","version":"2.3.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.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"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6d9ba38089fde0104fff2464e223c53f7c27c002","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.3.0.tgz","fileCount":34,"integrity":"sha512-iHUKS3032FBVwJcMT5YXhfboP0gGJbdh0ndz5C7WsFXPp2XXfMVivffi24ui0NH1/Xaw5yesfaKZoIDr208HCQ==","signatures":[{"sig":"MEQCIAJt+ieKEKGOTACIMAHJMM0Aj3RHJbzuIGSssMN9nY45AiASHqZQNWpZQs5Oc62Nx854qdM35o4jZIFJ0g0VKAw1GQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3KXCRA9TVsSAnZWagAAEN8QAJDJvgH880qeWv79MQOt\nSHahhvECQ8fivxMrVPFTzVOvMoo11h0Xri1D0RZpSb+tXuUdWbmRV2cp0/BS\nv2mGx/cPzbPGkSc07ylH7KoWyTsHR3e/ZZZat5VDtgf9j1V5F62K/fwkV+4R\n+5O3yoTzzqO7XHgv2vGE7k3xWorXmwPQfJXlqoC4PCRzwrF+UNAauEnhtRHu\nLQQahcg0WrEf9dHKuddJxuwV1GSo7Do59Mmbs8LA8Yi9TAdnqLEhK9A8VBz6\nQNEYLQsQGwq2E0OxOXiQBntqY5jxd5e4ni01iL20a6+gAe2qBp9QEDBKAAC+\n8+NLiqjJ6eZSpTuQjUXjpN+HQhA0AUqqrwU3m9RCbyVG96TbwiMC7frZ1j+d\n88AaNzURYVJpfgtXE3/xRfAJtLjkdk5OnCa6M+wiNnHXT786uTC58UBE8zT0\nKxYSIdX1hqDFHTbSKxVse/E1h6oq849t9RoF8RquCI+wmMzj8oaIX9anX1Vw\nzH/Y1LoQ5q4H5nGuaAxT60cj7tjjwWq2S3P3JATeky9qgWHwKVz906qWvauG\nBhzJQxE37ry3P5nyC7SCIea0fcilytRADQOv1oqqfcndCwta1aCoo1l8npnQ\n0IifNHW0+O2JFDKgIbfQBCa4RukSM7vF8oEi1Yzbf16ZSuBM68s1r+Un9rFo\n4+Xz\r\n=YzIk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^6.0.0","puppeteer-core":"^1.20.0","@hint/utils-connector-tools":"^4.0.13"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.4.2","eslint":"^6.5.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"2.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.0.13","@types/lodash":"^4.14.141","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.10","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.2.3","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.3.0_1571254934397_0.768050489937488","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"@hint/connector-puppeteer","version":"2.4.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.4.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":"cf9744ba0d55d539a5d1ef28686fa1ae36abafa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.4.0.tgz","fileCount":34,"integrity":"sha512-SCoFxvmZ9yPhRSsTl33VBVDRWq/CbEIipiu8YTVpghecpnt3nF7P5Q349zaVk4eOVeej/hAwVUtLrDZYA2og3w==","signatures":[{"sig":"MEQCIHiBdh8SeJ+JLtILu+sounipmg6sujuN25wIMb5NTmf7AiBfp+MU6ghfT2A+EhIMGvX/9DN0VKfmRldLSsrGUIvwRw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduLzNCRA9TVsSAnZWagAAQNUQAImhdIwJlV4BSOHGj3Yj\nV6iJibGkDTxyQhXyZl7UJS58KzGfvO7n7DgSY26eE4Zb8JtDDLLvkHWeoR6b\nhLyMeXrCij90Z2UVYp8au3oxWUvFTJhyXI99MtCPNgEm8NXKgzeFrdTPCwPb\nmveW+ogWPVziMZxluEt81SI0j/xmrRveWlvk2+1pVREM0PPcV2pCHYfbCKdu\nHZUOOy/wDMgVZzpBejB7ucGNgpf00hXqeMRwChth94tNZi5lzHjJGcdgU6Zr\nou5P+oA3QyonISgfZrrtoRhKXWPo90A/Gln3ZvCGvGEWoBnLayygw0mV6ha+\nmOfnQvstSxPIX1/aogPBVig08nGXMALPD84l0Kx3ahWdan7lRfbPy7fjuj92\nuGwlwpJamjLaHazqu1Db1uRji5I3rGxZj7rSj7DrpmtajLFqJVylQvKqqcy/\niISdAhn27Y+hOnDsaHDelMwvVtCbsJ4VQbo+gp0n3PIBh1mUvOftt2CSQbz3\nVJTReqhxTpImwlC2Bewmt4tNcqf07ghQdCyt4jT1zCHqBPC+brew+QLag/g1\nVN6M6+WSJfDuX2uD8vS2uK37aBLWThCgguDNvk0Nv4Gpbq5Rc2dAoZrF6B9P\nT0pyKRyCcPhtZdCxTYDlNxm09JqKkBbgj7XSHu3t00OwxN8X9NZZU9LudR8T\n4X/S\r\n=mAnE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^6.1.0","puppeteer-core":"^1.20.0","@hint/utils-connector-tools":"^4.0.14"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.5.0","eslint":"^6.5.1","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.0","@types/lodash":"^4.14.141","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.11","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-create-server":"^3.3.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.4.0_1572388044618_0.3643128820643571","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"@hint/connector-puppeteer","version":"2.4.1","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.4.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":"5ec7c1bbd6292b4053e6fd7101e6767f80834314","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.4.1.tgz","fileCount":37,"integrity":"sha512-Qj9yqcSlI1GnQSi7Oz/IoBaPogQqyES6c1quMMPW/fZrkfQbnXwh9SiJHXuIZCLdrCDUl8Fnv51P3NsGuzjE+g==","signatures":[{"sig":"MEUCIFGm0KWjoRmYNHUoFDXPOFGxOqbj6qQFTqqkHDV6vrtOAiEAxdQ1duDyYAeaj7sOWSL9dMJb6FcMBPe3FjZKvDFxQ2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":96721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bOECRA9TVsSAnZWagAA/DUP/jkCH4/Exig6A/s/Jqxo\nb5CheDCjLUWkSKitOmoI6cUd+aK6EoAZpKKY/02lIJjW+KMKf3w0WcPbB6WU\nu23QYL33RTm2ezaVDnZCTqCJwEgWRt2hPetU5yET4fUbWdJsy4SLw8S00Cr4\n9JL80kzf8R4yBgcNiUvLrARRvFhiRjk6TDRLFJ32wCrBRSopmPMarBtjKIfg\n2ZChe1edZjBpUSQLvBg+1sGBxEQs4JWdUTT2v2ZwOtjP6kV/NDov31BZxLw8\nCLBfUhhIelPqDar/4266oINbX05t4K0fQQ0L2vwi9xuz6nL4/Og8OFXQ5oX2\nVvCjWuVJN0w/gXiHD+X6zxsOlfosNQ0aTOkw6BBa1FgqHJRingKBWp3300ke\nVYZS4omkB138vqCWcO5g6f0dIDchllGSa1jfbJFdstWKu9Dw9rWeuF7UK+f/\nYkf0+xG6zzCrYdu+sCdU5jdjiui6y3XlR1qBmos3fFnegObs607zR47QnWHe\nRVlucmpTRmUBTEdSMgGajaJgqMqq7i8wmXK2veOn08mCsHCErSzWyQrCD183\nkzdUiGMf6u5hM/b/BwSK+NjD1Hq2ggnIdpaS4mdfluLGOHXSeI2Lbro78rLQ\n96ojwgV31rTccVAKtq9bvlVHctXaEk07GJIv4N9S1olgUPAJ1at1q2tPEbQQ\nuMa1\r\n=3O7j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.0","@hint/utils-fs":"^1.0.0","puppeteer-core":"^2.0.0","@hint/utils-dom":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-network":"^1.0.0","@hint/utils-connector-tools":"^4.0.15"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.5.0","eslint":"^6.6.0","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.0","@types/lodash":"^4.14.141","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.12","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.4.1_1575334788286_0.4259788842532026","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"@hint/connector-puppeteer","version":"2.4.2","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.4.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":"363029b93bdf7d6dbabd5f2e173184e165ea79a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.4.2.tgz","fileCount":37,"integrity":"sha512-AnXfgaVEUWD/8LxTha9eiwpktVaJO5+nO3Tq7YdsX0oczIX2IWIwkUhxBBc68qBYW5dCrTslFWKzzjZQuCq1Ww==","signatures":[{"sig":"MEQCIGQT0gJBkxle2J1+0oHLWJkBpYZVxIL9U4+XZ6pduR5tAiA7ttm962CXLd30Mvjho/Efhm+Cap939Ti8Q9doC4P9oA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":97406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5yy3CRA9TVsSAnZWagAAPvkQAIa3T885SL5a8/DH3+qK\nd6Dpgx909FsO5EqgtboOSeq8Y6bi5COMmX2g5lToNHSOceX0IAmeQje1VHhv\nHOu/XkudRhDA3vtwIMv1RyRBxv1Azu++H5lqKWhis4GolrInyOangrqbl4eA\nkf7x8IIg0bwdiq5BIH+w+mEy5qCfSn/8kCw8Nc0I/+0FqbtUqq9zCwldDzMm\nVDrOoq9IKdHwl+51oEkM9gL/sWQSjaG0l891PuT41T1obyjaScRxFfRdv+r9\nJRrzdN3/JJ+C/Svu/KhonN6wS1z+SUztsqtmvf9rqHx63V6wLBmNE+kHmVGm\nDtcBwi1KT/Y5Qp2unGGngGsP22at5RlNQG6UvJxcCUhjwa2gF7laWWpQyrqa\n2SDJVnAEP7p/00ftfnVI+GJ8uf/VseVXBBBJeh0pTTxCzmY9sLTWwK0VOWm7\n/uI1LfIbK+GRFSGa4Nf/DeL5o95tU7B368UAq1Z6+lGUPljZnLNemwPu7Hgv\nutXd5SGjuhOHkjV8Ac7iubuTtTVgOiSToF83mpH4e4iWoKxdnV3hI65CvhOL\n4sUbu78AZmUirgXshIx93NnjF1PMf7umjS8cvmjEu4Q+UoaUF/fzNTq7xbcK\nBjxJI6ecXqR/1J+55eMx3V/qQ9FB2P/t7hnZ+MTl53tWLg9efRbeM5i+lbeF\nYWqv\r\n=CNt0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.0","@hint/utils-fs":"^1.0.0","puppeteer-core":"^2.0.0","@hint/utils-dom":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-network":"^1.0.0","@hint/utils-connector-tools":"^4.0.15"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.5.0","eslint":"^6.6.0","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.0","@types/lodash":"^4.14.141","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.12","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.4.2_1575431350550_0.628450207802614","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"@hint/connector-puppeteer","version":"2.4.3","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.4.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":"ca070386a29800e33d63b8ddbb99683f211e9288","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.4.3.tgz","fileCount":37,"integrity":"sha512-l1d6FG4lXA9ErbnZl3b/9JLIbFzaVyYenBKHlzOxd6hQkSGwgZWSnXn5hO3naOiFLtt8b2+5ngo2nseyK3jRPg==","signatures":[{"sig":"MEQCICAdU3PfreT74MvRzlhAaWTfEWx4L3uXCS9Q2fB9D/0pAiAVPOFCeXHO+17GaKUDzvdCTeDCdwQdFhFx348HkSB5XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":97406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E0wCRA9TVsSAnZWagAAps4P/286wgMDKkLX0wLDJCOl\nR9tIeMhULWageIEU73H3DrLUS157n2dC+DHyqiOUwy5K/DQTQwYAaEGX03x8\nqMcdTEur3DWbEHDCjZeN70Ye28okBRo8mQ+lz4vu2zYff7BVT42vMNp2UIpC\n278c5zhtFEgvDDDMhGph+gr/eNkKSpGbNdC8Gwn/68ZPwUX6pWzKVTP3XVTn\nu16vl5g9i+YXWmAaH2F6VYbVG4fiZXRjR8kBATYN1CsAsEl87PGI5Xl0vd27\n2hZapGYVEgYEwyznseI6j0aLaLP1vnFE0Qn8mqkVEru4sOpkI16ipJaNiwxL\nZrCZABV6taqA97O24707zlqGabNcS+7UQo7O3kxdmxTeRhARd0CB/XQEog8Y\nKC+h7fUkv3oJHwlmaz83INHRUDBpi07G0H2gx/YjJgHyU+Itz/QeBNfwfpWw\nSLaN8aSn/ps27gYFP4ZIlnxBtLSzK4m/fM4nUTB5TJAy9dAEt3BhpIGvuM1j\nC68nneDifCavMYYVO1M7PR+DnhDhKjcykUVvBKRH6T5rVbiBrl5XM+FI7AN9\ndxjLx1IwBYWblZBuLj/EYsMa2Uyks+Om5IO21RDAhI1YKmxGq4QDMVXUAxBD\n4k3zlLZ+a+jWEyAolG0yquOpOl/cOvF927t3mnlo+j9udBb+o1nA/sxeNzzI\nIDAR\r\n=CN67\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.9.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.16.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.1","@hint/utils-fs":"^1.0.0","puppeteer-core":"^2.0.0","@hint/utils-dom":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-network":"^1.0.1","@hint/utils-connector-tools":"^4.0.16"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.0.0","sinon":"^7.5.0","eslint":"^6.6.0","lodash":"^4.17.15","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.0","@types/lodash":"^4.14.141","@types/lockfile":"^1.0.1","@hint/parser-html":"^3.0.12","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^1.9.0","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.4.3_1575505199692_0.032692678464477654","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"@hint/connector-puppeteer","version":"2.5.0","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"31f0db1c0ce07c2907d9686aa24479e1ecd8be22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.0.tgz","fileCount":37,"integrity":"sha512-QrNhUvS4w76sEg1+X7frbpQvdypeu/UsdAMIOSwth+6xCLCAylY7rzgYNGb6kQphSWb6YPy8eCbS8Kml5fHdeg==","signatures":[{"sig":"MEUCIFbOPhpOhu6hsNLxGG9fDJlCZ8EoBb64+qioz/+Agf7QAiEA7plujzdzuLkBcNcS1qA3a4uhaV2S/cnT7lCV8jeis64=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpg5CRA9TVsSAnZWagAAL/4P/2uYb1XHfcfR30Zkh0d4\n7S1+NJi3G0Gj5xKd15fwzwEkQxNktdOpwzFdYuCvUvHXsMfgqc+Q2NfPgT6j\nXFjeXwA7ORsnzoT8nxuEmu9eOFp0K5JGAyys8qqM1fouQAHBVcGiUdll1qmH\nDfOcDpf2fjsdSNYVgLSBX/4Ay0cFzsQf7dEGpPKIVn+R4XyVms+82xLL9tvi\nNsfPKVlYsww5hLekA9t34x1X9eim3GevBr8KPnbCXx4fEFaHN9AeP57E3n6C\nzk1xuSvZCB+UhpxoFWeEYoiCuiSMdkjrTj/IogTfMcgah+ahxYhB2rPTNsaM\nnbT3MIuLiBdR5JErWJzTCz+1Nam3JAq60MqOcJ6z4C0uXH6+S+LH92h6Zk6U\n4sTuYO7x63L8v99woXk8rStcsmTxLeA1fPKQCc/AGY0+prpKGbgZgT0/EZiF\nvL1U5T0kpOyx8Ky2izit/dORv0qABgVt5oSoSGUiuV2XiZhurNr8+IuuQVwM\n9Zcyq7OZlWoM/hkj+KxDtkuALlma2c/S/EXfP3Ycbk9wkDMwBigrB3fCymAs\n1gah+XOGeMFD4SXEHUpQyPuJ/2jnmnNLU5E4N6SmpNxTy+EppWSZV+pi1JYG\nnd2rAaT6hoe6J3U75QiypnVvkBW+tPB/x3uJ2f5bXYNLmIvTSbLSphcxsPHa\nNABF\r\n=kfeI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.13.4","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"12.16.1","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.2","@hint/utils-fs":"^1.0.1","puppeteer-core":"^2.1.1","@hint/utils-dom":"^2.0.0","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-network":"^1.0.2","@hint/utils-connector-tools":"^4.0.17"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","sinon":"^9.0.1","eslint":"^6.8.0","lodash":"^4.17.15","rimraf":"^3.0.2","puppeteer":"^2.1.1","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.1","@types/lodash":"^4.14.149","@types/lockfile":"^1.0.1","@types/puppeteer":"^2.0.1","@hint/parser-html":"^3.0.13","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.0_1584568377033_0.5351905823161007","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"@hint/connector-puppeteer","version":"2.5.1","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"c3f9cd4ae069c669fe0905b12784a3c769665d59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.1.tgz","fileCount":37,"integrity":"sha512-mqUmNu6XXPDQ0hfT+0fKNkSJtE49DuE3ylfPUEueC+ZvPh5Nbb0VuQaHIppVyv1WaDZZ47yYCPuxrQ6NNwaC/Q==","signatures":[{"sig":"MEUCIA7D/89YbK/bOjQ6fFAImdAouNUZlnRMH2Wth89n79o9AiEAw0Vv2j9tP/GOoTViACaT7l7TRK0lfj5VEKG7u5gPhwo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel12bCRA9TVsSAnZWagAABhQP/iDQKkouo1DeevLKlWHJ\nhyXIF0yaPpzpMSJoqW27gl6Zj/Yp80VQEe/+xUafEC3lBDUFZFwci7XU1XFH\n4CsP9IERyqguQZnYldvpKWt5hnJn/a0HfECnTklKJ1eHyuHuFFtKH7UgoBQv\nhn/vGHXZCkcNnpiA0jKXTNQSYYTsrbkwpPAczcFhtV7MQEmRf42gA13E5zW+\nN3m66YlQJD571To1w3V8YUXUr9WOEDw1FPNbij7fIyWWYvnyLC97V617yEMy\nSfbGGQov+Ik/EPCqKbDfN/0tacft8xs8ZZorE+c7WMXG4oCoG7swk3ieQzBJ\nC+f9/FbAIg1hrqeXh68vFbtci3cWkTeiqwEIkhX3ThlZWriw86fZyUjKyhr8\nJepA1tRRKjCUasu7fqmNO+nF2i6Nh9DQa2VC15FAvM9fF+5/55ZMOAVJDDLs\nEB3j3hKo2UL593ERF3vIU8MMN/u+MeSdt73hjXa3pDkPdtAizKcTwHiWPB/X\naLR0T+wY3J/BNQ9qZbcCapyt/nok97jH5bTpyBCV7ZiJJ3bgKDV5ZhBvllQH\n73h6+LWKQKX2wisVvbU7/J9dqFGad7TW3ykzfSHvvSzaFRu56JKxyG6aFKNO\n77V8Sl4k4DgYK838r00x9c+TDyteTTjFDfb+7Jlm7ARmM80xEvgla3mR2Tk3\nC/vn\r\n=0+d2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.4","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"12.16.2","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.3","@hint/utils-fs":"^1.0.2","puppeteer-core":"^2.1.1","@hint/utils-dom":"^2.1.0","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-network":"^1.0.3","@hint/utils-connector-tools":"^4.0.18"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","sinon":"^9.0.1","eslint":"^6.8.0","lodash":"^4.17.15","rimraf":"^3.0.2","puppeteer":"^2.1.1","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^7.5.1","@types/lodash":"^4.14.149","@types/lockfile":"^1.0.1","@types/puppeteer":"^2.0.1","@hint/parser-html":"^3.0.14","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.3","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.1_1586978202540_0.32938445345879686","host":"s3://npm-registry-packages"}},"2.5.2":{"name":"@hint/connector-puppeteer","version":"2.5.2","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.2","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":"5fd81bb4b7647587e2cc1d90e2d44f3d62e366fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.2.tgz","fileCount":37,"integrity":"sha512-CuFEduq14DFDKKAwOeDvNwGqFbmi/7Akat9c+jxpq/zJr7NY10jKJ5jQfZJOtm5ghBRw8m6KzDOYYAjecUvQsg==","signatures":[{"sig":"MEUCIQD7YRpTIRqCFtUl/m8f0ThpWZeDlusdoDYVfIgeryRyagIgcA3FwVr9tm0bu/uyEEUlW6xMMUoypH66N2mxkakrwv8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwiOCRA9TVsSAnZWagAAA/cP/346LFb5n5xAW8kq1+TA\nN0DjLFuofl+W1TTpEty5Y2rGSD970YLVChEZVJtt/dtPIb+xBtLGelPRNeyk\nKc4ygcxHoah1KM4g8/SqDH2RnMKt7qVPTXCqdoditYEFywNZkaDwEMxqS+/P\nMY5DVbuNnEHBgi4IeIXP/Yql9bjKxgkBflqpDuHwAbuCX9FPhVsWl5vwBcQ9\nMRTC8Xqk5nURricQJ/L1FQK5nF4zI9ZqZP24KG5PwLF/9t0ovUeKO2L3LDmC\nmIx9vG0Y8zeYuQUy6SJx6wt3rjO92FuqaTDIBe0CTsBiTzjW+WLP8IL6o5aE\ntNeIlsBPp3LVGMNs9fL+fPXxre0Wew1zcywcAKsXmVFt4fZdbCRYo3gcwPNS\neqKFGZoIbJSbsWaZu6FTEwFtwbpw/beGgNzNvo3At9ROp20TtRUN5nvsp/c7\n2Omx7DfXd0s1I9n7YU/24OvlYk69h2d6483MEQKE42ZhWxT3uIDlsoXGapSr\nycSmhn/NC25Fp4AFQMG/CepYdnb1t0YNsIQbdIjDyUotXUN7qzQTQDo/ZQjP\nIlBmgnE7mCwsiALBL/wY6mUaFo2oRW7+RWAVN+8pK5vEREfSmAtW34mj4rzE\n/5SRyoY/XgkhwgSfs6T4STU84CwIuSRdS5dJDCUt15wpt30lwclIdj5r8mD+\nk2mO\r\n=LGgR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"John.Emau@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.4","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.19.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.4","@hint/utils-fs":"^1.0.3","puppeteer-core":"^3.0.2","@hint/utils-dom":"^2.1.1","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-network":"^1.0.4","@hint/utils-connector-tools":"^4.0.19"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","sinon":"^9.0.2","eslint":"^6.8.0","lodash":"^4.17.15","rimraf":"^3.0.2","puppeteer":"^2.1.1","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.0","@types/lodash":"^4.14.151","@types/lockfile":"^1.0.1","@types/puppeteer":"^2.0.1","@hint/parser-html":"^3.0.15","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.2_1589840013857_0.6281088628617251","host":"s3://npm-registry-packages"}},"2.5.3":{"name":"@hint/connector-puppeteer","version":"2.5.3","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.3","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":"d1951a0b9d3378be8de772a185ebf5fd532f3e37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.3.tgz","fileCount":37,"integrity":"sha512-zvgccCOOkn2ye1IlIMaY5aZH/hpSStHXfuU9Q37kmcNDXkqGmx1Eo+gH3gup8v7SOiJYPplY8qkq2XUpR1jW4Q==","signatures":[{"sig":"MEUCICmzNJXdZqvfd89z9Zl5n77WR4WbmQSWS5yay1jvbUI+AiEA4DgRQVAyK+h/pkAyYQ1EEBWhPXsBs33DVll0a/ormJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzpYCRA9TVsSAnZWagAAdGcQAJWZsWAeJWSTSnSSQL61\nWg5bOYZIH+qIlXIuRq95Zb4jX97uw/Eo/nLvtjg5byNPRTTGDeJJEJWJxec3\nYHZH15k+XOw0K6+Vd79YhT3qj0jse5HsMs/zdxP7OwbNT2dKdRLvt0sZWBBN\nfEag6Rcj1PnkmscMstL2B1EhnVQbKZo/PqAGgvbOJxr+g/6NG+PEG2bhy9hi\nczJs2S5pTlQ70gn64MQ229FQmoKQfO7ssv/4Qf1smS0jTXi1yTSll5UyDSqw\nTmRg4C5s3ZxG73j8GoN8ivBxczMJEQAWfoUHeKTqRqFSqTYyfmxrFnNwJms0\nCgTQF6yD6DlG9AsX8Tkz+WvhORrum51aN1f5NHPqmSASmXlVNF9n4dZ//0zx\nUQ6bgZY+H8IlWUTtsXrarY/53rpWB4yCLmPak+5FIz8KKeT4N/lf7zK2r46R\nPZqLfE6riZN4K0irO9Qxza18KOxdFCgH6Gb/EoRsoqdDO/ERBlilhTLZ2zy5\ndCZlyls5gKwyoU7hjaV0quXivGJuUj5A4dPDQbS9I2yGVRHyC6rQcYFfTnUy\nIstarMnJI+nnVWyM3NjKlOn1Dhc3W35Rq8qzOlWi43B3Msg9ZAab5rocvoVV\n1iMJ5oVVuFL6ptcRDML50VEMxNwg/N0jncA1Rhuk3W/rhNsZ1SgdYKsxRybI\njXQS\r\n=+Zrv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.4","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.19.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.5","@hint/utils-fs":"^1.0.4","puppeteer-core":"^3.0.2","@hint/utils-dom":"^2.1.2","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-network":"^1.0.5","@hint/utils-connector-tools":"^4.0.20"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","sinon":"^9.0.2","eslint":"^6.8.0","lodash":"^4.17.19","rimraf":"^3.0.2","puppeteer":"^5.2.0","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.4","@types/lodash":"^4.14.157","@types/lockfile":"^1.0.1","@types/puppeteer":"^2.0.1","@hint/parser-html":"^3.0.16","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.5","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.3_1595882070766_0.7761952700199866","host":"s3://npm-registry-packages"}},"2.5.4":{"name":"@hint/connector-puppeteer","version":"2.5.4","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.4","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":"2c4eac57da3dd3abc67a56d3c523ecfa2b58b62e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.4.tgz","fileCount":37,"integrity":"sha512-Zl16QmtfnFGhQ5D2xRug9dpsq3VWGwCHhUbOAECZngzVwMmAjJk0s3yi6H7pJC0iZxtz/BhjgHnpN5JNAxU8zQ==","signatures":[{"sig":"MEUCIHzBVaDGXdNmj67ODBiDov7o/xYcck/Jgp2s2u01YaUgAiEAw74h3K/WM3R76XYPejZdT2w3HuJ/Jwt04TQxYbzXGd0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDbjCRA9TVsSAnZWagAAefYP+wcbxDKaByq7a5EnHAsS\nCWdnhlmEwbL67p1nNSI0BRVD3n6qc5QS2kR0MzqJjSDuPET22Qhkyk2pw9gi\nUN/rcJmvHEbCV3ABzwAwZzzbt3K4GZcdhuapGeKbSs49M5RqJAEP/qyv6YXy\njxGst1oo6aInTnvM7R913uD3P6kCNtI+tJjQxBxKjs2DAnR8fxmsv7ZKZP4S\n5sV9ls3V/o6lYUMy+PrbCTEiA9tx6xXynlPt40vn3Yk/xQAzD9fcfr+VPKZb\nz3InTCKMfiwJx8W7HXUkWC9ZbcjcCoMokweI3yU/hwib1ORgx+vF5plpdGgy\nuWj6sLEt5NbIhx8SIeWWF9dkDWWJeJp/MaBNRPxCtdIlgtq3HO7OvkD+cSl7\n4W6OWyUbFeWrYMMkLCX6aRBZQuvNQCOSJQgLz25IYRAUJnejuEhzAwVVaN5a\npVZGOsvYjrWaf0CkTGH1IjfrdO0JPp2JUjAB3+DySKQOLkvETYm6DWxpZGUq\nYWmSHrOLcXH9CjBaDcrzofqRAT/56MflA/vUBjLndeBqFykhrAIcOl41D4UR\n9EzmlJZcnollMYUNWvL9cnjL18vuh9gLz1JMmvawAFMuCGSoDOiCclOR6KRz\n/iOizqjj5h9xkJDQCCKOKkb2UcGG+/1cIUZBTfPlDl2PEgHyq4vEAex2cjOV\n/NHT\r\n=OHZ/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.6","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.22.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.6","@hint/utils-fs":"^1.0.5","puppeteer-core":"^3.0.2","@hint/utils-dom":"^2.1.3","@hint/utils-debug":"^1.0.2","@hint/utils-types":"^1.1.0","@hint/utils-network":"^1.0.6","@hint/utils-connector-tools":"^4.0.21"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","sinon":"^9.0.2","eslint":"^7.6.0","lodash":"^4.17.19","rimraf":"^3.0.2","puppeteer":"^5.2.0","proxyquire":"^2.1.3","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.4","@types/lodash":"^4.14.157","@types/lockfile":"^1.0.1","@types/puppeteer":"^3.0.1","@hint/parser-html":"^3.0.17","eslint-plugin-import":"^2.18.2","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.6","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.4_1598306018559_0.14044451946251169","host":"s3://npm-registry-packages"}},"2.5.5":{"name":"@hint/connector-puppeteer","version":"2.5.5","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.5","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":"38a434ecdc6a4223cd696fe12752bacbb26b787c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.5.tgz","fileCount":37,"integrity":"sha512-5Qf5ZzeQTlYY5avmhq3l4gGuSD7Ea2OjgH68mWAQ1q8GDWLqzvAcxJr7qN9eNb0Ebf6ogR2OxoLxJ+msTPKUxw==","signatures":[{"sig":"MEUCIQCvVAYHspTr0IWXyT8+PsfVijjGS1q2tQ5Z7p2LX9rksQIgKWLTTlgsm8nY907OUJ8fiK9O0RLhtCTjb9g05OKM9Hk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEwUCRA9TVsSAnZWagAAcO0P/3ulkeAOF3Roxl21RCSI\nkVVCuTwszoOnirsWmatxYP4r9KEFlS9768KjnrpoQVYDkbhCC24TyJqCs+Ox\nXdmRAjZ5ZLReRPO5CF3lZ23kjvh7dyfRVAmGuLF+dAsKF2zo8GIZv4fEugpk\nNK5zNCMl/h0zzuEe5WHZJbxmuTMQCGF+vjrsQygDy1eNiG6d2JbLLB9xS4EF\n939aa+TvXY68N2t4yjnvSJjwkV4iA1t87SiUVQ0OnxTKec2WX7+C3oGkyjcL\n/hCrd95vv6GML/UR4MuKxA9rAjSZ0g3W6CyYGyPhkzmzW+/O1cUDpVpqOnP1\niAjHDE9p2I3dluKkY0bOhju/qrIeejdeAUWYzj77OAECv/0dsm3SeZjqT3jD\nEehQt25+lkRlLrZValJS/u02YtG5FRhSQtLELcXpAsF4Suo/Go4rRl+7zcTM\nbvnTGT6JF+ym2vy9z6fehLYlzWpK9yGefYcfwoiEeCse2+za912nJBcHNFoE\nDt4XXCfW14UKCyReY8QjkA9FrUZMIkQ7R1CZKz0lCe5Ru5rD1T4sjA+YdR0p\nIyxFk8K3dcfFL/NANh++MEKtgeKFLpsp41CeU26SAZljDjuOp4AJEHiuaNwi\nuhHikx/2XC+UMfL29rxdVgTwwMR3X5wHUyayRiThQK7DynaYQvcfIqFmJ4fX\nCd+J\r\n=77Tz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.6","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.22.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.7","@hint/utils-fs":"^1.0.6","puppeteer-core":"^5.3.1","@hint/utils-dom":"^2.1.4","@hint/utils-debug":"^1.0.3","@hint/utils-types":"^1.1.1","@hint/utils-network":"^1.0.7","@hint/utils-connector-tools":"^4.0.22"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","sinon":"^9.2.1","eslint":"^7.8.1","lodash":"^4.17.20","rimraf":"^3.0.2","puppeteer":"^5.3.1","proxyquire":"^2.1.3","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.8","@types/lodash":"^4.14.161","@types/lockfile":"^1.0.1","@types/puppeteer":"^3.0.4","@hint/parser-html":"^3.0.18","eslint-plugin-import":"^2.22.1","@types/puppeteer-core":"^2.0.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.7","@typescript-eslint/parser":"^4.0.1","@typescript-eslint/eslint-plugin":"^4.0.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.5_1605127187889_0.38295282411178566","host":"s3://npm-registry-packages"}},"2.5.6":{"name":"@hint/connector-puppeteer","version":"2.5.6","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"4bd275d5756f2e88646b6dde3ca75bcc339c64bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.6.tgz","fileCount":37,"integrity":"sha512-zJrXOKOsSb5o6FCjV14cq44ySoOVr8E26WTTUpoxlaK5GT00ubhfTwpctfCdH2ZhSBoZGlWvn3EwlcBVKkPOrg==","signatures":[{"sig":"MEQCIBtjgZfynvlUzdpGusd6EKpoTvINM30PIoAY/4WEe9C8AiB0ZqjgBhFhXdt3TI91NLWgKnFpyAY4NVpo9qKFJTAbyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEqkCRA9TVsSAnZWagAA8ZoP/2hBbasExxEBbAqmQjiT\nO76vRd82+YMjRcIqb1oFf35Uxpwfw6YqCAqurLX2R56sX+SY5w6YJyQX1Tc4\n98X+s0xNyKRH+F2VPWUdnx0yr560SVwBzrd+JAm5e+U0dgQeQzLW++lojVm7\n/wNChSf2jwPpgGeEKFI/Ic/VDRj/5QSN+CGbAT44bEjDNw3tERPQOM3YI7GT\nYIsQr9sGvsmwyvLUiVCyFiFZD+Nkop/4f7+z0CFHq1L20jRSJix7f+ZRuPtj\nw+7EG9PIPyGWXBK0CN47zTPKkD35boFMKMETHNTpXk1yB1SaXoBCctys19dU\nIP/DXO+1d7mItC+iEq8UJ191RQXnfkahW6jVEhmvjzJq4F8oCv8cRu75Vv6l\nvEaTtzmdCe4IXX7S2KHOBoiQFcGOWYOUz6C/DxRUcrG5RnGeXsdkHZmVuPOl\n/8JJVaTT0x/ylVvPChRPr8boiiabRomJYOqVD9ZC+tHJeLZKlN06LlXO9Fsm\nOCgl45PbD1whmoszV8dmd6GbZ95s6KxqmnRX7CjtqRjfeBP2qogw3vjgAZjf\nEnCYScmoPBqVZ0cOXe87PAh0pFPZGC7enSv28fGeIPuJpiG6m28+CQpSwTxZ\ne3skAkaX72lUhRmtxZWh5WNDnqlR5PFiQCkeoSUZT+zBhME0/AODKk6cb5VD\nlkh0\r\n=Q1fE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.6","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.22.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.8","@hint/utils-fs":"^1.0.7","puppeteer-core":"^5.5.0","@hint/utils-dom":"^2.1.5","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-network":"^1.0.8","@hint/utils-connector-tools":"^4.0.23"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.17.0","lodash":"^4.17.20","rimraf":"^3.0.2","puppeteer":"^5.3.1","proxyquire":"^2.1.3","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.10","@types/lodash":"^4.14.167","@types/lockfile":"^1.0.1","@types/puppeteer":"^5.4.2","@hint/parser-html":"^3.0.19","eslint-plugin-import":"^2.22.1","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.8","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.6_1612466851950_0.48928628977082433","host":"s3://npm-registry-packages"}},"2.5.7":{"name":"@hint/connector-puppeteer","version":"2.5.7","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"da5a7c83e1e435c530088a86d08149c14fc02c7d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.7.tgz","fileCount":37,"integrity":"sha512-cWPNHIA/BUDK81VOo5loRkY6KX8HU/2IVJyl1KB8tyTXoLhv/sKGMVl+FUD0p0uNeGIw9lLPgGEwFS5l8BJCAA==","signatures":[{"sig":"MEUCIQDQb73dRyq5nBN8wXZC3+dJUkp1PedI98wRFHhDBS0F/AIgcAb+TFDYcZ8tWsD9zjplO+cUAfoGxvVyNFSv9JYQK88=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeVVCRA9TVsSAnZWagAAvUEP/2/+T87J4rQbxfp2B4NM\n39892sKbj1bY84X37574+14NPusFI9rMbtHToWFsD87QYubxPYnCjhmy1erK\n+552YWhBGvDt/k60fY/aMM7RCShUkIQzCYreQErOSMpamErqJ8rW7sSNmNDo\nHBFi7iJ1MeZJan0L0zQyWRng3wd7p/32EDkHb51/45JzwZ03fzvYwRXJAzLk\nJzK2gg9fdjH1Z2BDEbvG2iRZqcCvwbv/WU84917nramwy/n+bHsypooopN9Z\nMdYcljsDj+sys7I6sc2H02fzralDR4qwYV5HS6sYONYnwFMYeJkTUTFXuCqw\nUoupka3Dx9kMpSAz6GeKjzuaR8IZmzLMy0NDmSA1HJ9WScPDh0EazPWN7ZnP\nSpZOXmimUc6AxfiW8TuYYNTsT2tUg5R79rLXSzSw6wSL5S/8PNPZHESuqqah\nzcC5BJ0pkzvJUtAgdjdDbf8BsxcoMzKCzYdbC8HHHkX9gfUP+jSJTVqHT7jE\nUJmfCm4ONZKq531ufwNiFGN4OMDGYpTl8WHaVuHT8zdDi8MaBek9hglBhXRj\nuyYLsAJFReiMKvdKJsYKcUneJLhJXwwVqspfUVY5YbeuH0WGiRZ/eenvDHfv\n9dl8u5XoxQVS4qGLeZNihzE9n/y4ykN0faVsuxwL+O9e0/Ty7+sp4ZYo1UBM\ns5kE\r\n=1DYK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.6","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"10.22.0","dependencies":{"is-ci":"^2.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.9","@hint/utils-fs":"^1.0.8","puppeteer-core":"^5.5.0","@hint/utils-dom":"^2.1.5","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-network":"^1.0.9","@hint/utils-connector-tools":"^4.0.24"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.17.0","lodash":"^4.17.20","rimraf":"^3.0.2","puppeteer":"^5.3.1","proxyquire":"^2.1.3","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@types/is-ci":"^2.0.0","@types/sinon":"^9.0.10","@types/lodash":"^4.14.167","@types/lockfile":"^1.0.1","@types/puppeteer":"^5.4.2","@hint/parser-html":"^3.0.19","eslint-plugin-import":"^2.22.1","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.9","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.7_1612571988987_0.017152155471764408","host":"s3://npm-registry-packages"}},"2.5.8":{"name":"@hint/connector-puppeteer","version":"2.5.8","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"b44fdfd7cb20d182b4fbe1c7ef0c40bb96ec5e3f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.8.tgz","fileCount":37,"integrity":"sha512-SY0SsE4Zn5JmJDuFfgLTA3TD1Sy8ID3DwlwBnzbN7/Sp7oysVaaYLFaeJHTlGQzQ1d6LAoYvbjddqrlhM3+k8w==","signatures":[{"sig":"MEUCIQDeQaz728JQWCe8qY0jx4XVaTVHQeKKdUkJLYcy1MmkCwIgO2Sc7QZA1QwWTIcRL0baDluOKrSGFTWfRZ7Bibti4uk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRG3CRA9TVsSAnZWagAAR84P/i3Ym7iK8hgEKCCvpjxl\n6Mcn7wRibwXdo7I4lp9xd76Se8CvrlZbmE10Ou03TFWZ8+pOSG49JhCgnSMn\nyZfkuJfxhStIsOBiUNwRIWl3ch6rQaQdxJi9pwv0Y/8F/bFil5EV1dqaCTKl\nOFByDN5jJky0RwIiakhmA3nTBFMzUgm3QjzoPW+mYWt809K2qVLyTbDZqnUb\ndy68cBk2JXOIAGbsyhhC/zSXWskFIMjY8CEo292FmBG/N16RtsV83rYLIi3k\n5SMgj4u1aneUdwIco77xjfmvjofzxDJ8ASihco2IM2bVNDqKjewr03TaX5Wn\ng5f6nxdniitRYRKzvDbX/mSa+iaQI21BAWtbxqW3c+6fteekX6y2Pztnskhh\nmySVVDd4cXW4AvUmlXoGr31qsjh6CUBTNIGY/Cm16ea3dOq8uvcl1sc8O/Qi\nULK7Y/vpaq6FUIcij2LsOzl2FP/6Je0pZGSdak0UrCdp66afSaUZ3V7bNm/y\ntHD9HZoEb3qTvDn7y2cj7XFdlXfFbJMKIFxrjeJhkFMRzQprbXk1E5ODaxuW\nHoO0UUt2LRs9jQSCF8riEK4XHitvyGmFLUAg5LTy+y2KzWdx6zyV25O+rx6U\nV1LmvP0+8GqSlNxkky0VMurANYrNt54mUR76Qad/dm3XmdSE2pC3cR6pNqBL\nkB4X\r\n=4uJ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.12","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"12.22.1","dependencies":{"is-ci":"^3.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.10","@hint/utils-fs":"^1.0.9","puppeteer-core":"^10.0.0","@hint/utils-dom":"^2.1.6","@hint/utils-debug":"^1.0.5","@hint/utils-types":"^1.1.3","@hint/utils-network":"^1.0.10","@hint/utils-connector-tools":"^4.0.25"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.27.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.0.0","proxyquire":"^2.1.3","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^9.0.11","@types/lodash":"^4.14.170","@types/lockfile":"^1.0.1","@types/puppeteer":"^5.4.3","@hint/parser-html":"^3.0.20","eslint-plugin-import":"^2.22.1","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.0","@hint/utils-create-server":"^3.4.10","@typescript-eslint/parser":"^4.26.0","@typescript-eslint/eslint-plugin":"^4.22.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.8_1623265718812_0.18032261007030148","host":"s3://npm-registry-packages"}},"2.5.9":{"name":"@hint/connector-puppeteer","version":"2.5.9","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.9","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"163da17997b46b05482487bc068b68e416417736","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.9.tgz","fileCount":37,"integrity":"sha512-FfNisruRC2kMTbPkDB9THtbx6iOjR/0szJjcT8EjVeggRnuysdpCfvJ9sBDA6YWqdfKJIuEdbMn0UcvDtCdInw==","signatures":[{"sig":"MEYCIQCQaX5po2zBHHtGv/HtEO65PnYI7BGe0rJCEVfG99FKjwIhAPOg9Y5sKtif7lF7WcMDa3FoMvNtJfm9h1Z66OTDf+OZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133142},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.15","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.18.1","dependencies":{"is-ci":"^3.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.11","@hint/utils-fs":"^1.0.10","puppeteer-core":"^10.4.0","@hint/utils-dom":"^2.1.7","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-network":"^1.0.11","@hint/utils-connector-tools":"^4.0.26"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.4","@types/lodash":"^4.14.175","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.3","@hint/parser-html":"^3.0.21","eslint-plugin-import":"^2.23.4","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.11","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.9_1634833145986_0.9866331424521182","host":"s3://npm-registry-packages"}},"2.5.10":{"name":"@hint/connector-puppeteer","version":"2.5.10","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"68b17dd309715e39a02c1fd3398105b85bbbf43e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.10.tgz","fileCount":37,"integrity":"sha512-MrQl/+/w5eIRffW8KBKK5SnCRzQp//JXEO4Xfxr/c4VlcAlJ+lpsxzMCbARXx0wSsVUIJ1CSp77dR9MR+4D6CQ==","signatures":[{"sig":"MEYCIQCrAYLUhe+1uWVPziQUC8aYYBgFV6EAXygF0ij6zI7xkwIhAJ3BMwN3h4ts036AQXCZ7snyrDtCVOk+2hn4QeeHGOXM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133143},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.15","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.18.1","dependencies":{"is-ci":"^3.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.11","@hint/utils-fs":"^1.0.10","puppeteer-core":"^10.4.0","@hint/utils-dom":"^2.1.7","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-network":"^1.0.12","@hint/utils-connector-tools":"^4.0.27"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.4","@types/lodash":"^4.14.175","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.3","@hint/parser-html":"^3.0.21","eslint-plugin-import":"^2.23.4","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.12","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.10_1635537373203_0.3222772139185377","host":"s3://npm-registry-packages"}},"2.5.11":{"name":"@hint/connector-puppeteer","version":"2.5.11","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.11","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":"4a41c62d849a105bb20c49893e82a545f2ba4386","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.11.tgz","fileCount":37,"integrity":"sha512-ARB0MDf5xztN2enStKfmw7qO4asvdrqOhtD2IpUA3wxiMH0djFNVJ4GmNqxjsuoHx7Z46JdwGMp66V1wu8V7yg==","signatures":[{"sig":"MEYCIQDOhgt+Ioyx2a74joPA8seEWU6VqaagtuNq32UW+gv+tQIhAO2ggRpjXDc9C1rzTmLhk9/ouRCwMbRkW6I4Ter1i7cz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133628},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"7.5.2","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.18.0","dependencies":{"is-ci":"^3.0.0","lockfile":"^1.0.4","@hint/utils":"^7.0.12","@hint/utils-fs":"^1.0.11","puppeteer-core":"^10.4.0","@hint/utils-dom":"^2.1.8","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-network":"^1.0.13","@hint/utils-connector-tools":"^4.0.28"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.4","@types/lodash":"^4.14.176","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.3","@hint/parser-html":"^3.0.22","eslint-plugin-import":"^2.25.2","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.13","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.11_1636050519415_0.5528295970633132","host":"s3://npm-registry-packages"}},"2.5.12":{"name":"@hint/connector-puppeteer","version":"2.5.12","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.12","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":"8b22a414c575e88df04b602274eba86aa448a138","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.12.tgz","fileCount":37,"integrity":"sha512-u0yXNp5TDUkKl8MMbYfvuTxTP8TmG67eiLZnn8KIS8iOqEbgp8LoVe45gcCPT3XLUMkl3E7jdpt9CUGPalfrCQ==","signatures":[{"sig":"MEQCIHEd6kEjSPPiWsb1/ErDUJKS346LLcrU2jY6kUkRrdHiAiB/3B5YLwSc3PTc6aaU/H89kTF8yKKTObU3Kc7bjFkCgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KRCCRA9TVsSAnZWagAAPQcP/RKEFyqWGV8TIau0IbmW\n8zhexbVnQJg4I+2rCmDaEvaF1OB0jowcxRO0D4faE7KZTEQtp2EOuM7tiKTn\n6ct0dUSc2AOcYzT8lg7LmtObRFn9+TPp+JQXFiShTo1IWYx6TgXdriBX6pOc\nsBwBnXF9bgPn8DgF7kAJX8t9LN9EgwVPca6Zqt5F3H7Xw9jGWnl9dusyxUAq\nEYwY6v0M55hAZW8f8U1AK9LYzOwIX0dDRH7ka2Mqksw3I89VFBl4AqiNUNIB\n+FJGLm9NiyKQ0j+liyIGavcVnEg+MdkVTNI+SVIO4Oid4CS2SbPXcjdTQcwU\ns3FeiJBY8mnNj2dJaBV2igc8PmuKu4RhGEUBdvcdyZdWSShfolA5+tht5lIA\noEb56SqHbwYXDYU7jwQwBl7kOhpheI65AYqocE0rRj9hdC6/fM/lp5wCAfol\nSALDSlkOFGfTtQ4n0Ena/tiHALcvVMDIJnacVyjPqn9YoVjmWmzfPdNLxjFj\nTBns/RB4awDqaaWHnNk4yhqzRdchvcYMaTvOOi+CYhWE6li5KC7bn4aBsbVK\nEU1vgzsD9GrKNvB8A66uHrPGc2pNiDqJo3QrBRWSO/66UT2JhLkcoeiDyI6R\nDXhi3aDkldeilSaGGWpknBFv7qWMl9MhM44KlapuMJQ9xQ4F+xx5rLJP1ve5\n595u\r\n=mdbK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.15","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.18.1","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.13","@hint/utils-fs":"^1.0.11","puppeteer-core":"^10.4.0","@hint/utils-dom":"^2.1.9","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-network":"^1.0.14","@hint/utils-connector-tools":"^4.0.29"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","sinon":"^9.2.4","eslint":"^7.29.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.4","@types/lodash":"^4.14.176","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.3","@hint/parser-html":"^3.0.23","eslint-plugin-import":"^2.25.2","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.14","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.12_1637006866614_0.211466089709329","host":"s3://npm-registry-packages"}},"2.5.13":{"name":"@hint/connector-puppeteer","version":"2.5.13","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.13","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":"fd03a9767538a5141873138df13406c800491dc8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.13.tgz","fileCount":36,"integrity":"sha512-6cWGluiibPQQzoBFnHK5CZLlqlJqRALuLw4sL2qBq7R87iky6ywhS///MsOpgx/38gTXXtNVayEhpdkGIcFIHg==","signatures":[{"sig":"MEUCIGXSEFE2zDSqyWfLIUcv4Oll0rJZmE711Jle4Ch2oLJzAiEAp3abnNu3KVi3DUzf32dDdDWPClA5BqEeSgxnBQKj/wM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkYfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPqg//S1ZeuTl5G+emL45HUNXXqVOZL8H2SLMm/LOrAdkiGPEhixub\r\nlmppQNaaqGw6kxGMZqwAq7m0/KXcCjds+zDhBq5ryJAxuPGOU+oXnXDGHVYW\r\nczl9UbskNPacv2C25uYtk7aTtDdG0rhvsLdjvXrg/yQNu99LHH6s/bLSEoiJ\r\nVvzKrxjKWzeVg1YE3hb3cRG3SYwJ1/IsUWs3z+WaLXfXW1QyUnXaL8PDS7mI\r\nDsybB/RQO4Gg6AdW5jA830+87mOjysKviz/1BH/3ZoXZG2qeGqjVW8Mw+l3T\r\npXgPKrFQJQItAtjNAkLShzrA1gAfJTGIVJAPHrAZcthRYYv+M7EwBOKd0SYg\r\niGA3Jsj3ViHbkot5b6LEFfBwn05jAuUe2wvzKIHMvFVAGvvXLa1NSybVbvJw\r\njG1vFnBed0RR8cTLaQIHcKvk/XfyV4RF2zjpdKbSIiP79322aXqREt5UXCxZ\r\nI5ZvIwq+xkbcyHSPY0R2dXxmDRENnE+cmxPX2UvkFSRy1wNuO7snme8SvF8R\r\nc8FDgzR7kzY82Kki8jVCtVjzXeYPL8PQUSYjwnMJq8kQ7vfohC6W/8W3dgIV\r\nGkcKmTzjl8o4tW3L6eacgu6J2GsrSXHGXO0v90Bzszb1hmmiDocahk0utavw\r\nO+kkvyu1JwfoE4b8h8sneeAkZDaPCABTHVQ=\r\n=6cRi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"259226d420ada93e86c1ee0e5876251967abcf04","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.3.1","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"16.14.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.14","@hint/utils-fs":"^1.0.12","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.1.10","@hint/utils-debug":"^1.0.8","@hint/utils-types":"^1.1.6","@hint/utils-network":"^1.0.15","@hint/utils-connector-tools":"^4.0.30"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.178","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.4","@hint/parser-html":"^3.0.24","eslint-plugin-import":"^2.25.4","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.15","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.13_1646937631799_0.5728420037527875","host":"s3://npm-registry-packages"}},"2.5.14":{"name":"@hint/connector-puppeteer","version":"2.5.14","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.14","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9286077599c6a5f7e1bce046cf907e23e1054b60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.14.tgz","fileCount":36,"integrity":"sha512-MRXMFLFcVu3cF2vJhZGtzkn4PZsQtFXP1sf/LFrSwML9KvkZ2ADXGoaKarPlzWxncgpewtzJmF9QrXrr2Rq22Q==","signatures":[{"sig":"MEUCIQC3J9/sLbC9t5oDMEoo7+TvC1xsilpQgCDY2RbxJzzKVgIgMQ7uUFFH1h1wBGNW1WkbAp2fHf8uGdCCgK4raFN1+b0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG25ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqr8Q/9F6PTP+p9nUUmye3vDQDqPud5uB+DXzlbJGqefgB5VNy+v4Q5\r\nNgRMPqGwQcKGijvGJtk4UHPuxpmjMgCXJ+oiFeyJSLXXIOpduqUv6STo0rm6\r\nQ8cyeWT5HpyU7drmoM72TJXKN4I24goa+2sNel/YuiiwpLUJ5N1SCNKt3hHq\r\ntjqKwwvpkxvYXwmFyHDymNHlAu2TwB1OutDM1lOlC8JGI46qOIqVmcNbKyIk\r\n5Dn+QfDUa0l6Vzmi3ZIXnCYw6x6FW8IqSO+yQNkyMxmrG1SchHWWvTBMUO1m\r\nIOuL+1vtOgWUCkBYl10fImIqDkLOTWyV+US4XTJfmxjat4TpUIB8M9AwknC+\r\nuHKN57e9RkWF0PjjxML4G13SNIqQs+sMGTFjNQ+eUZyh68t1VP7NiDoLRnA6\r\n+JeZgaXExVm6PjVrKpAlImRyLXDZiDKTy7l53+DOvXVehzPNr14xTqJ2iJpS\r\nV4DpSp3xfsKjedn0UkONCkJYkFWqZBxyTPGGWGt1y3TRAM6uvw0eNQ3jr+Cx\r\nITrdHgUftdTYBKgl4BqhjVI9FRSGES6qbPc0qu5lKewf5GsWHcLMXWNwS8nC\r\nBuajmAEcPdvusWQWDbV0xy3UhRCdlkxFWtB3odReW+eGHjOFbecUUBiSLoiJ\r\nShqzMiAAWDJRqJjDav3d6r3XGwNrMuKzat8=\r\n=2/C2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"ed090aaf89fa89e6575bca6c116251a40266ae8c","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.5.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"16.14.2","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.15","@hint/utils-fs":"^1.0.12","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.1.11","@hint/utils-debug":"^1.0.9","@hint/utils-types":"^1.1.6","@hint/utils-network":"^1.0.16","@hint/utils-connector-tools":"^4.0.31"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.0.25","eslint-plugin-import":"^2.25.4","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.16","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.14_1651011001334_0.35825063895392706","host":"s3://npm-registry-packages"}},"2.5.15":{"name":"@hint/connector-puppeteer","version":"2.5.15","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.15","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b6216b76d4e8d6f54a146177a09f001e52486a39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.15.tgz","fileCount":36,"integrity":"sha512-cp9HMz+8dWnSoYHrnZaN0zNg1adxgwYFTnC9o9F+qFoqoW+GPMu7e1baoMcUsWuyAg2Z8pX3hrVPPrs/kGIrXg==","signatures":[{"sig":"MEUCIC5pCVQOB6F8Tf8xvbzUG3anz+dRQ08BromwfVQ19id4AiEA0IQfiAjrikgil0kYJlXzmV/+naZQqpJue/nV90akq2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdoJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqugg/9FtPSW8vTYR5W2IbS1yFJegmbfr5+94HnOPPZ6obb+o6sIeDG\r\nWuaZAUwgC19lNWKSqObq3cfgHUfyt25ZHqRkEbp61lCVgflOrp9djkSiiNBG\r\n2O+lXWmaz6qL9sCCjkKxwJFPw/bAypFz8gWx4OFlzjInnWb/z2ozV8H8TMbe\r\nx5cUst9jTXkkp5qjmIcdyxOWwyTRY12/cHJQwzIPMlqrVppEoKygzB4UtSqY\r\nVKcbbcdluL+uipuo/hFEUKGpYF4m3x5b1H+edKdUHagNAwdd9BtRhgkuxWma\r\n8rlGuzBstVQrTRy8bLOYSs3PgVxl212tJLXU57fUX3fbw/A6MIOX6/q1naGv\r\nJ2VhF/BJvBGNpDeUYdn6o+P2z0981/IRCMufb8TfejIpnOXjPPfvbXo7aV3E\r\n9UHa7nndC4yHfomd41sWKY5gxcLyA5HiJPuP3jEZbGmMsl9ztIkBZQUFzn83\r\n1x5cYQZjE2YTE2TMjl1RsvDdzfD9a4K9MxcDgbAvrty5Wz+Dbs++6jw/j2j3\r\nckooO3Vn6jNNebfyQfcLFHR0mj/JzkOOaVqGw8gE//3blvS+G9hiwcLQiBuM\r\nlwDZJocnB+bcwq0DQVzqvRbkQI9sGJkh9Mqcq6H+Vf7DnZFYMrwK65tbsWLn\r\ndZg7qhjGldepGyefOW7IdUyqj78SF11qZHU=\r\n=KRwa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"86a21f9d09e2e0c824fff06081f329f0382af256","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.5.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"16.14.2","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.16","@hint/utils-fs":"^1.0.13","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.1.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-network":"^1.0.17","@hint/utils-connector-tools":"^4.0.32"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.0.26","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.17","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.15_1651628552778_0.22064023038086722","host":"s3://npm-registry-packages"}},"2.5.16":{"name":"@hint/connector-puppeteer","version":"2.5.16","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.16","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":"f383d41f331a096857b877d89c86c7be404de7ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.16.tgz","fileCount":37,"integrity":"sha512-NjO4Y9AmtMV9wav6seTx+NDB1TvkJ8lbRcjy8uDPPR6KuNvz/mN5jXxhRqekS51TBkxRc3d4d51gKab26ZHgNg==","signatures":[{"sig":"MEYCIQDCFi4H1ckhaEK3bsBF3Vavd2dbcvD4acgifrIvSsL4UQIhAK25ks8rSA6IghDDU+wn94rc7beXfXfAncgyINw4zxGo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn8fACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonTQ/5AeiKbdtWYsCRuoleYOdIAUaAv21xocywcA9tfqTZvntoJ/P8\r\nL8BjyvM9L22Sj0OYHL7bv6ZMY9Hiia1HMFXOM8Ll1Es5+oAroTuzsE8zt3dh\r\n0IMyi2kh0pbKX4FEyWtW2m7DcZnSbdr34x9p++l+OtZGlf9z2n0XdKksP2jH\r\n9C3RWRyaeKwtrDI/oKEkGZ11fAFt1bRWko3AcUSlhcB+EuxB6RCRSpaW9RlT\r\nO/T6gJHgPzXSYhjOygtjjsTxhSN/3fMbqfXn4TzFjzSDm/Vt/cU/dS7QmZf+\r\neGUjHWXiibEC0UDW228TbvTNhODAqzJ6k+esEbElzsPINsAQHcK8q/a9Th57\r\nqEgFQNQTMSEZ6vgiLWVvOKdLeZo4YeVnonHLVSNcPjx/u7mR7s5qpMIfOMgU\r\nulKlQVrUMi7bkf8q/XX/RzlNO9DGqaOQXyIlwi0h7niy2+UWwveHk68GMhFB\r\n7ehJNpQMl/yf5PsmcLedOGFfh3D077HMTS2j2Atz54tc0WqKyKdKSqAVylFA\r\nahROBnRHm5jd3Qcj3HI8YC0VHihoDacpF+aKL+MdH6KkyTGt0URputhv3Lsw\r\nBXMx3iI6bKkMXWsce9heMEfDb/my3NdWg8PHQwEXeFcXixPNyqwAl4eXDN/6\r\nqdwBKbfGRtE5UKV2iEoQiTpRPfXz7n5PzAs=\r\n=3xi7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"6.14.17","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.19.3","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.17","@hint/utils-fs":"^1.0.14","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.1.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-network":"^1.0.18","@hint/utils-connector-tools":"^4.0.33"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.0.27","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.18","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.16_1654554399451_0.6862760132885137","host":"s3://npm-registry-packages"}},"2.5.17":{"name":"@hint/connector-puppeteer","version":"2.5.17","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.17","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":"f4d7fed0315eb338d2e52ed44c95c6bfcda84939","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.17.tgz","fileCount":36,"integrity":"sha512-ycXrf3aAAr8pA7/Wpa+qr37o5qw5cjNZMA70O+HQYN2OmfR430IGlpRdBTPZKBcdnkSZUBZ034O2Ht+zo+qhAA==","signatures":[{"sig":"MEQCIDt+OkFpRZHrGLlaJE/1j1uPDIww26xnMqF0DG7rExS+AiATZr5XiwRzj+eaMF725xQLP1Ho3Kj189eG/5T7Z8H7wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6BRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqofg/+IlWZ6ycfTkiV6IjhgSw81bJ7AzwPZtF/CIOXmOVSKxktU0gZ\r\neaOvXod6n4kNmDsbzvCyBV3byd7Juoix+VaOquFimyUxdpBzs7MccJWCUyXs\r\nMDoFgn3hzbcLURQ5f/2RBPDyf40feSTSX3lgRMoBLk2xm09q6M5WTy03VQMV\r\nmneC0EI0gg5b1Lj6j54QfaEg9qpSVSEQ75kckx/TLHqecDMCQ3+1Nr4z3tPD\r\nJkVVu+G69p0E3wtp0Xv9VesMm9q2lcyVE6kWgiQpjhBKBJDpKVhieeQv3wDy\r\neRK3O80KZMt1PnNPLRrCHDVrLHNIhl+s71gFWRke7a5aN3KX/iH65bmq1aD0\r\na8/tgh1LkYScUbT847SW2QZW19Hv7HtO8QXRMYUExVpNHX820V4JeOq6sXJ5\r\nJmOhQ8HkUQObbMSswau15jpYjzH7bWG80MeiMT3MNXBYpC7XNiYxRKkr1nzK\r\nbXF3xuY0H5/WuBKZTYyMB/TQlOh749WQt0frGZ77HvucRrY2bz3mGeFjOn8M\r\n+8eRIrQhkVnMRXT9iXBCzNNWFZqS1DdsgunqLPHynCCrSCrks9sXZHkfaJER\r\naW/Y8MDfLh1c/6mJTHQ5KOWCED6AFWPlXEe826xF/p2+qtpAsap88yKTH2d2\r\ngKhObX/rOXUGClXLHomVwgxDOl0QfoBaLDk=\r\n=AvqF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"8162e2a7a04d31bb7e79e09b1e0b9a2b9365148a","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.12.1","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.19.3","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.17","@hint/utils-fs":"^1.0.14","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.1.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-network":"^1.0.19","@hint/utils-connector-tools":"^4.0.34"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.0.27","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.19","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.17_1655152721222_0.25386721293383374","host":"s3://npm-registry-packages"}},"2.5.18":{"name":"@hint/connector-puppeteer","version":"2.5.18","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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"},{"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":"76c72364e9fce65d316178ef2f010b30d80cf700","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.18.tgz","fileCount":36,"integrity":"sha512-E5cshoeC1nAm0C+2OzhcXFdSS58GhIrLc4OOqwUjnMfmMJ/tXizXBPDQmL5Uo1sjDiKcdEA4KLQIfi1WWNzpgw==","signatures":[{"sig":"MEUCIEY50r8YCPqJbMRrdqn2w8WaQwXvIlGu2+0VNB14ByaoAiEAqrvwYf6s03MtFXJPlVbaz+L8gh7zA+s/LoJRMYEZ1bY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFPnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrePg/9GDZzHrXYn9rQHWj2f+5HhAhmYSpRHGGOpERJpku1Eiducjrw\r\nWHZezvy2SGxTDiFV/9OBxW/r4aC4vgXR9W671QxIsIpS3lof7hCrr5NdVDQu\r\noBbxQXXKS7mQ77y4PKSYdR50BvsyPyu0fkmYfV0K7sRcXCFgainmlanIEXJz\r\nv9KyutD0hymQnNGhT6QRdW7P9/mYZnhcOjaEAL5sbjg96zNixaJ3S3usMf3r\r\nL5OrBY/pR8BAje1Ic+Y2jmGuRsOm5xrou1224NG04tYnzd6QO023i1dZMjxR\r\nZV9hfg18KroXPtolrkEPnoG9E1C05oGDyO6U/fqviHLJ/YYCrnVI7+1cEaeq\r\ngbkRGIjCFizHNsV7V2A3VYOvELLvmzvf6F6iIbqUtgKUh0aH+bYpyIDZQ0/p\r\n2l4WR83/U4vQDUNF81REfKgzA9sqLNpeu9xGhg67Fmvdeuwhuuf4W/6DwYF3\r\nA6wyZ2/KxAUYlUNFrqQploD4sb0CClpAxYhoCOh1jl1N5nykeZW+w6Yx+z7d\r\nEL4sIB/DphYJNS0xXJKGWYX8PdQXKxU1yMT8DjtW76Kh/Vh4rvFHhPzSp0yx\r\nIzhg2tGbzFIdAYkiUoCZOwR6xbOHwHiC9BaRhe15RA5KoItT3Q2DwC+ryi3e\r\nrHQcHeSk4yGURndXo3FlKPEG1QQLSjYKnM4=\r\n=zL8S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"50e8485324a6c885c736d0b4d1ac8513d875f5c4","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.12.1","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.19.3","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.18","@hint/utils-fs":"^1.0.14","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.0","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.20","@hint/utils-connector-tools":"^4.0.35"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.0","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.20","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.18_1657295846959_0.9699475884771456","host":"s3://npm-registry-packages"}},"2.5.19":{"name":"@hint/connector-puppeteer","version":"2.5.19","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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"},{"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":"fe3c99a70b703c0437dc874fecf01593c8a15ebc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.19.tgz","fileCount":36,"integrity":"sha512-ubHFUY4TFb42QxQ591GpCSA1v1ofUJHany8fxwueaqJF5pLm+34cQ7sSZWzI89UQazWlv23SlTJDPyr/AnW0kA==","signatures":[{"sig":"MEUCIGAlrj6KYxKGl3k8fIcionF0yI3A3YMmh76LzDWU/XH4AiEAppAxy0NLxamz+2da2+LrDexokaMFoIRJeuonYfL2HuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yujACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyUA/9GKbTc0paHz2UstvHBd/btJbJQZVpfXxdjQ01hIgckZdp1rdH\r\n690H3sp10d+BJpPiCJFQcTl0z3wX2PCGcR9YfGnEjR32/0G1R4Y/SodKCKhE\r\no2g66HKDuklmAXTRFSCJ0AY3Q6ZcPd/seCAs7W0no69mFjakn45LKOSKWnxO\r\n/5/FMhprFjJAhdZ0vR4RbI8HNXWgfBMxAM34iYjK7cE5RpqZN2MVjZ4NAWng\r\nJFtuJEfGfOZFL9p1Jor0WR6zuKIfYcVUfllKz9FMQQ82eL5V7+Msa3idSTxz\r\n4SBpwH21vLq44t1lSJCnBKZNPC8JQ2mKK4VRZ/Wvyh3uBN2zi7/TrsvGY9rd\r\nzVDlezTGWO7YbdToOYAYEgBjZLKa7cPzVgw0/bO1Ce8VhiSt5l3aS2qdsISc\r\nOhuY3ejKAwY7CcW1dp+YyC5NmNdGbUgJBwoGt3iC/gXjGYVDU36FOImS3spW\r\nBa83c7b2tguJhIhyPR8TCURNLUaymDVm3B395lGOcAijtuBP7US3NuI4NyKj\r\ntS7zxPi7JD1Qu5jgWwl1jUx8EOK5C1Rt8juErt0Rg/C3zpOsVuT7oANDDohB\r\nStYIEFrCSz0cPlh/UtoFS/m9tp3OhXbN4PeAWhezv8lo6dNDnpxlYtaiOgXs\r\nxN4zeaauV6i6gTLM2enKCMTcVTIku4WwA4k=\r\n=0Vqc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"3747703aad67205d4aaac4b74e7f78ed86402c0d","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.19","@hint/utils-fs":"^1.0.14","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.0","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.21","@hint/utils-connector-tools":"^4.0.36"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.181","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.0","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.21","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.19_1658530723647_0.918806059523531","host":"s3://npm-registry-packages"}},"2.5.20":{"name":"@hint/connector-puppeteer","version":"2.5.20","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.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":"a3932b1eab970a8d1f5c12157179d872cf2f77b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.20.tgz","fileCount":36,"integrity":"sha512-twISA/G9U4WKmUcEDohUUYMstGGLPXGWsa3jp5QuexYhkhmKP2iFx1JusRjoFuGVDKAIxhIqLD76BcvlQJPmjA==","signatures":[{"sig":"MEQCIC8nf2OA15f8zYZKQZxLVwTkrISAAxX64HqHwnYEMKz3AiBVw3J/mWO/hH37CnPDSuibRrskEfTXTnZc+k7NF+HXtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3fCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlUBAAiJjNgypkWBYUYETvTL9j3t+3NgHd7/sFWIYlixTdelnkp2d/\r\nZG0WboMaTUzyuTbhxOVAteCNChrfnwugh7cCL3vhrk3v9XXSxSidcHtlhjXZ\r\nj+3uc4ERVvkGQ8txnHfLf21Jf3GIgqh/c9XG3PKTLaLngeQ5r9HkBoBkj4m5\r\n+6k+2E1KQgxcSw1cds/VFzhzpGtIIjA1TtaujayfRv479ixNWPk0VHwVY8UV\r\n1FvYcKuCf/DcLYmM7FUUzdH8G4mm3ZB/vNfJWaTMsm9hzO9nICI/AOPC5CcK\r\nBqaUO06C+g/7qUxW8cdLhojo38BZBLLcNa1wxvgMKQOCku9HVckrLm1PGE9r\r\nQ8G4IjuhG9QgubsbVxaSY2qbFn10i1FU7rPjcwuXQDFRpAABlRTBTWCUgSrQ\r\nOK+5CG10b+nOJ4P1q/80ONa1cer7xR5JLfIgG6CMTipy8wVIVgy/z31Rd700\r\nwgNCgs1oF2MhJ9uFT5m2LtKWyj6A5snMnHSLFdirVFtpJB2Pkad6RgynJiIw\r\nwQ2+4MJ5SYK9G2s8SDPn26KzkoSI8aBuhk5zaNomffRpLEpNia5L+PbYMiDl\r\nnxqgslWuUs9aGRxMaTjL0JnylPz5YH7/NLxNIIbB6/lQGdTK9ZhhvVdkTq+5\r\nZvVNR/guR8NrXvWzl+E6nze1YvALGHnbQVA=\r\n=O8Rj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"64f0d5cf033aa97b12ef161d91e00bd2f750da6f","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"resolutions":{"node-fetch":"^2.6.7"},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.20","@hint/utils-fs":"^1.0.14","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.1","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.22","@hint/utils-connector-tools":"^4.0.37"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.182","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.1","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.22","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.20_1662482369850_0.2943689368486251","host":"s3://npm-registry-packages"}},"2.5.21":{"name":"@hint/connector-puppeteer","version":"2.5.21","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4ef99db786e1b35409b04726ed73baeb13c00706","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.21.tgz","fileCount":36,"integrity":"sha512-8Jf3UXsKBo3OnMGhrWX4W57/QqByT9L8eIgbkvbnE1PhHlmYBecLybsg/Kq1eg6gOFz3x+GWjM0Ki3e1P5GOIg==","signatures":[{"sig":"MEUCICxQcZzSKC/w0MljEIZ7FMcaFLU+2JwmGZ6j4LDpKAnaAiEA8PSHIRHkp4oH2yyQCLiZROJLstmAcv8R1LyQQLjy7Q0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPy+6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHxhAAk1wKu/D+ln+fzcgIigL/h5BdKdOKYFeYXuaIrjzUkS9Q3oDd\r\nL50ObigcpTyFbc5P6EmfdZZkp7oWDMnpOe2UrLKnlM/AhnoXIEPbT5Q2/XLm\r\niwNSlXeGSN3bqksL3l7M0UoPE5ybaEW9A8AGC8dx7wZBLCy7llZEvbTAwheV\r\nisZuTFTBxjGv/++laY4KPBzDgT+eB3VjUdkhqJtaoaj51lw70isZFvwqNVY7\r\nQQ/c68vKZ1OymQWgbNKgog5VSKzY8kI5aZgy+YHsVyPkuWvWJwg6DCWiwnFz\r\nns+z+eclCs0RhIhzhmo0JtyjLVT3asaIbAyPRMqrFcXtT+Y8jOSL9gimdOGU\r\nUaCQTSE9oLZv+BUwLoy9BKcHtTviKcUeSbc2kcH5AfBXCrv5UDz3tgia788t\r\nB6c0vsE7om61ZtIgQEHUrRXQIl/675o0n83m7SgGgSZZk0ft8zDu8Ss6D6MD\r\nBeUNdzVF78xqDTvez6km5H6w9jpnJm4MDDQd2rt09PqfW81L3dV7MRClAvlo\r\na5GGY36cyMRuAo0RWxREKazvaOQXrOuQh/Eq3dB7YzPYtgFPrPCnOIL2Lu2g\r\nBuFg1wU5IPKGHh2cGlKqJLCIbM6AIpuv7E5nAfJvieGtaobdz/fLwd/DNeiY\r\ne+rI2XyBZrSFP21YzZQQzAhvS89hy0dU+Ac=\r\n=lGQk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"8869f1b823276a7cf0417925b78b6aba21d4ee2b","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"resolutions":{"node-fetch":"^2.6.7"},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.21","@hint/utils-fs":"^1.0.15","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.2","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.23","@hint/utils-connector-tools":"^4.0.38"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.182","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.2","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.23","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.21_1665085370746_0.6693771192035658","host":"s3://npm-registry-packages"}},"2.5.22":{"name":"@hint/connector-puppeteer","version":"2.5.22","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"27f8a0387b27fa16e2d0155e5dc6279beb9f6819","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.22.tgz","fileCount":36,"integrity":"sha512-OB8UmxwInT4dNatcNdFaKBnRigUyCXl9bRPzsOaqjI80bdZXqc/7zYqx7b0DJp0rDZL4EKKHEhfp2E+UOfOJ7g==","signatures":[{"sig":"MEUCIQCRzPaVh8NAcv8PNKPFwOegSnSu2uyKjhxh71vZzdbeawIgMP0KhJg9uSYiNlZJ6/85T/gaVNjuEhD5F9iWzu5HICE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE5zqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrsWhAAkGJn3KaSx2Slj+NbrTRPNR4aYgq/tMB3jBOFM5b1kF5+d5cW\r\nxhykj74iqIfa88yq6m9xf376fJWbC56wO5+yGQoKgxpoAWsFPzRyrDOctVGH\r\nZm6LE4lC6SumAG77yM8J0DXOCRFG7Zr7mrCgr78zajsAb7/Kq7aQbPOg6dC+\r\n8iqG6IiJc1Z7b7feD3dEH9qbPyVp+TyG4QFwI39/M5eM3mHJCYxkBvvLUrRT\r\na3jbsdtN5N4h8iKu2jJO7d1gtV+seWzehIWQ9byZfxs/wdjuSQp3x1u6nVzv\r\n+JSmE8jtFLkEp1S69dTrC3Y4c/ZaSROcq/bDWChE+EKyoJMm8UgsYhZ2373t\r\ns92CaI21xA7BhY+H/7zGQbb/oL7kHxu/pl1srmEEEEIQPNglcn7cTQqpGh2T\r\nTfxGp8O9TPxxDP3i3vPs7MMD7P/1ka2m3LTRhOFTfLTX17IYaPl860MP+qIV\r\nbLAVG1VZEaYNxgmC1IoKvYsfTdVcef5uGzPd4EvTR67CCnpEB4pEXiFx663F\r\nbF7Gf8TSE20fB06U8KXwq7mXeC9zx0usHcv/TXtTYi3LVTGguQnTp8ngMWrr\r\nwws/rCQszBw3FK0DriMC3jTLVbwnMRZmhdyv3sHTge/Xbkoh/AiS3pDpPJdt\r\nGu+a6mZz4ScqkFpQ+1Qa9YEaIx2SUA58IeE=\r\n=a/ON\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"722be1b4c0836d5c0adacfb00c8c4f6bc5d1e707","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"resolutions":{"node-fetch":"^2.6.7"},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.22","@hint/utils-fs":"^1.0.15","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.3","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-network":"^1.0.24","@hint/utils-connector-tools":"^4.0.39"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^3.0.2","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^18.13.0","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.187","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.3","eslint-plugin-import":"^2.26.0","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.24","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.22_1679006954375_0.9985684625564688","host":"s3://npm-registry-packages"}},"2.5.23":{"name":"@hint/connector-puppeteer","version":"2.5.23","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.23","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":"0d1c074165fa26288c2b98daa3c74c08bcc07d75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.23.tgz","fileCount":36,"integrity":"sha512-FXq+QE0BZbo/4ymhBTZ3C1PKyNi/einQoKPl5KImw4e+DDTgHzxpTSmOYJc6HEOX078qqrPQ3yWfdhb9n1KXCQ==","signatures":[{"sig":"MEUCIQD3uqnGAj/YymA4lgZKvBvnf16y4qzmPvGWkozsbitUBwIgbsAynL6fO9oLy5PH1dkXznymzdseiYZPQPfXAbIAqZw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78577},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"fe6feadb1f77798203ea9d75edd88cf2fcfd1b61","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"resolutions":{"node-fetch":"^2.6.7"},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.23","@hint/utils-fs":"^1.0.16","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.4","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-network":"^1.0.25","@hint/utils-connector-tools":"^4.0.40"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^5.0.0","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.194","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.4","eslint-plugin-import":"^2.27.5","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.25","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.23_1686327880318_0.8653614718590055","host":"s3://npm-registry-packages"}},"2.5.24":{"name":"@hint/connector-puppeteer","version":"2.5.24","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","_id":"@hint/connector-puppeteer@2.5.24","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":"6127ee40e6dbcfd048f3589e1ba30f43793607cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.24.tgz","fileCount":36,"integrity":"sha512-LhjJTF3mz7rgpDY4z1dLOmdfffN6T7uglAMddsA91YLF7SQSU6G6vciDhgOGbaSFxeXSSWROGt3IZhB5V3Lvyw==","signatures":[{"sig":"MEUCIEUbVZA5vhoupIgMHXSDAiMW5KhcYortAnT7lcqQ8JCuAiEA/te9zkpQOp9oTNDR3NGxdOa6xI60890YIX63lWUiWL0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78575},"main":"./dist/src/connector.js","types":"./dist/src/connector.d.ts","gitHead":"89eff1633735f4669156dd0b2d093697f458aea7","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,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","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":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/connector-puppeteer"},"_npmVersion":"8.14.0","description":"hint connector for browsers supported by Puppeteer","directories":{},"resolutions":{"node-fetch":"^2.x"},"_nodeVersion":"14.20.0","dependencies":{"is-ci":"^3.0.1","lockfile":"^1.0.4","@hint/utils":"^7.0.23","@hint/utils-fs":"^1.0.16","puppeteer-core":"^13.0.1","@hint/utils-dom":"^2.2.4","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-network":"^1.0.26","@hint/utils-connector-tools":"^4.0.41"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","sinon":"^13.0.1","eslint":"^7.32.0","lodash":"^4.17.21","rimraf":"^5.0.0","copyfiles":"^2.4.1","puppeteer":"^10.4.0","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@types/is-ci":"^3.0.0","@types/sinon":"^10.0.11","@types/lodash":"^4.14.194","@types/lockfile":"^1.0.2","@types/puppeteer":"^5.4.5","@hint/parser-html":"^3.1.4","eslint-plugin-import":"^2.27.5","@types/puppeteer-core":"^5.4.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.26","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/connector-puppeteer_2.5.24_1687907293530_0.06445166668364988","host":"s3://npm-registry-packages"}},"2.5.25":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils":"^7.0.24","@hint/utils-connector-tools":"^4.0.42","@hint/utils-debug":"^1.0.11","@hint/utils-dom":"^2.2.4","@hint/utils-fs":"^1.0.16","@hint/utils-network":"^1.0.27","@hint/utils-types":"^1.2.1","is-ci":"^3.0.1","lockfile":"^1.0.4","puppeteer-core":"^13.0.1"},"resolutions":{"node-fetch":"^2.x"},"description":"hint connector for browsers supported by Puppeteer","devDependencies":{"@hint/parser-html":"^3.1.4","@hint/utils-create-server":"^3.4.27","@types/is-ci":"^3.0.0","@types/lockfile":"^1.0.2","@types/lodash":"^4.14.194","@types/node":"^20.1.1","@types/puppeteer":"^5.4.5","@types/puppeteer-core":"^5.4.0","@types/sinon":"^10.0.11","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","copyfiles":"^2.4.1","eslint":"^7.32.0","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","lodash":"^4.17.21","npm-run-all":"^4.1.5","nyc":"^15.1.0","proxyquire":"^2.1.3","puppeteer":"^10.4.0","rimraf":"^5.0.0","sinon":"^13.0.1","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["connector","chromium","edge","microsoft edge","chrome","google chrome","hint","hint-connector-puppeteer","puppeteer","webhint"],"license":"Apache-2.0","main":"./dist/src/connector.js","name":"@hint/connector-puppeteer","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/connector-puppeteer","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm-run-all build:*","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","build:ts":"tsc -b","clean":"rimraf dist","lint":"npm-run-all lint:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:dependencies":"node ../../scripts/lint-dependencies.js","lint:md":"node ../../scripts/lint-markdown.js","test":"npm run lint && npm run build && npm run test-only","test-only":"nyc ava","test-release":"npm run lint && npm run build-release && ava","watch":"npm run build && npm-run-all --parallel -c watch:*","watch:ts":"npm run build:ts -- --watch"},"version":"2.5.25","_id":"@hint/connector-puppeteer@2.5.25","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/connector.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-5P3qx0mJcNlxbBchC3GBxHBNjp1A321wrbELof0N0D1V3N+W5HnKykNhmvbFJyzDHZQqQ46Fh72vgehbSjvsPw==","shasum":"13f1ea805db5a1c5a5ef1e5f24f33223a0b5398c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/connector-puppeteer/-/connector-puppeteer-2.5.25.tgz","fileCount":36,"unpackedSize":78575,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAOuCRjyPFSleYbbyQ+mLoLlBLCjecKte4fUtaHHxM5TAiAXljtfRegF4737WAoUuAIgFRz5i5d65j2YSDlIGX5frw=="}]},"_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/connector-puppeteer_2.5.25_1724949287346_0.15684706798277293"},"_hasShrinkwrap":false}},"name":"@hint/connector-puppeteer","time":{"created":"2019-05-23T15:46:28.558Z","modified":"2024-08-29T16:34:47.936Z","1.0.0":"2019-05-23T15:46:28.946Z","2.0.0":"2019-07-23T16:28:57.867Z","2.0.1":"2019-07-24T21:16:29.287Z","2.0.2":"2019-07-30T19:27:44.243Z","2.0.3":"2019-08-06T20:38:56.027Z","2.0.4":"2019-08-16T02:36:24.947Z","2.0.5":"2019-08-29T15:50:45.674Z","2.1.0":"2019-09-11T22:28:36.432Z","2.2.0":"2019-09-19T18:29:37.226Z","2.2.1":"2019-09-24T19:28:20.424Z","2.2.2":"2019-09-26T21:17:03.157Z","2.3.0":"2019-10-16T19:42:14.520Z","2.4.0":"2019-10-29T22:27:24.724Z","2.4.1":"2019-12-03T00:59:48.430Z","2.4.2":"2019-12-04T03:49:10.727Z","2.4.3":"2019-12-05T00:19:59.775Z","2.5.0":"2020-03-18T21:52:57.149Z","2.5.1":"2020-04-15T19:16:42.689Z","2.5.2":"2020-05-18T22:13:34.095Z","2.5.3":"2020-07-27T20:34:32.313Z","2.5.4":"2020-08-24T21:53:38.725Z","2.5.5":"2020-11-11T20:39:48.299Z","2.5.6":"2021-02-04T19:27:32.073Z","2.5.7":"2021-02-06T00:39:49.144Z","2.5.8":"2021-06-09T19:08:39.002Z","2.5.9":"2021-10-21T16:19:06.145Z","2.5.10":"2021-10-29T19:56:13.356Z","2.5.11":"2021-11-04T18:28:39.597Z","2.5.12":"2021-11-15T20:07:46.964Z","2.5.13":"2022-03-10T18:40:31.924Z","2.5.14":"2022-04-26T22:10:01.505Z","2.5.15":"2022-05-04T01:42:33.044Z","2.5.16":"2022-06-06T22:26:39.607Z","2.5.17":"2022-06-13T20:38:41.405Z","2.5.18":"2022-07-08T15:57:27.151Z","2.5.19":"2022-07-22T22:58:43.830Z","2.5.20":"2022-09-06T16:39:30.056Z","2.5.21":"2022-10-06T19:42:50.958Z","2.5.22":"2023-03-16T22:49:14.559Z","2.5.23":"2023-06-09T16:24:40.462Z","2.5.24":"2023-06-27T23:08:13.735Z","2.5.25":"2024-08-29T16:34:47.705Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}