{"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"4.0.23"},"description":"hint for best practices related to the meta charset","readme":"# Use charset `utf-8` (`meta-charset-utf-8`)\n\n`meta-charset-utf-8` checks if the page explicitly declares the\ncharacter encoding as `utf-8` using a meta tag early in the document.\n\n## Why is this important?\n\nThe character encoding should be specified for every HTML page, either\nby using the charset parameter on the `Content-Type` HTTP response\nheader (e.g.: `Content-Type: text/html; charset=utf-8`) and/or using\nthe charset meta tag in the file.\n\nSending the `Content-Type` HTTP header is in general ok, but it’s\nusually a good idea to also add the charset meta tag because:\n\n* Server configurations might change (or servers might not send the\n  charset parameter on the `Content-Type` HTTP response header).\n* The page might be saved locally, in which case the HTTP header will\n  not be present when viewing the page.\n\nOne should [always choose `utf-8` as the encoding and convert any\ncontent in legacy encodings to `utf-8`][why use utf-8].\n\nAs for the charset meta tag, always use `<meta charset=\"utf-8\">` as:\n\n* [It's backwards compatible and works in all known browsers][html5\n  character encoding], so it should always be used over the old\n  `<meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\">`.\n\n* The `charset` value should be `utf-8`, not any other values such as\n  `utf8`. Using `utf8`, for example, is a common mistake, and even\n  though it is valid nowadays as the [specifications][spec aliases]\n  and browsers now alias `utf8` to `utf-8`, that wasn’t the case in\n  the past, so things might break in [some older browsers][utf8\n  example]. The same may be true for other agents (non-browsers) that\n  may scan/get the content and may not have the alias.\n\n* It needs to be inside the `<head>` element and [within the first\n  1024 bytes of the HTML][whatwg charset], as some browsers only\n  look at those bytes before choosing an encoding.\n\n  Moreover, it is recommended that the meta tag be the first thing\n  in the `<head>`. This ensures it is before any content that could\n  be controlled by an attacker, such as a `<title>` element, thus\n  avoiding potential encoding-related security issues ([such as the\n  one in old IE][ie issue]).\n\n## What does the hint check?\n\nThe hint checks if `<meta charset=\"utf-8\">` is specified as the first\nthing in the `<head>`.\n\n### Examples that **trigger** the hint\n\nThe character encoding is not specified in `<html>`:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <title>example</title>\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\nThe character encoding is specified using the `meta http-equiv`:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">\n        <title>example</title>\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\nThe `charset` value is not `utf-8`:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf8\">\n        <title>example</title>\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\nThe `meta charset` is not the first thing in `<head>`:\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <title>example</title>\n        <meta charset=\"utf8\">\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\n### Examples that **pass** the hint\n\n```html\n<!doctype html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <title>example</title>\n        ...\n    </head>\n    <body>...</body>\n</html>\n```\n\n## How to use this hint?\n\nThis package is installed automatically by webhint:\n\n```bash\nnpm install hint --save-dev\n```\n\nTo use it, activate it via the [`.hintrc`][hintrc] configuration file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"meta-charset-utf-8\": \"error\"\n    },\n    \"parsers\": [...],\n    ...\n}\n```\n\n**Note**: The recommended way of running webhint is as a `devDependency` of\nyour project.\n\n## Further Reading\n\n* [Declaring the Character Encoding](https://blog.whatwg.org/meta-charset)\n* [The Road to HTML 5: character encoding][html5 character encoding]\n* [Declaring character encodings in HTML](https://www.w3.org/International/questions/qa-html-encoding-declarations.en)\n* [Choosing & applying a character encoding](https://www.w3.org/International/questions/qa-choosing-encodings)\n\n<!-- Link labels: -->\n\n[html5 character encoding]: https://blog.whatwg.org/the-road-to-html-5-character-encoding\n[ie issue]: https://msdn.microsoft.com/en-us/library/dd565635.aspx\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[spec aliases]: https://encoding.spec.whatwg.org/#names-and-labels\n[utf8 example]: https://twitter.com/jacobrossi/status/591435377291866112\n[whatwg charset]: https://html.spec.whatwg.org/multipage/semantics.html#charset\n[why use utf-8]: https://www.w3.org/International/questions/qa-choosing-encodings#useunicode\n","repository":{"directory":"packages/hint-meta-charset-utf-8","type":"git","url":"git+https://github.com/webhintio/hint.git"},"bugs":{"url":"https://github.com/webhintio/hint/issues"},"license":"Apache-2.0","versions":{"1.0.0-beta.0":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","meta-charset-utf-8","meta-charset-utf-8-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.0-beta.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"67cf8a675916dd1b8422a0be378ee10c31d2e663","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-ohdDnB8Dt4UHRYl6luoEtN0umC4jbzKzAc+4J3Em1gaoHDThC2Mysx2bmzTTEgyvkDu4bkTOACAKAXUQL6KpdQ==","signatures":[{"sig":"MEUCIHNOt/rSRHTyrrTjA+O6juvqC22rB7zg3+gE7U6H9ux6AiEA7stCYj/BlrwK/uQfVtSxDsXza4oExt/Qr+44Ak3t1P4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTlKlCRA9TVsSAnZWagAAIFMP/iyK/i7ox8ih32nPXW5m\nexu95y316sR38xc3C3GZVb+liVrOcQCWtpeNBpi4akdZSDsTtLQy+jNsjT4O\ndDjt/z3sh/H4rrRNhWiBfQqtX2A9u7xQun2+0QesOr14vKFuel5AG8Jj424l\nnViKr+7sFzRDYwZcP/yD+hKr6P1Br6zA7xhInLwxnQWfukhSCh7CPsOLKLIg\na6dx9GFFGLuyCa1M/PReF/gzlBinCstgBJ0mhbydNm96VBPgMUdAfR5kQ6Um\nj0Ghv9TMJydBYAVMEbs5eYMlA5ASQ40rzuHaCyQp0iUE5lzyDcGmdOMepyfB\n9ZBdEbPu9jDu3H1UQfRPq2vAdYjmOWTrVGRFAe7jW2VENUKc83AKfvfWWsN7\n35eYSTSW0VnGyimQ6QZQui9NQzMwQTCWkTJX6ghw88Sd6srX72Oarlo0+A53\nesHya8rFpE8vRpHADjTCjxkG4aokYu81XJFJYKkY3Yw/LL0CbRLAICdCGgAA\n1yQ2GFVYttiRavfhXRawTkiNSOIhkCS31abSy8GwNPruZVCUWFFTLI/+KSSr\niEe4uRVYPElUL8y4CcHzP8KwnoecRmJz5TaOxO1QEGiCjXJmru2XUUl/aJld\nXnwB7z0i3YoB7roW3WOenBVuP7SuBbUJwtY0qsF27YniJCdBKXVAId4lUNiY\nEz7n\r\n=KCQz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.2.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.4.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0-beta.0","eslint":"^5.1.0","rimraf":"^2.6.2","typescript":"^2.9.2","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.11.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^16.0.1","@hint/utils-tests-helpers":"^1.0.0-beta.1"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.0-beta.0_1531859621126_0.10598339731627093","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.0","keywords":["webhint","webhint-hint","meta-charset-utf-8","meta-charset-utf-8-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"146f7bd344721a256c095b7662e7ca355b05db53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.0.tgz","fileCount":7,"integrity":"sha512-EHp9V1iNXrOc41YqeO6UrBHWTSMnfAPVrakTEXFnTmh+bWZxgpJbss9sLlgBpEMudUHkR6cW64gdNdIB+IDkOw==","signatures":[{"sig":"MEUCIQCaSURdlW89j2DAtBl3zHXweOGSTgYC/3uby2UfKuUecAIgC1/3oLrzlapPOPEv8AciVP04E93G8SmL+4FSMCYYP2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaMzlCRA9TVsSAnZWagAAgMAP/jWUqSQl9aHswCBIwlY1\ndE3lmjB1FHhgONAm5Bfl5jqBrgIwG0oxikKnuKN55NCHUVnN2UyjEfC5HlLe\nhbaBd+kjjtDCBsAq8fz5l0WyFkdOXSDXW2FqM/J1G305cQbK48EsV/sj1vox\n9FLAZsWuBk2eZ6HqmXX3JMxKYRyQ7h4eYdFaEG1mEClnhcj9BuBWoe7701zO\nBKcRZp9zqZxDL9L9fLCleotdA7g9FQ7oOPfGmXkjbTXCPfNBoxP02TnK0rWn\n+MFa95A1B0q87EQ7jdq1XRfNLw1W1K05umwmcfBPX4x+DSyoYUuR54tMmYYR\n2Lg2QYkverLxck0eguZzCnU0qw3QYzoM2YPpOQD6xNyp7mLRJKFmmKbbDHcq\na/f0bon+OUOxGX0W6cjP1DoaAlcWwOO4S6XYPuJcM1yoCjeLHzUMGXRRc0iq\nHuGeed0/vpL59vBkoYDyafPHZgXBLUhlZBGv/OCRulA0iV84uTaJdSOxaTPS\nxkaWP8EWs1E6tK1YS5+2mvxXElgD+ARpBDCCR8Twg6WuMGgZm4WTvG4k1Q1t\nLLd8REJKlNLm39moaLA9zlElqPY3rubN//TpZV+eKfdL5bOzOd0WM9YfAPwA\nW6eamR5eJJ6oh5yc1Xy3WUtjeEg6xIQMr4JeMJNuvwR7MeC1GAVMGhBNHP5a\nPp0j\r\n=Yq0X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.4.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.0_1533594852959_0.26319563171026394","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.1","keywords":["webhint","webhint-hint","meta-charset-utf-8","meta-charset-utf-8-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.1","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"70e38631c442bac34ec8252bb8a98e4371cb1f53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.1.tgz","fileCount":7,"integrity":"sha512-R/Xd1/uZV/omMDbL5EFQwbW9fJFvDI+r0Q7rFXtghY7czI+mX60HItPz0ZsPOCToNVc5oxry9kpUW1mo4Aw8Bg==","signatures":[{"sig":"MEUCIQCzdY6dlxg8fxOWgmgrozie7tEWkvfuRfbk4qAuWuL4PQIgIRV65TIuDLzqavMa/syritmKCz3E9Bjt53TaEFI2VIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29776,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbhcJCRA9TVsSAnZWagAANCYP/1tXhddZYb/3TROetVSM\n50Dr698X7lNBQJMf8x67+WZd0Fj2IAxe2FmicBjfdcXb3iHTp6DaJemUI9S/\ndDfRO08qglCq/NQ8bf4l/7tFpBbSj+KSVx62+9XUmmulC9sBh8FiGg32FvT0\nlEtasNfyilOR8asmUKWZjXsYIbXDvosBKvkM+ZKyZSG2dA2ZdoXNATrHWjgW\nn7uoP+fN4e6whPWgzPqJf3GJWVB0kfm+Z4BDNkOIzptuP5uJJPrBIV0vy0wU\nEpAgy8tUdo+Gw73AnYwMYALm4fVhKGDVOH4eVs1FnDmndjiLrSlzL4MQiJDd\nLzZVVGQ66DHOAMVaBUVhwrzEFfpws3ZkphUO691ONZ2bCrK3xfXCGMH7k1iY\nV5rrMRunJIoqkKbg7WKevU3yZzkLOqLlC1Vnfonv3C4NUm3x2ZTEzUOKDr2K\nmr/gaUj+SF82sCL9xt5oNWAzb8xQnS2vWTi4iF3TqANO3MWPpOQ+/u/DhS9D\nXKraH2AK4Yte0Lu7Vbs1nVzN3cRXG3Qj9dB6YfBroc0QV3Z1nktuuV65EYWy\nOEBJu71rSXH+5P8XqOB+UyvOGFA3NgOgWxi8YHtflZ/p1DWY8Pt3T2IN2ElJ\na1eNQx9Wohbx7FdLt33ffO1A7s5SPN60TXBGuIX0gmplJtlLO5Ri8M/30HTl\nyTIL\r\n=CfRC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.4.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.1.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.1_1533941513371_0.27455779603832364","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.2","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.2","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1001cae7084ac339f5c64229859b81dc3deaa633","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.2.tgz","fileCount":6,"integrity":"sha512-0CNCZemBbCddB3WEk8yzgjR5F3Y5GAMfXlopxhXFA/Cvi06+2EpbQROFMDFtHUe7q1rvWxxXBvd+FWhkfagcvg==","signatures":[{"sig":"MEYCIQC5P1X7rJa/5odZ7q5tsxY/z3VMBOqkdFUfVkUME7XAtQIhALewEKFE+l7+5NHlGiF2LDiPHpSWQlA6eCAjT7Y5MuVz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkatSCRA9TVsSAnZWagAANDEP/3xbdILh8TV9dWGToRkc\nB25VQCenNgSKOHySHRj6y9OySg6fxisZKKp6Y9lRQniBikgz1gScd4HfEeNr\n6yzBtELyLVgBMVktUauOfwwH3OfWzrdWRcEMud5SCueS7i13bcsg2xzNJHdl\nrKEwSsphpQrSMjfmqbWw8ODDfzdsZLhm/tpV7aLbFBIIOIl0S8DUr9RGarE1\nEqanci3WkPUyxTfTqsG9tt6TfrvJu8lUIetjOgDmuYlsJi+oDFyawDiAPcjz\nlg30WKlc6ozpqaRkfJ0hxaF22YkPveTy+uqarKUXWwmAWPiv/tegrqWy4KPq\niI/4J/wbL3dk+MgE6hm7DkmYbaWjfb4Fo+RFkZqlLS+9EsWpzWm+M7bWuf0d\nM1nKAzA/p+EjXPtagSkA/Ut0PyX2VWFfsczLvQuDtZa8eCvems/uNfEV0FHe\nFvzuXjyVS7B3nc8XABFEoPL6UEBfJO4MnRj7YEha5IZk163hP3H9R/qz9r+Q\nSZcw7mTOXtLdF7VCfTA116fTCBe3cCx0NuzomhfkYR9E9TiTptqFoLXbPKcL\n39hP1iUNjc4jNpcP9L7cOE4IAdG/rs6EnZ2Dqvgrg44Rd2m5CagqIxJpTiHV\nBasjzCcKV33hrZgBijj/blra8thpIOMCoTbZWZrAslRK3g0TmgPOvtJxgliV\nM+BK\r\n=omsy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.4.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.0.1","hint":"^3.3.2","eslint":"^5.5.0","rimraf":"^2.6.2","typescript":"^3.0.3","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.3.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.2_1536273233160_0.15950978230865953","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.3","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.3","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"22ea6b594fa9b181bf2bd2dd395f4c8d938749dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.3.tgz","fileCount":6,"integrity":"sha512-F+niOteKWe0vhctZ49/t0FdiPw7X9E/xcBC/Ok1BWTiGAj/WYnqWGTwaY6RIG2WSH8qto1su5XXx9ZxkOAKSzQ==","signatures":[{"sig":"MEUCIDZ6RQJrxOJO5na1BZTQ6V3fmuudw0NezsTR9u//QCImAiEAj8MNwP2cz+ZAUZjg33+D2qsYgVECkYwNCYO20tp3y6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs/6SCRA9TVsSAnZWagAA7rYQAI4laRf5VUrrO2gsH8jW\naqLhOHpVbCNGlT8/FtJUUukABD1WeAINYZYbxgf4uhG9wd6yrE8QSeZzngjW\n+YvQ/S6U6Fp4B3C57DRBEnutazKbB/R4DOp0bZKDWnIIiEvLlreDuuQo1ALY\nr9T+5T43wmpDliymOrTLb3bbct2AzXRVcVcMFzZNwE7zkRyUQPNvoJrMwVDV\nyRzRbvVZcMcF1le7pLOE4+lkWtIp3Ft3SHytLNWKQshi1GMfU6zgVfPMUiBR\nIlQHrOHU8MO9zBNSC1BFtaO4RxbjabX1Vl8QPCQvGQbnEZEJK4vZpRUTR1BG\nSpIROSwPteDth8+U81ADZo2ScHrE8xvCAO50amkYefmmmhi+wRF7aGCTnwRU\niGc4ePVezQuMyoo3OT65s2elikHdoX3CTY/oVR30ASCcrwceu/2glCQSz+LV\n2WlGhfYvm+FLlzWpP2h6UOBBbHhYAjevpXnZ2xf7QmTSN4RXvgIddghxto6o\nmezFMsaaxo1AOWBLOqmXf/UQczKfQ0GuTFKi4u17D3t6lh3dTTP/TsDmFq5I\nsS7g7sl0LYRUTDBWl5HAc8n+SjxFQd6BAfQxa1kg8F0uwubW3yfDGkpx7kmQ\nSppvFEVcD7Vru/TUGV4ZCYfrvwyFpQszumHYCUbt+zY9WqDsV22AUBgMQuCJ\nn8ul\r\n=271C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.10.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.0.1","hint":"^3.4.6","eslint":"^5.6.1","rimraf":"^2.6.2","typescript":"^3.0.3","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^19.0.2","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.4.6"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.3_1538522769522_0.20925650262557083","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-meta-charset-utf-8","version":"1.0.4","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@1.0.4","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d5c42a1bc1beb9bb73773bd084f51152e0ca8c32","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-1.0.4.tgz","fileCount":6,"integrity":"sha512-14/AzVkNHZQ+CUTBcn7hwyo0BPza9u8Sv30KH5yFDA5QkYzM1bExmJgs2tXnhqo0EfGZ0c0XGWL50se5PhwdRQ==","signatures":[{"sig":"MEUCIQC+cLPMSRnHoj2IrDaAmLO27qubws7UmkWgTAfpj3rjQgIgYoSIECweIFV3vrSRCZgTdKVroU3CNc2Ba5wpC5OYHn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2j20CRA9TVsSAnZWagAADUYQAIBsZYc52iTNYgp27nMt\no+ItmWZ7E6mGwKlF3XFgl8Ik2WobH4PgZJgf37A6y7iHt+S/wU8lY9uPf9RZ\nAqExMELFts6/QJP/WzpLe0Fi9h0gucMD16DMMztdB+fvgpVomhelTTJknjIB\nmzs8wzoOXbXtAViG41dqOI9Zniz8z7rjvISaXDOblvyOr7hUw7hbpdmVIUH2\nGBVyw3g3scC6zClsetD8gTeghmISiIJKAmHGsuCtI1FgMP77C0Y0Y3JZS/qW\nKaDjkEa57XQtUvyMmZH2P2c0XQ4LabQwfxQ8MBBS8Vn3oeLNhN4F9vuH9yFA\nlf/M/UQVdYHiouahBNjod7lVCPpJ0Vvsn8OuS2yezlVp6TdrlOBadihIB6ow\nM5II0Vw6HnyssiB6PNjXtnhpRNHYzJROLOPV2Bs1pQ1HLwZ9IEy8L7x/xUjz\nKl85SArh9K8bj4yYaJrA37Uib8gt6UtTa3eDJzmHURvLd75aEIgl6sfQqtBw\nwrhSDdClekT8Qcyft85XTEzTEFkQRbJhncLkN/z+kMQIXA3q+KtLHcsQdPpq\ng2z8lO/oV2TPQyQlMPpBBEZ73ZJjP8fKWD3LfNYemASprxI6lwAaZnHnQNV6\ngKMM1jfgSEXTyEBHgACNO/WZJMqHqDBFabQNK7bqQzP5R4rJEOKWj6p5fEHr\n+TqQ\r\n=1tNB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.12.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^3.4.14","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","@types/cheerio":"^0.22.9","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"20.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.4.14"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_1.0.4_1541029299440_0.25451267426445723","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-meta-charset-utf-8","version":"2.0.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@2.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"12fa3031fb8869eba6575cb9c505b64315b2014d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-2.0.0.tgz","fileCount":6,"integrity":"sha512-qvDujXBRhlEYoZIV3tIo2lSDi3aKJWeJ/1R0Ku7Z9bgp6d5NnVVbfosV80XlHBZ8LLCt60QzSSXIasYOQkVQLQ==","signatures":[{"sig":"MEYCIQCtACR8SPp/2dUebrUyv9lVsgT4WwV9AYF4Fau6aF76SAIhAMb6kbGtQ+RvHDTCGpSuJ9N9eUzdrPIC/t2zCO9W2ecf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4NuoCRA9TVsSAnZWagAANYcP/03B5IHIjAkYkhibOUSb\nWgjcU5Wtj3W4fQvzz2SW1uKpKyut2M7Gl/aj5j/Mg93qTK9ar4ccAbfuSzy8\nENdF/v+HhOVCnIDAhXyH5K8tgaF77RNzweJDXDzcMI2cADorR9whO1h9HbrB\nEG6U0CdoN3ApHeOapkNPsQloNsIXMtTjVo5AscevvvAND+QXJeBd4JEFMpc6\n4Tdf6qJB2Nux6G7aBWVleFQrGNPRUcXuYRwnMl54yUA+jFI6nVGkECMgM8Ys\nBbn4H8HIMqLDP/XGLNK+TW9+Z219Dfvkm/SaGjg8AB5oHdnmak6SoQZNgG4U\nq8AOeEx+WMq3V+iXzjgJ2CC4flisTbouhU50QB1YgS2fX+SYQdpIHVq3yPdO\nL3aXxM6FAV0wqIgRtJejN2CieoYsuQWVYOr/pU0r4fVXrO+yVJekso5AQHBm\nc0UqRfdl6T70LJ1bOvXc9lLX9Ln9MTV5bfq20vm6V0oEXZ1eAdMJ2NOrXQPd\nOnj9JgC5g9ZSM8Cc/XKemlfM0lEHBDwm78x5hMa2xxkM1OutRNS7U+CIdfYv\nsR/vDGEW4kZFymni7EwyGhvXdquAflJI8fOSIKoDeRQh7VA3oL3mN4YGQia5\nlJCgnbFHVmAlbJeU6/+lc7O1ywg/NIbPK5PxdykOkzxUnJhn/l/sJbepWyVn\niuZt\r\n=Sdnc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"11.1.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.0.0","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","@types/cheerio":"^0.22.9","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.12.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.0"},"peerDependencies":{"hint":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_2.0.0_1541462951731_0.25628758112002625","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-meta-charset-utf-8","version":"2.1.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@2.1.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ea4e63e9e5fc75efbe1273e404c112b73611791b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-2.1.0.tgz","fileCount":8,"integrity":"sha512-Ysmvs0UeEyQled+0SJXNOVS5HskdUmRU3rl17d33N1ty9Kmnds4c11uUdLMG0VwOpRvfFzMnJlI9hQtoX5HMvw==","signatures":[{"sig":"MEUCIQDmFwx8UXI/Lr05DCshMMoRXkBAEIS33LExqxIO/NBSDAIgUZQ0awjkp+L+p4PIb1d1BXojgtV/RpU9afQZ5hQeTkY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26174,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/j7ZCRA9TVsSAnZWagAAkEMP/jU6Su/gqMchsKqt6AJg\nv8iTGsjuwdBlFBLyevn6Q2go+F106z66tOnB0Ql/KePSpBd2hQqCIKs/9zW2\np/ZJBDMUbgcEh55gwUPcmbgDkRTVdWYg++zwV8fwvKhiXNMwkUycNdhWkfTa\n/fLCuSQm2RtX2wFWZ3K/syseQmoEkouEP3TFSTgahiEe2WKAFrSJyv5d7yYv\nIb+YwHk7nVD1PHBfweF5W06jzzz7EViMHCyLqJOOWWfL906JQffTUOSUtf1K\nCPUKxmvWSymWgvDU6hGRjfC0O694Y4kqjPN7D/Kw2pb4pl7+HglEpPO6jWYy\n/Aqk1QoDutioJ0g+jrPtkIAqnCn45mHc+ZaeHduitVzmOMeQvefa4T8Z8gD0\npR42BfP/afyWiK3Z96x6HaOGkcO0gm0MAoR1319cuvJjEgXTUMekI5ZY+JFr\nizurHUAWrWp0lTwB9PgbE2Mo3enMH9ykyqYdwnVpaZNQeKGLvTMSsR26r7bM\noMtlLL+sphm98OrkSrAbaC4XIn33xv1o8nrU98rFqLMFHOaqg0u/+oukK2pF\nx0LZiu6yxnbD8kJ/L07dC2KniqO/vE7btpx4LrS7qIgHF7zzZLNafjzqZpl+\nJJqoili5pT2NzS+O/6lb6mlXxi7wZmPSkivUeNMb69POTrE+ctzw6vxA5nIG\n9gc/\r\n=z7R4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"11.2.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.0","eslint":"^5.9.0","rimraf":"^2.6.2","typescript":"^3.1.6","npm-run-all":"^4.1.5","@types/cheerio":"^0.22.9","npm-link-check":"^3.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.2"},"peerDependencies":{"hint":"^4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_2.1.0_1543388888626_0.6128367781726207","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-meta-charset-utf-8","version":"2.1.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@2.1.1","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"eabe22b9618a265486c46fe9a1db5483aa61588e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-2.1.1.tgz","fileCount":8,"integrity":"sha512-ekEwTl8rVUkHIlaskMygO/DE5RijWid4qsSRykrOEtDYmCoR9K/iWF1Rehbrf0r08qrI8Z3/7pM4iS/dVUWegA==","signatures":[{"sig":"MEUCIQD/CrhJD9SJSysb5HTKOIoKhoDRimehK0cbzae0QlWCCAIgZtyM+Mv0TyCZuku//q+cGN/odZ/k9nhbJPdqPrrUnGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26410,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLScvCRA9TVsSAnZWagAAQOUP/2Odg3HvMKlN7Ws7x1jd\nrK/0jN9sxbL+4ewVrvfP4WkFRzNsNK6XcDiaGLuCV3Gx2cjrKa9gait5Olq8\nBUxzpe5MGGQk7N2t+4SYJUMEKxgi0/h13GxKxIftunKo3SMO4JuCFcuZem+k\nghcuDD91ntBHJjpYRzLaXwaFpoVBb5kshu035k6paxcBhiHqzv4gj13VsAyX\naubBWDri77tEHrVq3EnnoOBMhs3gzhNYLLSFcQOTSNkkxlE1WH0KSewsEvwZ\nv72o4vd4dNl5UMmAKjKrHv1uWhjqVj6F9SdmlRISPrTcj6FdK/CB0yZmhshS\nppgTSPo79f53qZGLLzyPJ6fEt4M2U4aMr164yl3uFGj7pnYmdbFXe3e6dKTs\nJqYNXVhSUjM5Hoi9gGRcT+PF7URuABDfbRp2nLQq3efs+93zUkTwK9jQfEvO\nEpd2DbwKbYW/BXJnpPZ+UM0AkU25HbQngCa15CozQEaap7WTsj5ZgOh48LCB\nTtINqY5QwQe5l/60caph6HUc1wz4YwcBiJstwu7Icy5d+SC8EeFShWOx8/fG\nNq7c3ThYY5UTZEx1hnIBSkNBjwI+xo/v2viH/fM3euLP4eEJFwuO5bkMvlxO\ngiJpDDeedHjMbMdpFgBHbgre8BSr2H+6s88tj8TOFiTHkaBtWG7nioTWVspn\nqQin\r\n=Wix9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"11.3.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.2","eslint":"^5.11.1","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","@types/cheerio":"^0.22.9","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_2.1.1_1546463022748_0.19426193882816856","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-meta-charset-utf-8","version":"3.0.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.0.0","maintainers":[{"name":"anonymous","email":"alrraa@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b440798735f88afd4629657b8fdae28850138238","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.0.0.tgz","fileCount":8,"integrity":"sha512-wEqxw1um8YAaaj75R+SgLDVBKxptJSwteYX5F9L/YzWQeDvC9ayFngXlVmtFq+NTMW8gNR5T5J8XZauNnHvuSQ==","signatures":[{"sig":"MEQCIC10liyViqEgX7tIvZ7RORMle5imBJg9oqCMmBNvSrqYAiBS1tmi+s+sP/PNrfY86KLCgD/UsbdZNhtNv+u4IM63UA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPloHCRA9TVsSAnZWagAAvcsP/29NjWnmSAFE40xuWsYJ\neiOpj5IMjIl6T1ndgmXWSm8s5b/4ecjwUQ6mfBZkJgQqGsfmsAuCchdFQjFf\nte8olQpKq5sl6kHCx7OR2SxqVEyno8CpYu215SoAxv9RL/j30dOiO/6c4Zam\nd24pL41jYgPZyQre8NYSxneEq+v/Vp6ql2wc9Jm8WkqSagjt7S5bXec/1utp\nO3Pq9sko/lPS5QRTXH3B4R186Qs/njDBMWuVjuWU79kGJxBoDUuV+LhqTwrA\nmmSX614rKAhz8+Wf/3AxrrfeLGFpFDLKMxC1XxjYhxNwjJzv0Z8beWFXukDT\nsjdDFHsQ5q1j5Vp+evGxdDibkj0K9a3Ov0K6GFtkpaqbj8ZvCDoCM8aNqIKY\ni4egrdtkxNbz0+ULvHrFdMZQraJ64DVabt9N9hEEl4N3DFeWO7M9knRfgF9t\nznkqiHxt5OEvh0GQ6J8C1do/ERMCHNhf163/kgpl+7a8svFFzs4Iwt4CxsT7\nRVRwx4hRN25vnd87o7rtjYjP95/+esy7XbNqFn7soBurnp10nNdTdqZQyLEw\nIEBUE32EYFeIi5a84qqToZ/7lArxjdNXnxHF9m0D6B8jl6uC8y5orW6O63FG\n+OFT/Zm508MY7D7AQr2002xTFJWW4RUyF82hmMbixkFGfrLih0uNmSFtKWb2\nh7pZ\r\n=84co\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"11.2.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.3.0","eslint":"^5.12.0","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","@types/cheerio":"^0.22.9","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.0.0_1547590150800_0.25808470876782263","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-meta-charset-utf-8","version":"3.0.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b5b851253f55b745d22f28b0db2b04bc24903b29","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.0.1.tgz","fileCount":10,"integrity":"sha512-w8bJrxKTyAnZr6n7ncT2dFpGMYUfCvJgtq5anMvDvUYNCLswTzZFKcchhwjg+rDwEhgRacbkGfxMXXMFIbGcjQ==","signatures":[{"sig":"MEUCIQDHHTFAAA+kbKl8liCnHtP5K0P00FeFRfPTagpyPZWD2QIgO5JEPhCjaPwa8ekFJtoit39XY4y/YalG0UvD9szFnvU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccC/cCRA9TVsSAnZWagAAAbYP/jC4fPJmiym7VmvBdkcK\n05HOL7xYlPOeFHAruwfIpDYl3co6oz2UwW9Y55gfgVJ542E9xutLzdCyRJxI\n3/nj1hpeRrYRtw3eAVzE/iaFuHiSHDWxY+l05F6y19VSToFzC7Uk69/N/F4E\n6dKAA496eJPsOOmFnxQV0RGoPiGRkTsYUh+QQOZ6EI+t4bvlrIAF+IFCEZhj\nTjAe6f185B0De/jEe9lUuyHpHKtyCwmzAsoFaLFVOZMllRFHVWym+iLFKCu5\nWgY6hEhSMGdpi3i5H3xLliDRhfaEVIR5GPSYsT0VmS3zUMtXCQS7O99EZOrv\no2gQAnOxAof+zfErDWNwG/P2LGfJg1sBT0n6I9EJJdFrwPMuEY+uTA+uPSqM\nAw4KwPj0zW2Ej4royVPCI77ZqFhQlQpPfk2vBoZJtVGfuEKg7a/GwIzPDfpp\nH+Xw22wOLZ0gJoA2haYv+qXTFLsY5nlTcwCkN9eHuaj6uC8DGIaXfvV469Xy\neIRIG5T/SK3gSrvlnVDhV0ElgDoIaAuQta7R7cJ5K/4UPtz3PujmGOeCbM1b\n6B0G0J8UdkUCAndVY1t49ahwx5tXIdDLtpcD6mETFQdb40X9IHXcKz8WnBRU\n9k8dz8BbAT9buWVTJe9tqA1Ba9Ck4ULNpsq6znR/sU4QFNNZORrcc5YW0PPy\nx/Hu\r\n=uE9n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"11.9.0","dependencies":{"cheerio":"^1.0.0-rc.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.2.1","cpx":"^1.5.0","nyc":"^13.3.0","hint":"^4.4.1","eslint":"^5.14.1","rimraf":"^2.6.3","typescript":"^3.3.3333","npm-run-all":"^4.1.5","@types/cheerio":"^0.22.9","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.16.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^3.0.0","@typescript-eslint/parser":"1.4.0","@typescript-eslint/eslint-plugin":"^1.4.0"},"peerDependencies":{"hint":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.0.1_1550856155777_0.520605428126711","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@hint/hint-meta-charset-utf-8","version":"3.1.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"36e7c5ff2080d89ac3fbf4197f879977a9804b3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.1.0.tgz","fileCount":10,"integrity":"sha512-vTGIzEs2HhGIkZGhFn8BeBvGWUACO3CUMmwXo258BM8HK3b/+UqYbENrT+j0VmLubmETMAA0Va2alT9fr0yQDg==","signatures":[{"sig":"MEQCIBhOGnun04LRUQ3MUiBzhNEgM2ypccwng9Wx5vPUCNYsAiAm0yelYj7ljo643Axz42K7FXaAgUiGlpvTzdqhiGibBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2386CRA9TVsSAnZWagAAnGMP/jqv2ntRQd+945N4Aa7J\n8aSDdJhnyY+oKD7k1WZtp9slsQIR/pDIlRCRcnh9zEY5BobpwfrWaPdUGlvT\nvAV6/oFGBji5pt7lKwC5njvqmGnbmSwkwhbdY6U/C4d+Z3bLJXxuiALUmcMv\nVEK1Wdy2ceQaVf5q7CYgelgkxSA3vtF1OCRyyzJCPZ8RG6BK9uYqHcsEnGhh\n43BJD/l5/23wYJtGD5JNCsd0uNtBJ+C3F6Upw9Z9pQTMv/J1sEHXAswGnGyk\nyNNEhM5iFDAVVrpLrPcXGVvAl+dEyH6YzV89DfDoGpRHW9OhLhchqsqS3r27\nyM5khHK8UqPbsO+tzaAa7jP34LD86HAJhGH7eQXlBx6QdtDLMPOGz3KzT/ad\nbJN8ke8G3YVFocjksCKEJWAHlzIpxHYqW0GXCvVraEhkPfKgePTAeGv5ZN1N\nwpjdelGKELpz7aAY5Af8fEn1Qje0emiajKNjrdVIZ4FEd3ZzemNXg/boC9Xd\n436g3b3ej9kOPCFpkzMOkVXeAv6JXzZ2Y8oZOK9W8vR69Oyib/BGkNXEF7th\n7QAzSaqKp4XHHJPRmL+A9EgLGsvliM4vjd9EkW1HGd3dMWuNTy3wWOKBA5kO\n8AqkZwpg6JhaFtL/zjy8BvuB12RWdH1ZFedQTwW2fUaxT06XQdfZ/HyAlj2y\n2zCX\r\n=hGea\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.0","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^4.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.7.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.1.0_1557888826100_0.126548059968407","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@hint/hint-meta-charset-utf-8","version":"3.1.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.1.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"15a810df42ea731d48bac4e48f0b3cc6b31520e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.1.1.tgz","fileCount":10,"integrity":"sha512-n8+xFmCTITdRVOAlSfw6G1qlbk36rmotYDLQtXf9uvFIOZoZ7CPtFcWi86ZOy3ZFbN058zQ4lAgKxIZoTPm5TQ==","signatures":[{"sig":"MEQCIEh//hxz6TIYYN+QD0YMPwy9yGu5wdFrRN9pJ/QqSfREAiAdIG4xV8zlaxch5dQ0ARWmkSYZln0c3oHvUcHMAPg5vA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25RdCRA9TVsSAnZWagAAfL8P/RjPFHCXPudcxFoWZJLo\n2dfj+qzZjrxl36pbI797IDWaLGcFOjgHiVa6/bnE3blaMSqYRup+pCFDheuA\njtlD3Pa4Yx0EHCSsuzKsA2dZTUsQs7GXlc1ukj/hXcbOFdax4MrGzwxOblhe\nK3HNde4StF5QjZOWdHohKZ4RtsfEkaXoMOzyhbPa0L52UOXSwm/L+kL6anum\nQxePe9IEZQZgjmia2KxMBVUVhEzUDUljxhqE4RTJeC0DxZqMkw19EY8WPzzm\nXJ/HlN9S8NN2frsPtDkxytOfJplqtkXmGV3Vt2DqWgghOXfFTqZgh57yMRWT\n5kRV1h4ho0ECdpWpKdqQbYdgC8sWx7MYzNLYcVz0oeMRzLd93bKjrnvLMJig\n9/7IcqmhyCHrb2trJmeES7I3ePDUWndkoltGhrJDHDSeyYzVe+xQf46e0gZr\nFx60P42ZcV1wpfEq6mwhVqd39ru8wgu+NQ+ilEgus5U7Qcl8E+4lnbC10DMq\nb51A48WjUwfsdctkUv6++lFHlub2zZh8vTsYqEZm8W/pLIpucRXiSIKEB4KP\nsdOL9M6Y0GD5V+1ab+QP5tr++p4UcAz5t6zvD2PWNTFOlYtXvhVma/Q4N+1r\nHI5XctxQuJQsi4Vu4FQCfOxl3FbFefG/Sy927P1P7PfMXWjnBVrFjjBHufEP\nYhzI\r\n=D02M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.0","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^4.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.7.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.1.1_1557894236379_0.520368127237889","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@hint/hint-meta-charset-utf-8","version":"3.1.2","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b07df9b0d4ee167789059bb2bfd001452142a528","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.1.2.tgz","fileCount":10,"integrity":"sha512-bZKD2FOC7P2BiXZc8CN/8NJSg0RwKVWy1wZ6mH42Rb5O0wQVSSBvvmF6zI+bz1Nyucq8KiGebJPycWNXscQfGA==","signatures":[{"sig":"MEUCIQDissY6X8OnxYNoAHPhte3rVwlO7itrtuPZhgwgcXC6mgIgD21GUV5vUaTAZgW3fyETHZiqQQfvK7kh7WhZUjFne8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sERCRA9TVsSAnZWagAA+ScP/1V94Z0wJ52XISfu/5GU\naneEwfWSFxMVepb8Sley+8voRQEWKOl0oIeHVwhOb+6VgxhZx3L1HkWtWVK2\n/x6KCYXZRmvg1YeKa3iLoTYrMdBt4zDBfoSueai6M1XBgJUDNhBsiKyLqU1k\nwMCWmrQu36pE3IaErOyS4y+TrPvqHYMX3XxIGBjA1pen1tVP+az9w/k2/6AK\n4B4qBm4W0HKI5yK9YscLMDnul6wMnfngecJA78Up5da1CKzcA50fAe42LVbY\nLbiRIxu0hAMROD2rlpHG9MkzgwqW2ihD//Vb19cFqcIuyKalJZP6JOnaEwIU\nnESH6EO6BVnvN6cYJA3MInFnHm4uxYU0npsx76viy3N392cPkxzNyg8VynoZ\niAi65xX+2nKrba1vZncnl9DYDl9KsCB7R9kdEntRhPvHswMFDpAk5iyfPkd/\n7MI6Lq1rFG/fh0ST/MNfABcRBkG6FotIL5SenxuZgmvH+SmRD533qgoDeLK7\nBYdaH3poKgciz14Q27MMqunDRP0LkfGICudpfRSdAGnQj2NNQgbg3pNWUDJP\npaA8AjZzAJB/XnUkJaVOB/gQF4ek8N5LdJEhjC966Op2udwUFYM7ueznwvNB\n9R+W5J+HPjX2QhuJIY8eFJFUmA4L50lcmeB1nCwNVGq6GTHVSP1LYxeXuNcw\n87IJ\r\n=PhNL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.15.1","dependencies":{"@hint/utils":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.1","eslint-plugin-import":"^2.17.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.0","@typescript-eslint/parser":"^1.7.0","@typescript-eslint/eslint-plugin":"^1.9.0"},"peerDependencies":{"hint":"^5.0.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.1.2_1558626576982_0.9904891372395295","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5f6c8edca6162b7e852c82fe77dde8d7636d1516","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.0.tgz","fileCount":14,"integrity":"sha512-PlPUQIoZ99Jxvxqb2al5pb703VKYfmLVlC2qZygPYG0Bl9WqW245jyMHALcRKz5U2eTJD3A2Ez3X6zVp6vvVxw==","signatures":[{"sig":"MEUCIGSo+gTdbpDHuFv8NGQKbZ0XTJ9HxJBkY8i7IVT75NwrAiEA7dNC+Fhr1mkPrdJy9h6q07R4a+3H8j1kTkYUo5iACAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzaECRA9TVsSAnZWagAAN90P/jAM0wDt0GxB9lWq5zq2\ndOCXZHcbQ+Yl+Dugpj3/8p/Vn0Tdo9tjES++wrkbZ2b1VP/GipvyveE6PtP/\nuwDMH24An+6wYAkLl5NJV0SsWlzdFMqf0IY2e41qge6JIOIZSTGuQQYTGG+m\nZsh4DHPMrjchE9xWmykHx1Cjj+N6nlEOxdo2nClvfwq1wGglpHO5iaoAozJf\nAMn0dTq8FNTcWr5BS9XQT2dyCagmP3lBhlR8m11M8sBW3M35h+S2sZA4geay\nU4d5Xbb0hvgc7DTuA9aKXDR+csvi8NA/PcuWjPnwRBgKXg44nbvMrX5RbKB9\nRiOZaYdAHptHoqE4a15abkHfvq5ExP12H6grTbbrF4ORneYKBqAhwtXTMaOc\n1NbcszE4icQoEGqowevNUAdmNy6VBNdJqeJqovbhqN4cu6VvthqHgFJFjrH6\n0lrIgA3whEKGBAZ/gwl10DRTb2aVk82XvZQQN0xMk9ahHDxRsjgoIf/TqhR1\n5B14Cyso43tuMCpN3fMspndNpdUT3PKdeRnIKflKuWyPCNauB27109DDOszj\nByJ5KpvP3k7E30VqP0Os/cJDQqyMHwsY/w+XreuJJ9lA8RkFhEyJv5WxkZLp\nHMHdISyFwiU+AUfnatBLXnLUQ0gvfyMp1OkaiHsog5DGNWSsvK3QoZlidWP6\ndKKI\r\n=mjEw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.2","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.0_1563899524364_0.06479770564758836","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d6c6ab76977c91c91dbed01384a1267c9d2d3688","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.1.tgz","fileCount":14,"integrity":"sha512-+9LPWSSxDNYRD8vpKjwdNLxABF2zV3eX9AQuq0MbId1i6+QOQDJE7OJCZJedkxEqtZW2gjqXJV2ib1NJuc/31g==","signatures":[{"sig":"MEQCIDyu7c9wH1gMD9jcdQYWHTB7j406gW6Q8aN5NmWadTl4AiBsq6O7ZPolhVp9SO0SKps8hzbWG5WqQFuorTWoTS5NxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMtcCRA9TVsSAnZWagAAslAQAJAVm787Ds9wEg2kus2k\nS0Jxm5TVhaUnis15TtEwAqJDLWCcEtTrVI5dqo8pux18yo906fs0jhJaPO6q\nkmiSKiVHo+XgbFnFxms9jkRGfNNQCVxp3pfEKWWV7+3Mr29asLeIlPtw4AQT\nYTZPZrFxWT50l94bjAeAwUWFCn9T4hHlpVX6hniRdpby7L3LNtw4OXsZGa0c\nxj/lB1LyEaeAqw+2MVV0S8ls1qrg3fnlIzQWk7YenrMBE8OqjzJnEtUa8Bb6\nmd8LduPYQaYhxLap1OrxmfYMunMAD7jyaKqjLHQ0VaZG0V5QvPlC2IbbSb8S\nVnOTUDNv+IfdbFJSnHzvfwxdAWb0OVAqj+vvYrYUxqlOPud1DrIcV9f8DkI3\np/xJUTnzTqTqRLiNIx3yHvtNEZrukAO9jOlrzW9CNjughrq3KU87+yiaAxFG\nnmfVv1m1j3+WK8bP0glvGObPfPZFeHmobx5sIdpNhqJvxQY/u1z86gR1YwBR\n/yl2+/UO665G6lX1+tR8LIlNSf1BsZWN93/xJG3xyrwkBPgW5+tcLilztSw7\n8wFMp4o61cgc8zQJZZtVWQRZGTJsheQ7ok2hLLtgmhGeDut3FI+DkVSB1g5Z\nPAoiZ3MtXVIZx6nOmivkY/MTBZax0HkzfQ5MTgeJJzYY6iyWMKFo8tMJngp7\ntHfv\r\n=J8qp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.2","eslint-plugin-import":"^2.17.3","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.12.0"},"peerDependencies":{"hint":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.1_1564003163973_0.542674324286752","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.2","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6ddf82bd3ef01ea24fa6b6acf8d29d6239d2954e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.2.tgz","fileCount":14,"integrity":"sha512-hG6aPm6to86b9114j0kOP6rFtHr9lK/rro0mEaolTYmLhIib3gv/UsO5texSVB/prj0eJectG5j2+AsRSyGKUQ==","signatures":[{"sig":"MEUCIBDOJfo5fXMWvrKEzF2rmL1w+PjSmpwTpSycmZPZldTTAiEAxMMoObqc28+8gv4eyRuWHxslyICpQtB4gHTIBIO7RyU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJrNCRA9TVsSAnZWagAAJGMP/1NdYR2uFMx5zJpptAQR\nDd9XsME4RP2JKETWEsEV0woUb37vV7agjEPPf79l9I1dFjUdtOBi5xWXj19r\nIxWQaJ6YvDbjKmQ2NWT91CYziwKeDSPYq0ys/XHPiuNgKDR6FhGqoyPvswCh\nBxwFAclyoizw+zwhQ609TSExQBwxJx6vY4NjfmcfJpccMBOswZjfZmrEGte4\nh0VIR89qcW0IzlNq2PXCEJkMgTynqY9ILEJQb+9PJnQSI/sSNTCj8vA4sdBJ\nM4RD4T9/O0NEVjIapiG9jn9AV5O9eVPvVnV0ZWM5Ot+n6bO1/JKDJJnS4dlo\nOvYS0Nn08K3vVvPcgYYU0X4PaBRhMPgoq0ywpMsqjSPh1b3CnURkO/7NTtXz\nq188M3NUYlrWDjJQMjwHRvAzvMZVKP3571oANBd1w9ey2wJVM5ol21N2u7sP\nnoM+jNR+ahJrd3mEj1ZiqGAUs3Xh8utcsB1Bul8+gzg7sIYMXkuiznOoMpMv\netGAmRTIkvFHNfXV6kSx7fs2cJTB23hHLCTe2OOkiI+OxXbGh1Y8inAJ75lS\ng41tmSPBBRVQPiCcPa3bpQpqLntemt4k0FJlzmCpXjVwdaiLIys97yTKRCgU\nJ1bHy8fagNDwis+g7+ZbxVvmBkDcK08IrHcQTWR2qMPTM87q8B2RpGfjRTSs\nBOb0\r\n=STk/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.3","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.3","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.2_1564515020740_0.8096067558913012","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.3","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b6f0ed2cce6f38d01b4438f12920bb24525657b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.3.tgz","fileCount":14,"integrity":"sha512-33AYPAwLKxnVwYS4vEVeI36OgLjGs3wqCe61PId1W3HK5KtDsicbScLZp9hOKPPTh8fuz5zuvDsZXc3z0GuBlQ==","signatures":[{"sig":"MEYCIQDE2XXBaQsfBD4nJnUPr9HGCT2zkLV5TA1HWOILVRFEjQIhAMef/FXgb9SIbYlKBqa7vg/48dR9v7ZkI3VKYu5CBrV9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeYKCRA9TVsSAnZWagAAb9UP+gPNhEW2XTBfSCoQESa7\n4LGrsg8G+fQCAlC2+hCvRcO2eIvY9N+Jb6H3CogvF+k0du3KcL38/FVqIuEq\nBmEgVaJhwBPflxu8qN0PbvGYFEEDVY2gcQ1g6WW+U0iojr0ud+tOQMLkiKQU\n3eds0NZDXbZ2m38cnYmKx0ryomILAWrSbToGq5FcYGGS2XG3CpMURJDs6TTM\nJQdUHUXmZr7BVPoaCCfwMMOZT2Lp6G7yGgxZt1iLUzx2MTaj9GfcStznwmDv\nNoZkXQq52OyfxfIkDB9ZcVgNV2kv3W5WZv7zPURnhNombuV4mnlKbt4NgKbW\n43FvAlDbpa0MV0GICVc6w5btH3zt+ObyHCOYYlemC9gkJwEs20W0CbZHAdIv\n9FRXTnUKcyctTSvjqMgun5lMBR4TbYeJV7A50TzCbhbhZNcvoekNdTtouJFJ\n+s+CA+iLzM/tJmHJTUH72L+FbL/KSZ9E06O8wp3ko/Lf4Rfh6sCZrRFunfdD\nUw40vKwnjrKmFRIjaP6c3JAw1GQpZ+23a+eUHAxNVfH5CYEFFqbKzb94kdmd\nUT/Wx1zFbFaO02Ouq66kkY+sFaWhaFwYMXhkriZnZsgQBegdTL0l6q5J50B5\n/GGbokdqOcc3HHxaScfIvMiNBs4kR0/iVocHGX146txH3MUtb8Pe239rKipI\nf3LZ\r\n=lRxI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.4","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.3_1565124105703_0.5499768788164761","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.4","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5fd379198a8999b4d425eb0cdf213a81248138da","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.4.tgz","fileCount":14,"integrity":"sha512-jr5LCBnDUWJUF/79P/z1Sswrv6St3573oprIxwBROXNMAo7bLrhhYcAFm8YqLrHxhpD9YVxIIWXpW4UzkCvCNg==","signatures":[{"sig":"MEQCIE5sFHrT6BW0mkSC8CAnFBcXbwcsXxhlBqpi9KzidHrLAiB4uhJwsuGwYA2zZMFiOlWOMUAapmWb25t9201QRfAx4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40374,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhdTCRA9TVsSAnZWagAAObUQAITHgVgexrXYXSIs24gS\nx7m51O66/KACuGECuJ5HWfqwssevyRrArCrkoHwyFlm4fTiH/9wU72/VJgER\nc4I619KhHZ6K3ozLMpqRk7vl1j7uK5yd8L8Y+ejGfxya8AG4lYlvu2FKCctr\nl3el9Gk9JpFlD1C1Vg4lj01FWleCJSiAozqJHcygneetbF6sA0u4y9m9Ky9P\ndpME3RRbWNl/Q4gVNReT963dTEfieId/J+oW3fULJ0Hqr4BE082pod53GSst\nNSdpXsod8ThlthyUfwuuEy0Sy9gPj/I8SRJs6C9GhvBsAtE234kedN3rO1Gx\nNcvewgU7dwHss3K9nVpPU3dHOPoWyG/zNrhb+kcMprq6iQX/WnXSop4ylth8\nERmkYjUA8W9h0z8Kh+mkrBE877+q5zKfKr2MQdorgwiHk2uLeKSSX3ugM03c\nufO/YJ2OfRrshzufmKDiUwq71a5diNmLKroTJvd5wrLMz/l8EpnD3yOaERBL\nsfAkNLO38pV0iiFO0arUxWPS/2QFd9XWQYZzG1raHU8C02FYo67SZz90FhMu\nvxs6VPiTSgwdCb/W0zKU/hRKiurs3OcD805EiH382cpFImIbkJPBFQDyZq9e\nt467Z77aiIsQf7DuQ3P8wumlNnLsVne7U6wfL7Rj0CJrjFOM4hmqihMAq6rQ\n5WX+\r\n=Iy3n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.1","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.4","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.4","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.4_1565923154402_0.3311925154515354","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.5","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"137222badad6c9447b4f03347c7afcd924249dd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.5.tgz","fileCount":14,"integrity":"sha512-PBamiL8FW++5N06qeIAIly3aRXZ3XFgENYAieF9whbdvyqYR8J6NZxMvVf2iTJbVRStMG22aX6Eody88KZhxRQ==","signatures":[{"sig":"MEUCID2uWpL7iw9imqnbJHN3OC6/CsH6VW6Op6OqZSzSb9SjAiEAzfZDcBUR9wA8AdJ+ojLN8MyQZ5KRO5/uIOm0jjJqwDA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/UaCRA9TVsSAnZWagAAdEoP/2JDO35PQeEQ5Jfw5fNg\nW+utJ5j0OB7ixFDdfkEmABSEnF6bku7N+1NuLyE0/Rls0ApgsCQoTXQP7+0h\njgAjrNHC9a1IwsAS43AQU64wpqGEX7/5oNkbJ1jR8S4qFWc8UzYM3VCyH1a2\neakYY6xNBMypjT3vZjZVam23J4O+IUoTB626wXlTb9FWi+j38w5/cad6pZrN\nuUl16/t+aVfBbtZzP0L2VOe1yDuqZwnox0CfggterAHNIcCVZXytVx/kCchj\nIsPcCqLbejPUtH+GfiCqPw0twiEs14vyLBt4YHbdOa0dfkm19qbqicJKiHxf\nAdNV5TIwlyvBEIjTPAgEGlj4Wfmh3SB4ShrzdeB5+oym6cBFc4yvX4hXurbW\nCFf8WFU/w4KcH3EL2o4iFTeKed4LRRj7rnxtj9MMJ+Xt/K9yR+Vg9Hvt6H6N\nbI9uIEh+Iv+fZJ0g7lkxno1bW6b5867/JU2j1SABU3nPUpJsU/D8QGT9U3BC\nm8l2r3tJLxRD1gUH3renZa/IfbXYj1pVU8FJITPrVq7oXOxze/zfE9jG/uE3\njV9OFdIS7qKNb5UdDXcR1T+Dowrk9azbTuBcN8TlgBibkq2LlLJNRZ6cjHT0\nXexIDkbPGNTGD3cswqBBl0CDFDFL8jb81eL0SJojRwEVT12XnXge+Bk1umWh\neLVj\r\n=Njz0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.6","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.6","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.5_1567094041838_0.633789361830662","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.6","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"48b8898f49e1a37678a0a2ade7a1bfdc21523a92","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.6.tgz","fileCount":14,"integrity":"sha512-G0L3F8q6HEJg8fbgn3mWxE2MUzvkhBXAaNwAuJTX+zKVIZi6nQvv2Jb4CAKdw4WQ4BZF2pMUDgmsHvAi9DpAfQ==","signatures":[{"sig":"MEUCIQD0rNDjJQJ9sK1NDNhU22R7bvfkWxTLgWeaoCytX1SBrAIgf+cZBMRkyAGBBjxb3LYTSMnTmxMgKIWlPNJ0qyoOX/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXW3CRA9TVsSAnZWagAAS+IP/RLY25OjLkmaNz0EXjNZ\nlOkRcYQm6dlHPKLs/uLFiLFKoPkpAokNW2gALND4HLGBHUKEqUec4Y358cAi\nq9R1TxI4rpARq0f8zhfT8ZMvO3DZl8uU08GfKBb3X5K2lhywpn61LfLy1+Uj\npv7yayS6otDVoR9S920sKBJLR6nTxcNx43/bnssZOcZY/GuXfxowPhqD3Zu6\nKPhlKFUmmoBe0m9fwkkV++kFgluoO4KBgQ8PXnI/vEikFV33rCWeqDYMvJBX\nVRgv4NZJxwBYtg0FmXRfMOyimbKFFLVVb2XVP5yDZSiblKUfJ3SEH2/P1BuL\nYc7MfXRK5oW4UFH3BcKvuJO0kVuh48Hg4fMGAPEOreOoz06jbAvPRDQlGyM8\nROZ01/rwlA9stF44t1nn0Dk36GVTAUrfNESFZYnPQT+ulMQbxtVF4xq9jg9n\ntnQZz0dTphrwi67UQofXh1oRxMl3RpeohKnbqFbrqJte2lxhSPQQYTPZKidx\nZTwYGZvCCIysYrL/KIlBhhDFEVCJpC9oS+eAUlWCOOTfL/Klk0a8T+VggHiV\newGK0BpED3iR3KajblVVBa96xohEolm5Po/Zw/BBqwUBC2zs7eNbhIx7pIlQ\nO/FhtQVZ6kLPLGfow2kFUtZjZ5429UUxo6Sw1eIzcU2IsjS42I6u9loLHOrT\nJRUH\r\n=+w1s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.3","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@hint/parser-html":"^3.0.7","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.7","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.3"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.6_1568241078474_0.25508569012109694","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.7","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.7","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"246eced2482f3a62a37faf355de528adbd639dc9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.7.tgz","fileCount":14,"integrity":"sha512-I9j/I1Nu6yti5EvU5e8L3eR/+oUkn58WDFq5f1frQxQaZF+M9g8yT1hgeEBmzPGq9bsxqUf2rmtGmXFz3LuApQ==","signatures":[{"sig":"MEYCIQCV7LBby8YhfiSLZS/MV/btjvEMWHdyhf1ff/58nw11BAIhANVui0GHbYqg0G+WfxckM3nly1Jg6PbM9o3hKMgvv5k0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42228,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8m4CRA9TVsSAnZWagAAcCgP/2pGAUllvA0dckJdt9JR\n0V27H+7IcC1oYhvGLbfwHk4Gbn4ion+WFlfjXr2txxhr6JMJOgcS2oXZm+du\na0y9LQgme2m/tpPeMwPGSU9GvCKuhBUgnjZHFGR6eTmF7fDz/gL4KvZ2vwmb\nvCYYs6/3W0R/9JEWfxxkVaPWnoc2PA84deEpm3Vcr30m5CBu1F2plEQ7pp/u\nSf401ZjSb7HZex47ZHLGfWrHCMa7SPU1vslqFI9uj7GDh1D+VoEubbtv+1C2\naSPVGE3D+zt+8WRDW5a9V6tR/EQ4v4WZi+CxIV7FVjEOZkcZEelxlGilpDmA\nio+2+CC4fOsd7tlF9l7grVK7MWP3stsMgEhAy4Ve1+cXOC7ALFnqjBHzOYxw\nTtphTE0J/+B5/KVeCkZRfXX2scNaaAemf5gOi3wIMkrVO6dgwcgWrkEbVm96\nBNhLTkG8DM0V2DFmgh6OaaljnSdWHZDTI4V0k2vrf+9yAbBpnxm5b74SEkmP\nCIDZod6ZLH5xLLkB+E9ThSD4vEeVj3kapr7XUePBhRA/+RhB3Re398ahn1aI\nYAIiPb50V2QhTak1EblfOsEv8+MyYG3OUeBjGgcEbho55sJrs9vXvOyGlL1Q\n5eAm2COxGAPVg0ujSrm8BrLsTYAiaeCs29W5hbUfKFwa74luUKKR/TTdfrN+\njy42\r\n=6PH6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.4","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.8","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.8","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.2.4"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.7_1568917943620_0.04318326527636063","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.8","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.8","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ffdada4e2efa7c664c1b1bcc731cb56e9fcad887","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.8.tgz","fileCount":14,"integrity":"sha512-yuiBkSIDYLtw/gv8Xf03YC9cmt7VHAzD2X3ujbaOc4yxP+n2LIO4X2ecZqHsWX38wmG+NLLAv1f19O6HqOWy0Q==","signatures":[{"sig":"MEQCID261+Y16Tr9/o4BAlFTcDMymIUP8D9HBdjz3g96pYN1AiBgbop+LDlIipDOvQ5r9xnFV54OIRscMMr0Rh26mMHmtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim7vCRA9TVsSAnZWagAA8EMP/0/jvp/WwrPwG2AZg6VJ\nFXIVdYzOSq4/VrUT8Ey/RcTyADbEfLH6zjWQehj7JN6e7ulPWuxFnXRkaD8z\nPX3fl+wd3s/7sMIbKAJZocU0ewTFwQ7aCsDw/YhSwKk2N7kCOUu4MYauOInr\nutOOx6KBZiJnbAB05qWw0if4W2WFRVCpf9KoYFzykqehtv4K31vtRu/9PCz2\npyXm5BvM6C8prleUf35lbpkAwHPLbR+LgJBOziNgdGyTAxNgzlr4stqtNbNg\nrL+2r3Csk0lTiSxXMECargdt/7f74GbHr6j+HjPn98nzsuI44T+9lh8jzUoU\nScyP263fktqEe23Kc/D4p+DGzGE4z0a7Dcw/p1QXk3Rxfy6xjggmAegdDylf\nsAgA7PSDfsSeU1BeCqYN0xCNU/HacGOsjUvNRbN7KmrhSjiChQ8FsPUznWke\n/mgo60mMp+GLohqFje/4YFtcNcU91ACuccJqHEAGol7ly1TziHrqyVE4YBXU\nJHk+cOOtaRZStYJB5ycdSW2LenmF9gS25aHst9+XdIXrqMFBrLTpTPuBnjp/\n7iWHgC+k+eBNLvpECQmggWuCIt7zNyhtO0TnUA906KUrS6womjR6g/GN9US+\ni/OAfkLZ1YMxCYm96qxxYl2jTTJ3l2uzdEy0V6o3+KS2BumkfGkd2mCMGVCt\nfM4Z\r\n=kx/+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.9","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.9","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.8_1569353454472_0.5306697670664582","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.9","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.9","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3859aa50d7e0b7bd104533eef9ddd5d9d34ab4fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.9.tgz","fileCount":14,"integrity":"sha512-3PQe2zIJ0it+sOo2odEtaY4KH8WUjNlN11AQr8SlKV22YI4VlBfYqYyAleGo2Hx4lG8+KxnHFN2zYI6AB1gFmA==","signatures":[{"sig":"MEUCIBAlvdqYTe6Wdo3xFkZlqdXsrbr5S21T/emxb0NEp/onAiEA6v3WACn6V7RMEhRIw65QLN/OJwmopIFB4V6F3To5bvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42656,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjStjCRA9TVsSAnZWagAAy+4P/RJeH4njowoCZzcmGCuk\n5yY0vYKdBu5XGQwlY6ScVDAbVLm9HBKDu4dpunCXb90OO7NsOziJubkqa9oa\nH8mAauOym/Hxh51tcvoyNWPLJ/OYpLrxPdqfSuETc2nU6VETPQyWj89kWEbc\nybfzh2WRT0Q8LT2Gl5WhOrf5NA+CYYfXY8mcspskldwQNKfUGMZyV4LGChpS\nAd0Gc5ldgRRXWRc3DQqwYhxNkapVczN50uT4Aq0OA7dWXAhL2T8eQGoOqYOF\nBds9pneFxAgP3QkhwQaIDPHUrGjBVqUEZoJF1ENObd6MG05l1jb+LKdxwAnR\nT072iNWUa4q/aXynAXsZAGIlZqUZhjNXlZiePzD27QeTmVVZ+Vqs4BiEnIGC\nDCuqb0nHcjBy49yLzO020Qp1AAlmZKj4Kl5F0EQexROW6E1zBeBbo4BtBBAj\nuEb3bzVICzccuk0W2rAZso+C113nk84Ve/eljLyqOmJPhKpAXMNMXK5OhxuL\nG4MiuRy+xThmBGv1tOXe3heNQ9kWrOJinLofFv0j2qPqGOajcRxBeyQBmJdE\n7hlQC6H8bcHyE41fRAv6nOaZ/Nfx+QIkZg9gmhDN3zf4x58xMR0aQJtn5MX9\ntmID6tKf+7EQpfsNEXhzvlklhhNxwsv+NjJ5QetZfKn6vSvVMZuE2BRPq+DJ\nbKJ8\r\n=eyOZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.9","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.10","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.9_1569532770628_0.4019453434449598","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.10","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.10","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1c8126afd8cb8d213caccf27794c46cb45873430","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.10.tgz","fileCount":14,"integrity":"sha512-+qLwgRZWyo96z0H8V1JFOcCVx2Oc+eN8eySMLhspBgFtkzbG6tuLnLIeajgoQ/PSZyXcBEiP9qWS/EZHgoxJgA==","signatures":[{"sig":"MEYCIQCPe8nZFzyMju6qKHJLPFD/T/Rhv6ppsdQKAdzBV6WMGgIhAMqgOqH9WQA7gDHtwJ/i0DtlvfbQBYMiPPQt7nxsOnH8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3MxCRA9TVsSAnZWagAANjQQAJUmDWDiOCWWrZYb8fvo\nslOSsSwJmE1Y3XceFbcP1/RPvoHdBBxeCoSff2pUyNf6L1vYxKVRXgyOB+zl\nZ/k7IGzdjkgB8kcSMyxZi9SRmfm6DnMSvS44cfj3Gr4NyRDMFqcsKwdhrDhx\n/2vAcbs2Tyteh87JFTbAxNWow2hS1ZSkqmCZoR6T3IPfarzohKVwbj8Lnp7q\n5DB/2q8q5lBQy9UdSpikb7l42tEDfBvNM0XnsaX0jrEcQlAGgJTW89Ep5dEo\n7xLE7KgGPcDhXFUnGd/WzeBZ9OMRskhDtVzdJXBkWs/HmQQHymxpIvka2DDv\nXR4eeF8hqXI8vLG9LkWdGNvJeYDSwWGI5ATgdSqtBS0Cybcwj3gkWrb67bHU\nfpV1JgB4X35aR6xGnRa37TtbpqbFc0eQbHvT/OrSmdw5EJXJmYpsxmiXo3FT\nyJbhvAzwStJlURPoEZ2avRS7i3EjM8BKgpYElshRRTvx55+E23HM3WaRar6z\nEhyeolEQZnnwD61HrutlHm8D2JMTpMApNRtKZAnIPsF1oAVbm6K5ePxTK7+3\nYePv58buDfzpPOdr0iWVxJXi+IX0uR8PWESAVslVlAomtSkgFvqYeQdUjxZH\nM//wmCUi3r2aOZM08Gs7TpCf3dmSlP3m3A7+RHD+CfNNgocC4TePzmjdLB0R\n0YUr\r\n=KNwq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.10","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.0.11","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.10_1571255088482_0.9036224541607965","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"@hint/hint-meta-charset-utf-8","version":"3.2.11","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.2.11","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"dbb83f10f6f1d1d5804b6de96762993279fe65c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.11.tgz","fileCount":14,"integrity":"sha512-0nBla6sl3J9H6dTmgcnt3Ayuox0a7Gk22s81osbOqZdpf//ncvK/dk+RkZeCEBqxnUh0SiQ9Pl22jvq4CmkNAQ==","signatures":[{"sig":"MEYCIQC/e3v+98Exgb2Ie+PU9u49noIlrqS85yVZJNIE/AiN9AIhAOiiONWsKrP+P4WYU7QSwl/Tq1htH3UyuRkbI24ASY/V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL1ZCRA9TVsSAnZWagAAtikP/jusxV6TJUELxd0+w3Cg\nmaWWp8zsBVkVCPh2W/qgIlbJBBDUeTiKINRQkqObqyil69n2TRAKYlVauk1Y\nmzBfYKnR1APePnxtRgpxwy73+elTTdKto44fCjeyJTrYmVN+Pc/+1/XqPATG\nUZqGgQefaih0V7EEz9cjAoxAYHblgwvMTSd6MOGtPm8DjLMFdyl6NgkWfYqJ\n+t4Y8c/DqnqTBhnWyxAl8/OBvroOpGhUrXfwqHgzYA5QXeMMih3rn/7lp70/\n23HjDHhj1orDmfLZxA1Fi5WWRMwpB0KpkQCz9hciV4qMA19IAVZLk6AMKNPU\ndTFFLljAnd4tFupMi9b7+sG9rBk6hoE7dNJx1hgwmRZn+bY82HLrFO/mlu58\nnR5OJZHevZSvW2vACFP6bo0WO/yLykGPMm0EokuMCFiZMqWvH4Ls3271v9fM\ng6Cjte0i7+bDxSwFD+bgYqS/JqvJStg0NbR7nryUmCF0BGQRAYUF5Xs3RQVC\nuHYnu4CNBQHmVwzu053IDZnFs8cAT5x/lMhwRQ13QgZ0CmnR7fhO4CLSG3LY\nk6x1Z1q9QLDj/pJw7/8nTkMDkuNOuQCC3XwDkMOmLXuZA1T6sun20DOg5GJD\nl+Imn5vp7n2QqXopyGWcrWD9jpWxI+siLDdnwSXmIlu4zvtSNVWcxFGpddka\n3Bjt\r\n=V9Ez\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.11","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^5.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.2.11_1572388184671_0.9446875972720465","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@hint/hint-meta-charset-utf-8","version":"3.3.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.3.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d833f54c7928789f38cf962f057b1c8d33dc227a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.3.0.tgz","fileCount":14,"integrity":"sha512-1ClgQHHfUaVc+0fM6XUkxVA8ms/qgxhkd81Ciud7W3S14JSSpi6DMpOmGYzi+7FthdhcRz9ggnj6lpmZ5KfHnA==","signatures":[{"sig":"MEYCIQD5wHjhyrJbeRJWlQ+RJc8af05GxS626j8pIeLFX8lLOQIhAICQhj/7aGFdbEPI4SBJTHVufhIPqwCPXeUaQRH3ucg/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bQRCRA9TVsSAnZWagAAtIYP/iCt2OyvWDlw9WYCL/DP\njb293hOfR8olRGSz4hDS0TTjHAZr9T1emBXM4dv+ASD7RpaPkL32dcbvPFcn\nVg2+xpFxLK5/oSoVg6CYhNMQ2L1Ig4gtdJeHLTEORS/lM4uPHCSmwzfSeQQr\nK6M2XIjM2AX1XsSISdeYIpqT5XydlMzvVAJemT+shFoW4anxJBNaooy11szF\n3Tr3X5r987GiMlq5kU3hz3D1SjYx5M4JQxLLQxUxZMub5jNK2hNWXcPfmkQB\nWnXuzEbhPk9c2+ahNoiDx/edU8UNwrzwEBIytoC2FQdTjcrkk7i6gR9tJtg7\nLC6Ds5lecI4kZsftcsmfB6aG7RA21JyxzJpHPlDUIrF2qwKr/+ga90DQjY9t\nYRPN+RPsH3x9Jwslu7qc1ret2tM2EUalF5xsl/gJA620FF9NlFKoAy69O3GR\nKyOIdWj/WmkfPhC4pHMU1w0bAhnAb6p+8HT3BHETISp+dltlrI3qi5dHu8NP\nDqvU3GTNYu+ge5cofPxmvN9vNnPjc74H2El1a/rQrBmC7jx0gGgwVcBvzAPD\n7gFAepQo6Wvd0vzHg7EitU6KjqXYkwqka46usQTKpQbI4CPokmJqzyNcqI9/\n16gTAphJoc6XOaeljzqeC0Vi7bRHKcZA+ye5QqyrpfJ3BOU9kVjyYyqvqj7o\nljan\r\n=nhj0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.12","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.0","@hint/utils-tests-helpers":"^6.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.3.0_1575334928634_0.896004960176833","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"@hint/hint-meta-charset-utf-8","version":"3.3.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.3.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"0edb7517094aa78407ec5d498fcb666c23ad60b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.3.1.tgz","fileCount":14,"integrity":"sha512-COX8Qfl0TZfU8rCmKyv4k7Ft497tbxtPOFdwbFRUEs8EXfydv35Va2jbxsm4hcEEMkrby1Py2b/eyYzCqhNFjA==","signatures":[{"sig":"MEQCIGno1aXJgDx0saAgclK394EBL89UQKxNKZ7bcVO8JecUAiBZaanPWsrvwUEvAUPe061tjhqrWpMxN8FuQBrMxI+/oQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E3KCRA9TVsSAnZWagAAr0AQAJEtudHb8AOMERg4nO2E\nYGS2Chl43um+zpRCa6BHKYF0X6bZGUJOlsrBJvdNj8hw8iKNTj/1/aVUr3qC\nqgbFRQ3CFbpYpBiyixf0Gv9bqCq3BILukkm5xaSdneQe2Yn2TeKdAzZH8HZl\n/qWkS3vHQdew48s0gY3begt7UjoGC3LwOgyiqzwH12EnBYkiJf2HMIRzBuk/\n+jHXMnb4fB0SbtyLKTAK5WLUCyFPKNtQNJkrR2cnfpNvaQnJehEdy2ArWr1b\ndL6xFNtnsA3FlMjfcDEPeDx8JpA0K56XAhuxVU00Dr/cioOUtShFOKT3/T1k\n63xspnzKmXZ9fsBB7QuPM/dLbBoh/DpgEUIBW34nv/eWFf+HDiy5JLvLs4nc\nJ8EYZY/Y7kxy+sXGT9LM4jMLph3KRiT3kawESctRsSh1oOZ38lVTxibqNJxl\nfPJhNpMXF7oNOe2fPOxRGpw58XP7GanEjlM82YC3h9/dWOmGLFQOA1n+9THP\nvwX8yeRwrEOESquOr5jiNQf4Pe6ohxjgTlspVBemF+AMdmUUEyKL+sHk8oED\nP0h/xYPTxkOprC1HAuIBYEG2Rhkz0fkm9pmueidMWgafCA2sCQCzni5HEo72\nt4SSWYMcMNTCIPSF66Pvulv0RiTBQW+pFDb/E9cqkcjrpk/GUxG6rLnli1D3\nEQVf\r\n=sxrh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.9.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-i18n":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.12","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@hint/utils-create-server":"^3.4.1","@hint/utils-tests-helpers":"^6.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.3.1_1575505353861_0.9376698326421962","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"@hint/hint-meta-charset-utf-8","version":"3.3.2","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.3.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"de10a036712df3b4ff2eb0633e67d74569d409ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.3.2.tgz","fileCount":14,"integrity":"sha512-j7EUnev2/x9smOCHS27m+uUpNsj80Auq/yi/93hSdT/CXOOtth+2AKc7L4gH40v72UpUiL3Ofk2DBOU2uNtBkA==","signatures":[{"sig":"MEQCIAl6DLGH3F4W4YAec5TVIPVIQe6+hMmfECnD7dL7tIoZAiB3VBpml63Bc15dyl4E/8p7jjGh+9lB4LNzeSXOHPW/Bg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49656,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpjqCRA9TVsSAnZWagAAN1UP/iB+2FmRBYbXriwxXHO6\nwPnsz4VtTycIGCCT1DTnKcTqTwv3APeQ+hUz4euHMsRGi0Rea3F5/cH/Nmmx\nEBR6p2Ht4AKlRtFIYQlNsAUAJFqqCv+wTrGbLcSl5uyeUgFHq+2ZgW0k0I65\nyg3zNtssETp8+oxAG68qtT7f9WijQWdecc9hAfRgs66BjTRx9c/Cy2hc4CZY\n/smfdtUwA8g3hweCJL2QklgGQj0qhoUKbFcyrooBugScoWgxxYJPx6a9U27R\nug7ys5+cWD80i4/Jpo76NkqQ8oIL9OttnCsqf/UHPdXs2DcpO98RJtpBGR1m\nKKukXS349PQJuAXnwOu4ZEGzrlerG2xm3hjfxLLrpZebD8VA8aDkO5SW/9Mi\neMdEG2s6slOwXlpLv5QVV5Z2cT5+iq3vU9VoJb9DC0GkI9p1R0vGU0MLNr2o\njEZVxGClwuPIkE9SVi3CF4FsfdZIDPfTSvjLbfGId8dj4+ITvoGdRMozqR5I\nIGle9CBXCYZWwTw5E/mmsOwvuCxWTvSCcnAgwNClZywlkmke87PWYWnr7ei0\nbT+bB5/TwO5oHd9uAQEybNMz9dlLqoQa1G4PHofD3RmT/jpcWEh1UF4qGZPx\nuVsM0GkVVgsi77VgN3ozeb6r5gsYKBUvmXkbDa5vFgJjXSHqRSt1DvU+/mx0\nILgp\r\n=LNgG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.13.4","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"12.16.1","dependencies":{"@hint/utils-i18n":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.13","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.2","@hint/utils-tests-helpers":"^6.1.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.3.2_1584568553761_0.2583591617826497","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"@hint/hint-meta-charset-utf-8","version":"3.3.3","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@3.3.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2baf422ba25e0aa3c981a99de90cd24762b7c8de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.3.3.tgz","fileCount":14,"integrity":"sha512-tj+MOqJJZS3KjjRAN2Prh9jFIEDYle4riOT38fTYXc387T/pMqVqNJPkqDxcukV4WuebrVOyYcO64XOd/2457g==","signatures":[{"sig":"MEUCIEn76a2/AjNdc3TBI8G+yMGzGUvLo28St5GITa/9L+hPAiEAixCCHlFIV0G58vFDaQ/rZBPCdTv8Rmeh+rkqbwrhpv0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel14oCRA9TVsSAnZWagAAQ84P/1lMbyzi/R1KidJYTv0m\nisUQ0M5QjvyegrPQqaSY8MwriBrqEzweo+r2UE41BvTY9o8amotmtoz3wQoD\nWPHfYwmp55a5iOe7ArTUQr9T6zkCBqN3LkiE6m81i1/1TVysq/c+6SdE6ems\nOIJM4XCEf72JSpJI9AaB2PCSIshMQ766CMBrqSvIgdzwKVuyOo091mFUujDo\n2cnShR10VAgsm5FebNk7hi9Hd4l2ovgUnNg8dRo+Awv89tFKBoPNgMCenftj\ne8lAuPNL9RWloaClMmtZIGg6c23fRK6q4DNJVFnsVj4efEw26giZ6aZX/z+G\nH9Bsa+o+wUb9gUuAqhoxPfHcnGuMDe4RYL4KLNvSUFDNrCxbEi9PL0TRGcpo\napOBu0VKE7CQxret1hSKn8RxN7HMi+l991rh/D1LrPiqNoRj4jeuLREl0794\ne5ugwXKvjc4zzJXxrRECC49gGt3wh0mF6ClK2fnMwWyVLbKVLXY/UuCd4l7U\n/i+xasniYWAYhXCiF3U3R2su74aSItEC0Dr/L1DZW+DGXmECHGWxAkYzT5U0\nmDFgni9AhQenXPsxNeCbJeGNqoiqYaOClh2KTn0gNHSYRbsXZ3PeOoQ+b9hL\nkN7gNyFBJDGCAUokr7I6HEOBFVdpw1DxdHW8aGXnjr5oXo6EXZdDVcMDb5rT\n0C0Z\r\n=c9EM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"12.16.2","dependencies":{"@hint/utils-i18n":"^1.0.2","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.14","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.3","@hint/utils-tests-helpers":"^6.1.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_3.3.3_1586978344327_0.3433242936211105","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.0","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"697bc95aa1e25c365bba1939cbe109d8a8fc8b0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.0.tgz","fileCount":14,"integrity":"sha512-h0JG0zFmUW6d8WXZnVL+MF3Fju0L52z/wZbaAEB1e8Txf6QBIhz7PrpLO/lPFPREAXVz+E/9qcd4im1uz+/9Aw==","signatures":[{"sig":"MEUCIAxCLb++duRxuOH5jpw4QRHEliLS5pxC0l8dlMGMuhQ0AiEA7BMJ7ytQn6l2fDJp5P6H7Z+/3zGp2HARrM5QyAJbUIY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwkpCRA9TVsSAnZWagAAl68QAIBaT94jr8zbC4W3ZmrG\nyxopZyBvR57RbiyLy7kiyy418WsR1JBTkECtlEeIp3me0ZvGegmhWfNfDawZ\n0GeFlxIKqX61gexIpFcogjV38V4Vn+J/w+92w9BoW7+EW6DB6G1QJbuwxfI9\nYE5WBL41uLYVN/r6PpsZgKwBHAkwacjgL8GiGHdC9qjfUKiWSZXaww64gmBz\n0hkVeTcgIl8CSkrGVB0Psvpu71QfAjPvQ1Q8C6cuQ4IBoKnH9oYBUqG2EO0g\njzSUJ3K6ghHVbBdoabmlXO07RBTe5/5yDPHw5VycyXDIHIipmUD+CAAVvNxK\n72aoOhGNI3UPuwUis70P8tXABky07wI+GVbpoppdA8W6MRQ5L3v/jwimSoes\n6AQ0CR7cAI0tTbHg+Nq/u/uHefcXsrc1VLZ4TTPxHaYRgdUaQ4iWdyst0HSV\nY0gpmoMnZb/+hM4BngiQ3Qf0RECcQlEkWb6lsUEkKRaER5eJD1nGsVQTAsIQ\nQ4l43DsaTWYlg4Ev8+nNROC1ZhU2TL+4072wcI497HyXs3Oga09F3PvFpw6A\nxKGvBq0MrYoxk6QIThYOu7UElII53DJyQiDaglXpX8sm205mECiFhHa7lZp1\nNqEKIsbhUCA28XX8izBI5RqFkVzzTVL6SNQPL9WXkOLoBXDcsQPYnYl+qKXT\nkONd\r\n=igQ/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"John.Emau@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-i18n":"^1.0.3","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.15","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.4","@hint/utils-tests-helpers":"^6.1.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.0_1589840168612_0.631098106806435","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.1","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"270597f5bfd8c83a5ff940e278acf9a33a42d289","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.1.tgz","fileCount":14,"integrity":"sha512-nkwYxZm8XVfjwonwa97xl+M/7dGq0+E8vvQjS5TAEHQJ2nFQXS6HY6HoY8Z5paTVh+szKJAa1OaZgQjSGpSYiQ==","signatures":[{"sig":"MEUCIQC9CNWyQykj9qJhwAV1vY/6V1ssntc3KryWxasBNzHIHgIgGdj1WdzOynAN4+//FmvtdP5iiF1z0wTHAlG8kHzYlkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzsOCRA9TVsSAnZWagAAQR8P+gJtVbgrZJ5xIeoncFPy\nimaXMemcll9KT2wkrezP57tUuv20XQXI95Tf60yQ9NDfzOAfn5FGRwt1zZyR\nwqSUjsIcBkS10YAd63Qu+fnGmq1FFGs6Az7xepuw1hteDP+3D7jWWpI8maUe\n8xz5LIW6d+aOAiHbO0bFBiMK3s3OZrHMVhG0mbSsC1P2WyQZwj+uGTIG3Cd5\nNUlgc2Ft5dKMsRDlSn0N4wovYun0XalSG+IvjTpeNvgFFZP/VB5ZBWV3BxJE\n1jqS9dJM5Yr8lfVg4CR+OzmvAldtXFcBr4xRdV1cd6qKwMtIFn6ktSK2lNjZ\n3DGJv6GN+UBnEXBxCwwqhPrIVZGbR+npvYMuGiOILLzLVS/in482pAZzuNZp\nkPMmUkicqwBxb1JjhuL1Z6PWsAZBargug9GOMZW1SvM5CT8E6ZB7kCHSEGKt\nrwiBIPMaOMvaP6p5x9IpLFIRwCklNHRjdEfegju8idASEH6BkzbL7cuQD5WB\njars430k329v8e8yeSWEHnyX4Si+eJln1HPuiX6O+zAdyKh3pwz/2jBJeEaG\nWleQHdI7GKKAz/5lkFRJIfj6SI5YdOTzEnKLB5yW7AaHj/iwd+l3wZzLhey2\nPMmwo9QRUhKIJHriWtutPRHt+PM4pLckHnh5VhQd7aRS2S5lNQB6UZU9Wubx\ntVLU\r\n=gnmS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.4","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-i18n":"^1.0.4","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.16","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.5","@hint/utils-tests-helpers":"^6.2.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.1_1595882253730_0.22309954214267136","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.2","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2fdc8e5be004543176d595ba6d58da3f86c8cdd9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.2.tgz","fileCount":14,"integrity":"sha512-rOLfReKfxMrqlnYj6IwXt/h+Edi12Uxo7BaYnmp6jIc57OklnlId3CYFleTlIyE9CatQ+YQZqlpclBybqaeeiA==","signatures":[{"sig":"MEQCIC+riPoaMk2ZHnXDeaEgX8ACIJ8u8o3UJgqxgKfOPqsWAiAt1H0tW6ZzIx2MyTFMiFYOMfUwnBQgz/Cp+Q8+7G5/aQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52447,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDdwCRA9TVsSAnZWagAAEoEP/jtBE9w4IBMG1iSHy672\nYDjc5TPDwY/uWP32+iVPWhvSuTiCoB1BhoaYqn0aGZILLnkukTdrj92HYZe7\nFM8VmmvbHVsJlbPTDJr37bo7Cy8TAm1lffsCuOx8JYZMCAjUx74DHfYUpHV5\nED/tJg/Pbo5jnpxW3Rih4+YTKUVF/d4YMrMIzjCd/5B8xqasABryrMJ0KCpb\n/riaOKvFl07ze7MZMtY++VfGTx/Oe+sW+nHSg7oWwK+3UbsQfeycplbqJVcK\nQ3WpCHMRBrLXKziMd9kikoD4xs1Stplu9U0Qrbcg0RPTLdt3yB7NXxgb77CX\nN36JCrCqIB07h8s8mFTM4sZ36MDsHB/aGYHkEUDtvY6uqR7f5JfCsZ4RsDf+\nqcCos/iaIXM+KKhVomByS/k93CKl+qcuVQ720poQ3kthRqGTe+WB4Nw9NNK1\nbZD+hThUKL66nSdBDC2KYZ/WjtrQdRR5emckkVYiwKntBVYDCtM9zlXYpTkg\n4+QDyk15TU+LQKJKu8odn7De2CbpN7NQkvLc0hhpZVkUm9vzWcJRpg8jWUhi\nuy0Eds4Y9n+pMSoXdS9WstMzbd7cSR4cwAPni8FqrkL77TbwYeFE/bxzzFhI\n49Qjz6r651fv4TxDSO4U6Vvo/S4hp8UGFVcaRRgRu9iNMk5EwurbM9+V9hE6\ntC96\r\n=7X/d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.5","@hint/utils-types":"^1.1.0","@hint/utils-string":"^1.0.5"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.6.0","rimraf":"^3.0.2","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.17","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.6","@hint/utils-tests-helpers":"^6.3.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.2_1598306160123_0.7543098049043431","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.3","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.3","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"94b84f3ea866767d90751965fba006434b401037","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.3.tgz","fileCount":14,"integrity":"sha512-0c28R7YnHNnCD7YNj5FGzVsi6KkfR7S3toRwV4Yw01uvacYskj4o/dIdO7jnyGB2ekXEaT/Jl6ZxKEJkrZhdkg==","signatures":[{"sig":"MEUCIDxqWZq5NdbMIPvacWLzb0LRhFFJuw+NMN5rZnIBO4cCAiEA2x9pw34s12+zVksR8Vg1TnRIuPchZ1EISktR7o4abNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEywCRA9TVsSAnZWagAAaa0QAIqJUB7Yj8iRqE4gEVh9\nPUi1g4uAmfWVC3+QrtjkyxnLiMJl3qQOyPnjoCCax8i5v/lL5lYZbatkP4bh\n9+R50nEilUqb4pe40jLQkXfP3qbCkZHwTpD17IqcdLq2eOypBNMDX14jIQNT\npGRLsA0o3XoZjHHU5h+YzxltAPCpv8CMv0rtXZGIRkfIn4YAmQBASifUSjrg\nG4l0KTcEVfxifSOK6OmKxKb1disDFr/x/YHF8iXmHrT0FjKulybe8mJU3OpS\nls3VCu7r5hF0qaGnnxQghAQOZ8loOFnk/qAx8EJSAnkjZGmXOfrzzLbPgzAA\nKmtc1mlrIl2KxecotlY37HGo3h0nOqvvOkYkSqKtqCP8Y3m8XhZ6v3c5oEJz\ntLw9k8SlKfqc0X0kuALU1gzskgpa9xp+7904BY7k+qZoioYzu+edigmQKzOj\neLzGckEr6lcfE4mguJzG10eZoUSG1abMux5zAtYRKwTrVELGBYFYHuHn+gjK\nei+fPospNHZHcauh2exXgauq2DEscgczNlfjW8nRdfJsXwLv0p/DYMbPkaq6\nsKZB6+DRhnP0wZMb9oemKiucGnyEQ8TXt+mdZe8fCiVpQkrW1WPMAa99dKUs\nV7PcDE7+9qHQnhBf3a6ckuweml/3J3Z0Pg8DOZEKKlpsXypU8sqAjtK1UHPE\nvzCm\r\n=zhno\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.6","@hint/utils-types":"^1.1.1","@hint/utils-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.8.1","rimraf":"^3.0.2","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.18","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.7","@hint/utils-tests-helpers":"^6.3.1","@typescript-eslint/parser":"^4.0.1","@typescript-eslint/eslint-plugin":"^4.0.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.3_1605127343550_0.8132342944524493","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.4","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.4","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f745fadb427baa9867ab706e479bf10608e2db4b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.4.tgz","fileCount":14,"integrity":"sha512-GDwT7tvDq0KqHaXwqXPfz+YL1coou258Hnl/nk3bJLss/eh1FbJnsOOXivSD89ldBus5z3rn8ihjQlM5X7mhfw==","signatures":[{"sig":"MEUCID3nCZxRKx8URs2XQS8zi3NSj3dMMNcADYomFg215eDQAiEAnBH3IIaMDu5FmZ7lnRvfGy4X4YBAXIoc637xRn1qbdg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEtMCRA9TVsSAnZWagAAdQAQAJdd0bkmc0pL5T6knQwK\nIKyGsBKvCxvizsHNnji5j9Jbx4FXA6JK5OToyvCVjHBMu7Yyo/91prk8qkqP\nJpxqY6gm+2JM+OXsO2fH8bgVP2GsDMYiO5soBdvxLuvELQ4Tj5sFn1UM/W6l\nPLY5QcYQJfoyEju5SnEcLbLj1plDBMj5Xhq7IJLvpx7YjbYB7KSlsOd5a2bm\nh7hr2ODW6sAkI29AuKZY9xCeYPkSMIn+UW0B3Rwhx6J1CsQ4JHYuL0EnTExT\npSns0uoumeIaiY/vlTZ7k950puqAMdvzVvhyepnt3kUkBQ5Flv3vDu9yECWs\neMRKYkIiw9OVuwscgcBYASYr+x55dAZi2yE8d+0WpW1tlV20NuADn39r/v5C\nu/cOeaYEWYTDMI1Rbr+Lpw56Ry1sjXoUFvNdODgH8Lp+F6aIrNjaUfeX3r8O\n7DLK3qfNBJ6MoPKqJfjuEXA9cWkwdTWHtt7Vq05NFQOcRBRtjgrSsFbC0eiH\nqqDC84cs0zW1q36Y7ifEQlW6IsFFzx4Fr6EPjqhKw7dT1IMMfqnIPEmrh/Ty\n9pbsYo7gXmxXEZUmpF4lEg1r+r8DDGUPpreKKNLYdIzYJZW49/K//gX+xLHl\nY+qvXfQQJsPteleHeZciZdhevAMkiatrN0vAuHnUCKA172tJvMlOH4SspV0P\nGWz+\r\n=A5ib\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.19","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.8","@hint/utils-tests-helpers":"^6.3.2","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.4_1612467020548_0.47735375234257216","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.5","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.5","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"58dc5161cd1e6481bcfebace7fb2d11fb8456fcf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.5.tgz","fileCount":14,"integrity":"sha512-cSiWj8GWtCJ9lYS/jYFMe+YpNk1mmugJIucU5rylBWdkpXBOm70JDjeOq0bZbBUQZQTPjrDOTF4pWZRmHnM3pQ==","signatures":[{"sig":"MEUCIF3boGt0faZ5gtxNRpLjQSCkBGQ+F/FoEzu6igmfZhbUAiEAlfmNLm37+C70B4LgfyRJ5Qjr8HoHQjLzJ0mvKkdhy7s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeX2CRA9TVsSAnZWagAAuB8P/27Ehefslrung2WI7m+u\nwa3MexgEmBRS6MQ3RinQED0TRxLFxuLj/EiUBIJd63iIGi4WXUWXvGHVldFq\npCsSvHl6/s7Ue82xpd5NYrlSmXnM+3xHaNkiu8ADBlaPLo/muKJHLH2Ycmgl\n+Uhqz193yPx52rYXpaqk5n+GmFjdmkowHHYK5ytUI82z0JTVQHBfrqlxtItJ\nzv5LBMeIdPw9jyY8YO++j1Uo4XqESxD1b+6SWcisCB7V7kEEu5bQDvame490\nR3vNSN/dyNYIESEOBc/BVuKD6oNdyh9u3hVdkFeQv19Z9C8AbhH8rXeOVTnK\nXpLwu8fUkidq6AFO0t4/J++MpUIe0w3RzoiKsdfA0J27UOLVboQmHLbJ9hhy\nq6VwXPWwL4BYI1ztkpbh8b9pD9TbXPOIEfMQCUcFqG90usGW2kbiFv4JDEV/\nu4Go7ItKOFvOLQX/ETwFJosMhRNGetMJpPtKeNshbn4pNyDpQyw3iVAG5Mco\n8ZeLBalAuOrcsJQJKVKVMrQJslnEL44gODIS6dlsXg4mTrFGDQ1CGWQ8kZmG\nIwEO1F0k9a72sQDlKUG+iYrjiRCF2B6k4jtwLvswx03namEaeyIXUiFQa2MB\nspVkMu+1jMyAh7zhYhEjqpwNzs4QkycpMd+mzfteNwojWdTJ38GEK+wr6OU5\nnjxj\r\n=qERf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.6","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-i18n":"^1.0.7","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.19","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.9","@hint/utils-tests-helpers":"^6.3.3","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.5_1612572149799_0.8708149260460183","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.6","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.6","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c255d4f08d376fb97a2d344bbb7ef73924ae8c8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.6.tgz","fileCount":14,"integrity":"sha512-2SNsyT4uKGtUxFTnJ5Wxdov2EURUCtzvY8pKPGljCIgpEVpIftaQW7XKjZY/O5Bchv3bzXrBXGAbBdPvgjy7Rg==","signatures":[{"sig":"MEUCIB8zNg6mfgyz2XKWj6OSj9gs5MViEtGISRb4Z3jmRGRsAiEAm4MWn32Gsp09JMCBR8dtM94p6TjWkrR2as1VB5KpC2A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRJBCRA9TVsSAnZWagAAUBIP/j9h/aj+nOs0EKm/XdOp\no0VYcBN/YVDtuzdwpTTQbt5z77qoAn/ulFYotggA8h7YyOVcHny7SIe/NGr4\nzCFh57nMEzXoSi3Cr2RrO/c0vaMKcy+cd6cI8GrBKcug008NSxsv1ymPv9Dd\nakFA3Q+PW2FILTsFOJ7wgQqbZmeFe46MmVRzLSzcmTXZdupP4bP45gBiU63V\nNWpx5Nm57Y0qAl5xn31tisRwSbRRq4yunQP9yQQQClU4IV3TbSDAzYH6eJ7+\nYVEw4sQcWwYyOeA0HT6/o8ljiw+VEQqTCwmYfw4g8ilZHyXMvVRoO3AuFyfL\nyq1dhCiSFrQpzaIqwC3qABSbmMtcki32pNJorw8SyYaAnr/fZf3MKh8+svRo\nFSD73it0otyZvb4cNEYJsJVR9i31cKQrn/VEfp/7JgVjQSMEvHhakwvyMGbH\nmoLtN7UpqX2O6BzXRxbniF0Lt9/3S6ZxKM84r95x0WPMka5CZvJsMYZ2mMbX\nQoho/kD80d2xM+LDvRYOJFnfMY+9czSoOL23q8MWFoZzYbeRJqAA9LStLd/w\nsDXTpLNLxA6DUSOUiXCqc37GS+xsmYYQh5p7Ute6weMptJfKs5xm07ySPtAT\nqbNYxSidb3hkp/sfnLyVTxLqXCcEw5+LLpTuX1cJSmy8ScPXftJfmAB8Tfow\ngHuT\r\n=Dyr8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.12","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"12.22.1","dependencies":{"@hint/utils-i18n":"^1.0.8","@hint/utils-types":"^1.1.3","@hint/utils-string":"^1.0.8"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.27.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.20","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^2.2.0","@hint/utils-create-server":"^3.4.10","@hint/utils-tests-helpers":"^6.3.4","@typescript-eslint/parser":"^4.26.0","@typescript-eslint/eslint-plugin":"^4.22.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.6_1623265857416_0.5875799777244488","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.7","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.7","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"7cdab7104997ee822ab833a058cc2229a2396147","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.7.tgz","fileCount":14,"integrity":"sha512-WZ8nD49I8bNdb8bTAoXs46pysVjVCG8d/4zXEshwUnZBUaSBILTS1/bhGnV8qCLdv7Yl88kf+84YLa+2YxoYAg==","signatures":[{"sig":"MEUCIQCA4Xzgb1/WUaWPV0g6AAMdeMPAKzLTWxnyaCru8/IYOAIgJDHxS9H3QBpXTy97Il/yyZeriRZuIyZuJdo2TvoRuKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65568},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.21","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.11","@hint/utils-tests-helpers":"^6.3.5","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.7_1634833192331_0.7906531524404701","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.8","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.8","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"eb1d8bd216c4c9a724638a1d8a1ec181383f5478","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.8.tgz","fileCount":14,"integrity":"sha512-aRcaGEMetXRHhQ9HDMVsFzJHNmHc6QONmocyOBtvDBZiZl1rtmD49xCNwAPzVQ2QrMjx6CjGXFMbUdq/ajXPVg==","signatures":[{"sig":"MEYCIQCrrCuS5vmSmVy0RaAID/jYq97OI/WamjGZalYFXrRJRQIhAK47g8sc3jU48+ABWdwlmA0Owl7J6SAcItzBgzdLHRrW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65568},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.9","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.21","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.12","@hint/utils-tests-helpers":"^6.3.6","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.8_1635537410126_0.08678317676372083","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.9","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.9","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ff5a16161ef199a45f4065ea4109212f360e69f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.9.tgz","fileCount":14,"integrity":"sha512-ciND+EfTMpXEtgrXK6HG8HJ8jkyOm9cKYglm9KUrk/IygXzJhAhNN4YRg71ZD/hcxjjAglTOGLJ55MFz4kPf9A==","signatures":[{"sig":"MEUCIB97mnQCPFQ6Tq5p23GpNBqwoOVtM8xzWBVQFDCeSireAiEA8llWgNve98r24GCAWu1eWEGO4JDI3p52/yqOP9hwhVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65834},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"7.5.2","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.18.0","dependencies":{"@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.22","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.13","@hint/utils-tests-helpers":"^6.3.7","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.9_1636050579713_0.6932584245357687","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.10","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1b4b4a6f4814f4f642b187b18052e82091368c00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.10.tgz","fileCount":14,"integrity":"sha512-GvnAEOO76SghtNUfgMDPFXNakqGpDf8QWlzhj1K57rXhZ5fwe9G0qh6eMUUsh87rlrgTCWgzD3RKhRFshUp1Dw==","signatures":[{"sig":"MEQCIDIYCwmF201DYXunPzwSa7vPF43mICpVNCapHnpKBqIWAiBsIfJAF+2hOZ5U5negHKvPPH5zfZfwpF23PWfbuTlzOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KSOCRA9TVsSAnZWagAAZD0P/38BP5qzxqOLeW8jNYrS\nKKw/ZQLnVBflgHdEgAUpJFMel9ajvYiFtzI8z5ShEcKvGlwO9E7Zi8oFLW5b\nIpa59fx7xSRCaILpIyfLEU5UnG21LZIez1Ftn8P8dHsxQCO5UDqHuvR1GgNi\nggWzA+xYn3e3ovjacALI0lLTCyONxJJ9fCctqMMbpa/i5OOoJm0c/sAh6tF8\nBQCIUwspqNcWJS57yYDIaMsIHwO5lhJxHxFOvTphpRohDCr90+QtoAlSple0\nyF2cjHBItyH9F0wZwINDz0rmEwbe467IxcmBAg9QfIj+fZHp1DhwNDzSIie9\n1GbrdL1dbHdrmcEaZsGz0k8ZFYn3TjQiXjT5E++4TY5ypkTh2vOZf3psL3J1\nDgOeGJqadM5SuMcx2YIuWv4pQA+yzgyZvWUtPOzKFHJSZT20aJIuTHJkQQHT\nXxLfoEKTyjBxMLMloIAsJltrA+m3xDIrcE6+eZN6PRnemVlbw+jWNEWprmdB\n2lNB3Io7hD0nN7SSG8/CcPE1ee9PSybAp25ikQbvFR2f9GlVKfAogePOOf4b\nIXIITEgHOiIcpzwfk4GI3IRCYC38qOdiG5lq0h4+QsqxGYi38Ku7c3m6jcdD\n39z6anLqF7hwOlzX5BZgaXMdm/aD3QDQlFaZ+Aj3KWhK5i5+HNkY6/Zejy0g\ncF8i\r\n=cJdE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.15","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-i18n":"^1.0.10","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.23","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.14","@hint/utils-tests-helpers":"^6.3.8","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.10_1637006983091_0.009865240887873883","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.11","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.11","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ef17aca708ce8b231f2ec55f788f2e68ddd9e3bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.11.tgz","fileCount":13,"integrity":"sha512-s3wfK3ud6hfolgjj5Z3RQf9tlTy7L9PK+vm7m1v9qDHYsRHm1R1fqvpOlkixZ59x5QPCC7dvB9vJqs/6dqecQQ==","signatures":[{"sig":"MEUCIAXTGRcUpTesNT3LyJebi27j50zLuJBN4Y+omCeqoMeTAiEAnkSY+I1sTfoGm81VGn193DRcBencEsmfgURXioE4VzM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkZDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodlBAAgjq7ol3qEOM7DeQoUxuYeb6PetDTc4FWnHJUFX/i5Y4vrHXl\r\nwxDVvmWehpNpc/JgHRZ/80srntm1A152MWW+XHaxlvnjQC+Rvgj+312rOcRB\r\naYgy7S7Sk19ebve7z7XhU4eJKSPQ/tn556RFkhPsiVv+E/WqDiiBNYuKozYM\r\nTvY6KHaT9K1YpbS1EMyxnRNGvtdvLIhwBs5AvNEdicpL7WpIvh3TrjkOanhg\r\n3ILSBonzCYz95j/kVbbtrq2YumN3GT9I/h86pe7GUyHY4ILmnaDrFVBQUMSF\r\nqCcO645BDgKoXAwvm7AKuAIPz1WWlVYRsPqdynILm3uwUQB1bhsfyXDxuV5f\r\nYfj2V+fPat3cLwqTW6E24zBbpqpE1mnWQn65e0UxRxV10v/AaUjZPPVoAcIJ\r\nvFV37GJ1A8NVGySmMdF4eJ8REk21MsARAJuEcl5QSONAE6DjCvc+BQUwaCvM\r\nHuRYVvTfi329JO3I3Lubau8aAqOjLkzdIMAIDIx2Dcv0GjwdnXWcDpdLHzti\r\nigquZFDYefgEFoWBcdPjc70D7MibEjYxM7jsH7cOXCDxL4Bc3gPshyDHE9VQ\r\nO4HRDdpPZ/n+mPhPrXNrQWN7Z4vqPH6ZZaBhG7FG8836zdU6woq40hkuvZda\r\neRz2RbGswM9KjjZ5/cuq6WGrX/ogY9Dy52w=\r\n=jFfk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"259226d420ada93e86c1ee0e5876251967abcf04","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.3.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"16.14.0","dependencies":{"@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.24","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.15","@hint/utils-tests-helpers":"^6.3.9","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.11_1646937667453_0.9817600437006682","host":"s3://npm-registry-packages"}},"4.0.12":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.12","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.12","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"cae730ed715bfd6c1c8e8494a74042e36716464a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.12.tgz","fileCount":13,"integrity":"sha512-v4Agb1K7s3z6YroqTvSg59FPTWtAmJVEmpE0Dwgd6xFiKQz8cOdVmfazhmL6LwpRB7b2YrmK5V68KgPmu/5pjw==","signatures":[{"sig":"MEQCIHRk+c1839kOQING0jxyYhqHAh+Zt6c5e74eQwIYd1GrAiAfsU+r1Zj6dSFfRSTmQoPqZn8g1oVdezLWPjjgwJ3ESQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27248,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG38ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpA0g//eWugIw0APaiN/RViyM/h+slWVz8mQ2Y1INb6L0v1O//eu4Bc\r\nY5RBj0Xr38l/ckqc9sgTKBDZCdy9eMZLUrjQUPkh9zTTlyuA93vHT2+F3Fuy\r\n76pe5iuH7ITedQN0ko27AkYB7EHJz6w10gjkY9VaNKtM/K0x7sJLv6Xw2mTw\r\neOyc5AK6Rtq2tTdGNmm5u1jzb4ddBQJM3AAKfcyJVl6oPCSYyxrzRjF+ro9X\r\nk0rGidSq8wdkA50sXHcnZSGr1xviNGN3fZ2hgAQ1IrHZmL/h1NoIWwWGt1kx\r\nQMnjswv8W4jvvRPadIJsnSA+M21M+MeQLo8VlofvoZ9eIO2MKrL6EWHPs/ts\r\ny5DAaI6fbDrntpzGV6KLn/qjtAybRyDs+WKjRPMWe5q69UOGlD2JmYhapRvT\r\nb/AMaM9vVN63WoVgEgu6i4DxYvsK2uNRsYX+2RQz5ucERtr3ouFS6rl1it4b\r\nAH4q6er61HwE/etJZe5srq1nayHQwSgHVIBmrSMnHCvUvo/PzIHy4Pq1T5b8\r\ns1r8SrX2+X4avK5fjLQ3cxHSj1Rm2aQieTe0e74QaetUdBP3uxYewprbfPkc\r\nhgmcnWHvntlPGd0qpgmLwFFgORvLsB7IpANRNtJc7IwIt7z9JocalvBB9dsM\r\n9mupM1a+oyoXP+s0otLb3ckrb4as2P021TE=\r\n=52PM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"ed090aaf89fa89e6575bca6c116251a40266ae8c","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.5.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-i18n":"^1.0.11","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.25","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.16","@hint/utils-tests-helpers":"^6.3.10","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.12_1651011068126_0.14559702322757673","host":"s3://npm-registry-packages"}},"4.0.13":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.13","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.13","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"06b2dda375ef33c4af9c1fa6ddbbae50ee0f57d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.13.tgz","fileCount":13,"integrity":"sha512-nQ2sqYxmCagR39hGSmRK81BjTnaDCQ/kuw/9QbVqcAOOva1Y8dlW6cp5UvG683+iX3Yx+763+NxqzwP9qwDE2g==","signatures":[{"sig":"MEYCIQC3mCCeD96DFNN5Fa5DtYt3JkUD7bfEEgk/HRedtLVFSwIhAKS7aXabDyyZqR5gNURJRa695ZFgG6xYZ+3cNHBxHwqa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27248,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdpPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyxhAAnBgi5R+t67oO4olDtcxdcOZIepiCHdTANJsVK7Ev+vpj9xAr\r\nQLBYTDhzqqZvFowujhijFdHwPKQzctoRBDKRXUAV404yIf5z4zektHi7AFjD\r\n6JnX+xinctO3AYDyQ7UQY7OJ0hSF1X4AM7oi/kNlyMUbPRyl6WLos6cVaanz\r\nuy43fa8JzDnMOJMZZqqLFiqXiCFQ68d0llUPRlh793/EF8/6MCnd9Dnc8LGQ\r\nIWzCI0Tox7B752e162JVXSUAxHwb1zCDFqi8mRIG0E79zjAmNuDNdqaLvVmh\r\nPjzmDz3vgEUbdH9Q6esxyW7SQ8IslEKyTXA+ULGTIPPrmnE46F1vA/Hz1bjO\r\nE6EHxd1SzO6FKv5CO6tHq+F1uMuzKjnn8T1aROsRzpJ686hyXWFUfQ6zkyh6\r\nmxa/7BAIpzhM18m0SpY23E9S4VQo4mvk2gxbY5CxH4r23fHT38JXHBTXF8bu\r\n/abzQQX6qf6IEkkDRhArIU1O0y9kO9o1TK5JwRAjjVX1IFtV6MVWLjNEHzoX\r\ngxVnPukB4Qn0IegO3eqaXT6CjGb5s8slVhdQQGJ3IVOu1jBmmGR8irz3yJAm\r\nAvWeYIbC3uKHuI91JQqZnb/fjwyuphVj2oT5Lx+NR5k7wiIMw2AsQ5hH5sDS\r\n01eIQlpUP7wV/FDC7HqS2HOWHdVoc+QNaE4=\r\n=FtGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"86a21f9d09e2e0c824fff06081f329f0382af256","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.5.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.26","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.17","@hint/utils-tests-helpers":"^6.3.11","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.13_1651628622824_0.818602265719184","host":"s3://npm-registry-packages"}},"4.0.14":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.14","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.14","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"00c6e2e229b4ec757d0349264a1589ac1eb067e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.14.tgz","fileCount":14,"integrity":"sha512-Tb+bxiyqkyl1JOpHRbfvfUlMzRPqoy2Y0XhDUo7gwl2dPlnJ6s+MeHjUdUVnAUZJx2EkxYVuI8EbDr0OfHjPgQ==","signatures":[{"sig":"MEUCIGXxW6NGSU+9ECn4N0Dt/ibDhiUiNwYL0nrcuQEdGhWCAiEA8w3pQFov3IAUTBbLWs3Sf+zhSux6unc8V4p44/9drjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn9UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrCBw/8C7nxOn0/wg46sbyI4abetT27/CSTJ08W6Fy8HSihN0+qeStB\r\n+gInugGQidCy3ekPtTvxzwe7f++9qq2FA86e8FYytfxEOTeDZd02jDsWzdTA\r\nk5o2iRcfEPoa9ZVMThWNYRCG3sD/BRVjeJxQEllGfGdd3aXI8VzvaXwJRSZe\r\nT0veeaGPHT0GHZ6cx0OqrBkCnbR1tkvCRRMLg4D7/vAbW/pIuhow4CqrlZA5\r\na1579c842QyA3AXQm40NGPCDQ2kCEaDYdjo2LHg07gZrjTzylvggx2Cdz1Qv\r\ncrBxQDzQaD/dKKutxF2Z7Sb/viU+8sUsnU4upcb8lBPAdOiGJ5TA/kO4ja1Y\r\nE0ma395IMeuHHNxBvu4LSpjHEeAmEiXNt9z3LOBYhol+mM4BrxZdX9JqMgMV\r\nwD8WkkaHV1mBTB11MwpeXi9X2d1MJhe/FwYB27ZRT5PjdH2px6Xp7rD2OxBd\r\nbGPbOuYmOxWCWZOBiiz6z/OOoQ93DlEqgLXp5r+3MljK24Uf+xSgdfnwrTrh\r\nAU/sedL2dIqPY6F3fVPEn9EYlurynUUTFKGEFdHxinzgJi2FdEnYJuyacEni\r\nsagXJPRDGtSzIoIyoPvSE3dUQnhGMcXwWNXb4SALOoedNTXD36bMdFitNjKY\r\ntE8T1SHpnQe/W6+/x186SzkEaUjSq7hRhfA=\r\n=ivL7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"6.14.17","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.27","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.18","@hint/utils-tests-helpers":"^6.4.0","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.14_1654554452656_0.9069878905832884","host":"s3://npm-registry-packages"}},"4.0.15":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.15","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.15","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"44914ac946f74eb1ae9f531fd923694f4fce81f5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.15.tgz","fileCount":13,"integrity":"sha512-wd3f9JhNkD6p0XBaDUqZvuE3dren2FzlVTet8ewoEz+yj6bFmSaYbcLOCZgpKs6MPfV9izQgqu104uzpNXstnw==","signatures":[{"sig":"MEQCIDHGH7kng4xX6bSaG3g8+2d9d21wB7VMPKBsP1m6vODRAiADvgiRXUsGOqr0hQLDG6jQ7aLp1Gvqq8c5gqNrIZDqIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6CDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/2w//Xny8plwbmpEg1KbgUgs4u49O6FXwaE2xHfeZqY3jNLfU/UUq\r\nRM2d/PwwgdoWRvReGpJwe7I7MY+HN4NQRa44PPqVjSnDNVeODTxKV27jFlC0\r\nJ5tk6B0f08R6KpirKoxHV2RoAk9AHwBmBoEgXmJ9819cGoePHa8TfEDFPmtH\r\n90Z+3H79yO4aQlwTML7qjzoir2DisVswEDTFPgkdEfPZSozeWt50BpBvvEoZ\r\nNPfFQd/LgNdIn2r+99ahu0k1eMkkDlRapgJn+LhsYCLNsd1Pa9RXVmRvkLkn\r\nBKpP8DjvszSuUV7napPZa71AQZf3/PFes/yfIKczo5KPOyjnHM8sm6Q7+AzK\r\nKLz04cWHvbGkiubzFQNJtUfiYm85z6oOaH8pRmhX/cewoLU/cxYIQJhxPC9V\r\nzbw3HpOv5JO6nn/mocLSrjlmPl/iFrxmRXwLiz3OyUOwCgCbgDHh6KMnedzm\r\ntUu3ZbhOoaOzab0DEIqbUEDP7mHEndNBbhmqtQ4rmqOhM+3kIZOKz9o0mR2G\r\n98lsjIZOxz0F/ty/UMwawhHpVPz082E0klmfBCPOro4IVIrNRHMLuuq/1DmT\r\n4TrubLAG21XX/87I+lJuMTbMcMDgNFZiehI7CLfsthztyHOM2P4/TBJ5G69W\r\nAE40yDeo2XGW9D9ue2AOPSkG7BSvJOA8rtI=\r\n=nOGH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"8162e2a7a04d31bb7e79e09b1e0b9a2b9365148a","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.12.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.12","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.0.27","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.19","@hint/utils-tests-helpers":"^6.4.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.15_1655152771612_0.02988817641835473","host":"s3://npm-registry-packages"}},"4.0.16":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.16","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.16","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c166b5bd05e07f1f4bed6384acda2514daf57201","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.16.tgz","fileCount":13,"integrity":"sha512-v24D8OSjL9ol5OHf3ecokhPe2yF5UHVf6//GnYP07wr5BupIkJVQF7qXg22Wiz53HxHE2+r1SCrebbj1nh18gg==","signatures":[{"sig":"MEUCIQCaYrZqESh03i/O2l579IdYTucSEPCTh+aeizg/aSQPnwIgNnyD39Per+i0jCs4c5QisklEDGCgzZA0WmxNM6EihmA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFRFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYAQ//U06bcHJzC+Ob8NHArUXvTmuHB3sH2a6QRrUnq1ELoud1705y\r\nHZWObiZ3pJA8QGKINpv/fbnG0UBoKc/A9whjeDaln/d2Aqd5QmWq0oIgo+HT\r\nUgRv5oxgyGYeqY5MPX9TPshnxEMNDqB7xdaFMYscjyklUvfhSrdOi0jJ54v+\r\nJYGEUhXrhwb3u9fXgxxnGW/Fn7yq9DUGje2HL/QOxCbqNU5Z6Lmy+oZcQT9I\r\nRwxfRzQFlVAs06l+319YAMPweGk/KA+fg+6HzZZ2sHRp0+6cgFqF0PtCJdYw\r\ne3s6EPpp88W0YE3wGwQLzEi8mow/C4mrGbDn48L8HHmH1k7NHN3u1lZDr7G3\r\nBrW7KvpIakNhZl1pViQvcTpgcH3089un9RAO12orWALuGSZhWUwMKB/YWUNR\r\na+s8ZZBsuYZY6T3cgdkvzWQbYYfvuuOLY8liN0SJWdvbhTQfuRR5rT1V4yY3\r\n+oXHrV8B+2bbth28/7Nnw8GGztBuTVC1nN4y7ksbuW65MW7TZAZRWDHzfEG3\r\nPgh0d3vh9FZJX5axu57ZrJIWXFhatx0e9WGkitwMck5Ky80UKeh0RHtc+7iX\r\nDt9Dr6ThShZbQWZXo6wyk73Q7M+4d9V3uFnj1E/5uPqK9hLY39fXFt5lxd2a\r\n4hBx8RRRIXo3LHgGJZvMzlBTISkNvrYL4rI=\r\n=L0IR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"50e8485324a6c885c736d0b4d1ac8513d875f5c4","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.12.1","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.0","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.20","@hint/utils-tests-helpers":"^6.5.0","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.16_1657295940828_0.7576116664137766","host":"s3://npm-registry-packages"}},"4.0.17":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.17","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.17","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"85e4c0f498ae1db932dd9e6781bf04192eb5e120","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.17.tgz","fileCount":13,"integrity":"sha512-c7FP8/w2K3U/A7mGLihW9pwTG5nQyP4k+dKcjRzOvK3Rl4ecG+KCk2BCbP/Nupa/nk6E9fI5KDNuNhiti1q7LQ==","signatures":[{"sig":"MEUCIHkQxAsc5Jyqi8F4bw2GULpbKqtDIqNaHfbD3JoUzQPIAiEAzEpX5G4iVUJpxpOxouRRSKxIVn+E2cZnha9CFqRA4IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQmg//ZE9CnKCALZ3D24T4bQi+m7xybKaTFSjv2ylmOQokYfusCjt0\r\nXyomYy5rEZYHN3GLIr83kOJTgB5IjCKoyVflFmCOoADG9hEK0KqstHCKiytk\r\n8xIR5MTOjTPZkk8FmiWzVI+KNVIYUNjiV9g93NynYg25xkKR3KRwmimXiePY\r\nhdDtPqUa07LmfuRMNmmKZzU0xPDjViwg5b2W4hja2AicEauIPqAPe/nZ5avU\r\nuF7C2tcwTMPkTsVTBAwrOl5QCifSQRXpyijW60JacD5B8ukHaTljTAqh2ZLk\r\nhCJzXCtaraJc8eIz3btycb+eV1adgDuLg6gbdZm4zmMh8747ZEo8En/1rWhN\r\n+sgtW8Tm1F+SQcTTXotF6BYihT0pa5ayFaSeYuRJBpSTZozY9QL0DojrBJfh\r\nTJE0Icg8/xs+IcoIV1xZtF7qKqN/aM0sxNSjbgq+zmp2ZVj7B/7OzHs+4Jl6\r\nft3xCDTRNdSlaLIcW5MBSvlk0b9tptiSYYSJxCJlf03RTbhIyqkaKJacUNA9\r\nxe94kFC9BAkkPY5kjQbwhibsCYTukzMTApK4Dc/SQKZeNw8FyP/f0NmDbrjS\r\n3NrCvMcFxTBLL0wHQdhPPjqGt3rg8PEqVBWYOmo/1yy0WdWMVq7FQKEF2HtF\r\n0CBbEsHZWPy8jYEF5IStN9pg0/extYWN+zY=\r\n=iNDH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"3747703aad67205d4aaac4b74e7f78ed86402c0d","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.0","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.21","@hint/utils-tests-helpers":"^6.5.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.17_1658530779986_0.2662305367786193","host":"s3://npm-registry-packages"}},"4.0.18":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.18","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.18","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d5548f7c23b2d45e284f13547e17ce1a9b439759","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.18.tgz","fileCount":13,"integrity":"sha512-K5/GYuYBbitNfWkOPxNEJpAEbkKJyAb6kzKrVv4Nu4WOKEbs0Cfn+LrRHtvws1umhz0+g/y307jhiSbeb/Sszg==","signatures":[{"sig":"MEYCIQDt9wEUSa5rB5TnPA4r+Ng7HVvrX0WduYtXHr3+cdqfGAIhAKGpJL6jT+aRUDamBjJUOxYqv95dKfxwYeY9IZ6xnted","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3gQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYGw/+NrT3W3iFhH7IFaeKPdRHui9kcIDksX1/qmQgTFprCac15Pey\r\n1QKUUmV7CaPI9U2mjR0Q6Wlejm5KoH2+42urkBXPWDz50CoCzIc+9qVdD+Hn\r\n9Gr9Np6SDs10ncut8IfWTfUwnltrFdVPf+gnBT/IRoh9kUpt8QCLJ39XmmBl\r\nF6q32BW2t+SQsHX7OthdxRXuUkUr/fi75Jb/X4dCqJZ6fT3HBBLebz/aAc1f\r\n2O4puN1Ws94FP1R1kX9ncjGbP0WvT6FLVLIrE1eoy+Z1qkxuIm2j3sLvm6GB\r\nA4paHLnhozQ3wPjLfH0jpV7oulb7gf/1n+4S1FmpmBD3/oF0jIdv+0jFwWDv\r\nXYzMomMgB63VODT7/Y3P4+WIoaU+g9z2kr9uRcnF1Hgglf872Nf9mNgRAPBj\r\nLFSmaWlgkcPmUS9iAvkfBW/IZKgR091bFjw6/aDRGsSiABf1RQR8LvIQHbZP\r\nmafQ2O5m7MtPUWOEoGBxMreQbbggpOxkruKkn2QMqgDsvVREma/5kIAnDfjb\r\nqDn4i23OjTsQHgjPtulHNzOlbax7C7Q4Ll0RECTtFaWzNxsqB3QUgMoeXYwT\r\nOYz0Gx13rfuna/2NO7AxEqJZQoHhRmkUvNMuYQRBBc3KIyyC65sbYh79jjMJ\r\nkPrqQPy/iPReWQscwBn1ixwZwKdfqhYiUXg=\r\n=DfTp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"64f0d5cf033aa97b12ef161d91e00bd2f750da6f","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.13","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.1","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.22","@hint/utils-tests-helpers":"^6.5.2","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.18_1662482448773_0.18386324290892264","host":"s3://npm-registry-packages"}},"4.0.19":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.19","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.19","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e001167c7c027170c4720eb0cf3a695db1ee8caf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.19.tgz","fileCount":13,"integrity":"sha512-axBaLfmcSnyWryCmHkYOVsuATQKO6OFXhkqUgxCctKfHZ55omhezOg6bxL4fMVh9sKUq/HiR6dvZX9UO8pLGcg==","signatures":[{"sig":"MEUCICGdhz5DptgyLmFqEKC17RP581YhMPv+LO6Et2GVHLymAiEAzMJ156z4cptBiqxa1bKjG6/D+Dh6zf2bfvJ+F9/ep7Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzALACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUJw/7B5CP6DOG7pGusFaE2hRw8uK0p3iB7TfardTsKa/M/M4p5KvQ\r\nNZlGQxGv/tSL9OKN/TVucv3fq6aGbioBzopVEzAU9ogoneHY4+DGHpr4e/pp\r\nBvje0KR6168uwGR8WxIyosHWHS1EtauWOrxXgBMf9Y7/dJc7qfstVPR8X+j8\r\nqeedvDdvsmz0ywh6jRumwq97iVFke4/l4Zr2gRdZuu8A79p1TtZCdf6dffGo\r\nanYKFDbcpa9BEH02Dl4xXcc+wuDlKIgv3vtkJKeb4+oI1SV3XprrkQO3jcg/\r\nkkWehJnp/PcwePkOI1oMyLNYPIZUfj5Ki+Y8lZbtXYqi9QwJIrc+hi2OKlYx\r\nTTxrJAmwFJQ9v8NGnsmo5462Pvsvzy+n2VgfAJjoVTINTixSzOUxoy+4QMLi\r\nmalN7CKxb32t5knWZb9P0p3TaPvx6Yk/gUAO7hGa5jbaL7iVjFaXBk2KPbyP\r\n8zhIdRVZrBSitn7AxV5O1fyUHhcPJRPyYgR6L58Gf7G/DlRFEM6zugL4hz3v\r\nDQzpNNvxBb9RpukPu9Yk68U1x/J/Y359rM+KVPM9XC8vyrd84x/R6AGVBd7k\r\n1X+Jza+d83TJSc6ZZIGqfGm4TGuLQ6DBlB/S/sdlzoQ0Z7MRzbS6JnBJd4a1\r\nX6f5yUlfGMk3n6iyFNAbqZMA8nCPxVe4aBE=\r\n=+RO0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"8869f1b823276a7cf0417925b78b6aba21d4ee2b","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.2","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.23","@hint/utils-tests-helpers":"^6.5.3","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.19_1665085451180_0.976555868428084","host":"s3://npm-registry-packages"}},"4.0.20":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.20","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"41b3b9306459d5393bcee08265539253be12a84e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.20.tgz","fileCount":13,"integrity":"sha512-3TsEAvylKJ+O68ZFoxIyWSXAa81YsbdBLbxq79/znPJkmPIyI5zrIANdL/JPRQzvmCNaygFhfZmq2qDAkt6mbA==","signatures":[{"sig":"MEUCIQCeByQ8R+/kaevBT/wSLA03zuL66nd96xCfgxSAXowzoAIgaAdzWzugpG+wK9oV3D4Hk7UyqSPCkZzXB/1ThkmZHS8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBiw//WkIUji3LfN690p+B9zeoAtmO8Nsi4BeqRFgd1wCyoUDH55sd\r\n332SveFesnn70pggLFUErfoCo6bjd2yHI2fqte+MhLJ4ZzeY3FCXo5AnGoAE\r\nlTUJ7NVSHpV1YNXbsDYV0s7UByumHiv5Nd8XfOriEre7/vWdI0c4cevjzwTH\r\nEdXnapoSsFc6kkG57YVDAkZszwOsi460yESSSWAYfG01G5kcW+F7AhBJoMed\r\nmcqeTiCFt07c4dIMzli21KQ4nMMMQZUXM5ymneVBu+pQ+b8cXxnGLuNjHE8j\r\ni2hwmr4li/aSzk+z+jPS1pCZ5jkAnoGBp1meh7Q17eSl351wW3R8zGyrQ5tr\r\n8IItd6by76o2nEFX+8MbUunkRDS9jLRP9nonymbLkZEoajw5I5Le3Jp4fQ2h\r\n2SL1imXUECTJ7wXfJyWCBAZbz2DUNPsoNuPxHRk/4asell+4sVU/gToZ9qzv\r\nfl/dAAu1Y5PDDQlV2xQhXGyM2teqLOtvqfy80GUrlylXQqPxmCbID/OM1Zs2\r\nIBkCQx3ONnwS82WuByQQwTnrHD1PBYRl9kXVA9dZNUHBhEDVEyKdcVWloogp\r\nuS+lIfMWGeovdsbGR8wJjaDDvE15JlDsC17m+GhsJo5QdH+kBoPDlCT2Dlql\r\nEQ3AgvkjMKyH0EX1KkETpkEJnam71AYgMJ8=\r\n=WU2e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"722be1b4c0836d5c0adacfb00c8c4f6bc5d1e707","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.14","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^18.13.0","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.3","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.24","@hint/utils-tests-helpers":"^6.5.4","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.20_1679007016414_0.3750176416287183","host":"s3://npm-registry-packages"}},"4.0.21":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.21","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4736c19f19897b7a51f5aed57338402e3bd33c83","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.21.tgz","fileCount":13,"integrity":"sha512-mmUzuxALfDOs/77BsRMhpyzkOq6wVc95OESg7wsfUAqCrBiJ9Od0UwpYgwxaVLYrmAkIt4URREUEZpRrxyi6Zg==","signatures":[{"sig":"MEUCIG6pj3BiiTPiXs7y2eU3QpKuUqiIjoBDUJHjEFOYt4PrAiEAxWct5Qp7uH2eA1MQ2/ZX88LRP88lGO5yA8wrP1WJxb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30339},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"fe6feadb1f77798203ea9d75edd88cf2fcfd1b61","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.4","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.25","@hint/utils-tests-helpers":"^6.5.5","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.21_1686328175398_0.435641716337573","host":"s3://npm-registry-packages"}},"4.0.22":{"name":"@hint/hint-meta-charset-utf-8","version":"4.0.22","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-meta-charset-utf-8@4.0.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6b56b22b4822999e58f33cfcc0052b91a5651b58","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.22.tgz","fileCount":13,"integrity":"sha512-kdH5YNpQDKFG4UTgws6BeCT/hxp+B8Kb9jKGlQe8RyYZjzdZHbWj/NpZyqdksX1+sZwHCBSCGWlwZ/TCDHCA/Q==","signatures":[{"sig":"MEUCIQDhwEOAf83cEoDe9Ry3H4cpx9AY03uajBGK9FDkM0oRgQIgRC8Bf+Bj4IGgcC+QycQSovsvJ0PbPc9tMVHYGc/h/dI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30339},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"89eff1633735f4669156dd0b2d093697f458aea7","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-meta-charset-utf-8"},"_npmVersion":"8.14.0","description":"hint for best practices related to the meta charset","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@hint/parser-html":"^3.1.4","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@hint/utils-create-server":"^3.4.26","@hint/utils-tests-helpers":"^6.5.6","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-meta-charset-utf-8_4.0.22_1687907347127_0.6025846055151991","host":"s3://npm-registry-packages"}},"4.0.23":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-i18n":"^1.0.15","@hint/utils-string":"^1.0.14","@hint/utils-types":"^1.2.1"},"description":"hint for best practices related to the meta charset","devDependencies":{"@hint/parser-html":"^3.1.4","@hint/utils-create-server":"^3.4.27","@hint/utils-tests-helpers":"^6.5.7","@types/node":"^20.1.1","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","copyfiles":"^2.4.1","eslint":"^7.32.0","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","npm-run-all":"^4.1.5","nyc":"^15.1.0","rimraf":"^5.0.0","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["meta-charset-utf-8","meta-charset-utf-8-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-meta-charset-utf-8","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-meta-charset-utf-8","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm run i18n && npm-run-all build:*","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","build:ts":"tsc -b","clean":"rimraf dist","i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:dependencies":"node ../../scripts/lint-dependencies.js","lint:md":"node ../../scripts/lint-markdown.js","test":"npm run i18n && npm run lint && npm run build && npm run test-only","test-only":"nyc ava","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch":"npm run build && npm-run-all --parallel -c watch:*","watch:assets":"npm run build:assets -- -w --no-initial","watch:test":"ava --watch","watch:ts":"npm run build:ts -- --watch"},"version":"4.0.23","_id":"@hint/hint-meta-charset-utf-8@4.0.23","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/hint.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-tWmpM/A5njyHY0tXxVbeATQks2ofAIz0/aCSdz3q2dO66U9WAWwm3k7RaFUjmVcvCBhvOUmSzsj6vnMwyA58cw==","shasum":"c384921688b12fe72b7a04d5328b9a623d69b1b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.23.tgz","fileCount":13,"unpackedSize":30339,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICPRObl7g4gx8ZB/WGHtoWaNhyQf91tqtfhupvqtmbtlAiEAiIAJ/hZr4OhJ4Nw8nLOOoc5jSQrjPLnuje1TatdLork="}]},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hint-meta-charset-utf-8_4.0.23_1724949372999_0.2345359902088866"},"_hasShrinkwrap":false}},"name":"@hint/hint-meta-charset-utf-8","time":{"created":"2018-07-17T20:33:41.020Z","modified":"2024-08-29T16:36:13.494Z","1.0.0-beta.0":"2018-07-17T20:33:41.192Z","1.0.0":"2018-08-06T22:34:13.059Z","1.0.1":"2018-08-10T22:51:53.471Z","1.0.2":"2018-09-06T22:33:54.202Z","1.0.3":"2018-10-02T23:26:09.743Z","1.0.4":"2018-10-31T23:41:39.611Z","2.0.0":"2018-11-06T00:09:11.891Z","2.1.0":"2018-11-28T07:08:08.803Z","2.1.1":"2019-01-02T21:03:42.887Z","3.0.0":"2019-01-15T22:09:10.908Z","3.0.1":"2019-02-22T17:22:35.940Z","3.1.0":"2019-05-15T02:53:46.236Z","3.1.1":"2019-05-15T04:23:56.632Z","3.1.2":"2019-05-23T15:49:37.140Z","3.2.0":"2019-07-23T16:32:04.493Z","3.2.1":"2019-07-24T21:19:24.176Z","3.2.2":"2019-07-30T19:30:20.862Z","3.2.3":"2019-08-06T20:41:45.797Z","3.2.4":"2019-08-16T02:39:14.555Z","3.2.5":"2019-08-29T15:54:01.984Z","3.2.6":"2019-09-11T22:31:18.598Z","3.2.7":"2019-09-19T18:32:23.791Z","3.2.8":"2019-09-24T19:30:54.641Z","3.2.9":"2019-09-26T21:19:30.741Z","3.2.10":"2019-10-16T19:44:48.627Z","3.2.11":"2019-10-29T22:29:44.840Z","3.3.0":"2019-12-03T01:02:08.824Z","3.3.1":"2019-12-05T00:22:34.105Z","3.3.2":"2020-03-18T21:55:53.914Z","3.3.3":"2020-04-15T19:19:04.445Z","4.0.0":"2020-05-18T22:16:08.780Z","4.0.1":"2020-07-27T20:37:33.858Z","4.0.2":"2020-08-24T21:56:00.260Z","4.0.3":"2020-11-11T20:42:23.735Z","4.0.4":"2021-02-04T19:30:20.672Z","4.0.5":"2021-02-06T00:42:29.889Z","4.0.6":"2021-06-09T19:10:57.608Z","4.0.7":"2021-10-21T16:19:52.669Z","4.0.8":"2021-10-29T19:56:50.261Z","4.0.9":"2021-11-04T18:29:39.897Z","4.0.10":"2021-11-15T20:09:43.217Z","4.0.11":"2022-03-10T18:41:07.694Z","4.0.12":"2022-04-26T22:11:08.309Z","4.0.13":"2022-05-04T01:43:42.989Z","4.0.14":"2022-06-06T22:27:32.847Z","4.0.15":"2022-06-13T20:39:31.746Z","4.0.16":"2022-07-08T15:59:01.039Z","4.0.17":"2022-07-22T22:59:40.159Z","4.0.18":"2022-09-06T16:40:48.934Z","4.0.19":"2022-10-06T19:44:11.348Z","4.0.20":"2023-03-16T22:50:16.566Z","4.0.21":"2023-06-09T16:29:35.684Z","4.0.22":"2023-06-27T23:09:07.320Z","4.0.23":"2024-08-29T16:36:13.232Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}