{"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":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"4.2.27"},"description":"hint for media types (f.k.a. MIME types) related best practices","readme":"# Correct `Content-Type` header (`content-type`)\n\n`content-type` warns against not serving resources with the\n`Content-Type` HTTP response header with a value containing\nthe appropriate media type and charset for the response.\n\n## Why is this important?\n\nEven though browsers sometimes [ignore][server configs] the value of\nthe `Content-Type` header and try to [sniff the content][mime sniffing\nspec] (see also: [`X-Content-Type-Options` hint][x content type options]),\nit’s indicated to always send the appropriate media type and\ncharset for the response as, among other:\n\n* the media type defines both the data format and how that data is intended\n  to be processed by browsers\n\n* not sending the appropriate `charset`, where appropriate, may\n  [prevent things from being rendered correctly][incorrect rendering]\n  thus creating a bad user experience (see also:\n  [`meta-charset-utf-8` hint][meta charset hint])\n\n* javascript resources served with the wrong media type [may be blocked][blocked\n  resources]\n\n## What does the hint check?\n\nThe hint checks if responses include the `Content-Type` HTTP response\nheader and its value contains the appropriate media type and charset\nfor the response.\n\n### A note about `application/javascript`\n\nThis hint recommends using a `Content-Type` of `text/javascript` for\nJavaScript resources as [noted in the HTML standard][html js mime].\nHowever this hint also allows `application/javascript` because that\nvalue was previously recommended by the IETF in [RFC 4329][rfc 4329].\nRFC 4329 has [an active draft proposed][ietf js mime draft] to also\nrecommend `text/javascript` in the future.\n\nSee the section\n[Can the hint be configured](#can-the-hint-be-configured) below for an\nexample of how to require a specific `Content-Type` value for\nJavaScript resources if desired.\n\n### Examples that **trigger** the hint\n\n`Content-Type` response header is not sent:\n\n```text\nHTTP/... 200 OK\n\n...\n```\n\n`Content-Type` response header is sent with an invalid value:\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: invalid\n```\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: text/html;;;\n```\n\n`Content-Type` response header is sent with the wrong media type:\n\nFor `/example.png`\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: font/woff2\n```\n\n`Content-Type` response header is sent with an unofficial media type:\n\nFor `/example.js`\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: application/x-javascript; charset=utf-8\n```\n\n`Content-Type` response header is sent without the `charset` parameter\nfor response that should have it:\n\nFor `/example.html`\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: text/html\n```\n\n### Examples that **pass** the hint\n\nFor `/example.png`\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: image/png\n```\n\nFor `/example.js`\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: text/javascript; charset=utf-8\n```\n\n## How to configure the server to pass this hint\n\n<!-- markdownlint-disable MD033 -->\n<details><summary>How to configure Apache</summary>\n\nBy default Apache [maps certain filename extensions to specific media\ntypes][mime.types file], but depending on the Apache version that is\nused, some mappings may be outdated or missing.\n\nFortunately, Apache provides a way to overwrite and add to the existing\nmedia types mappings using the [`AddType` directive][addtype]. For\nexample, to configure Apache to serve `.webmanifest` files with the\n`application/manifest+json` media type, the following can be used:\n\n```apache\n<IfModule mod_mime.c>\n    AddType application/manifest+json   webmanifest\n</IfModule>\n```\n\nThe same goes for mapping certain filename extensions to specific\ncharsets, which can be done using the [`AddDefaultCharset`][adddefaultcharset]\nand [`AddCharset`][addcharset] directives.\n\nIf you don't want to start from scratch, below is a generic starter\nsnippet that contains the necessary mappings to ensure that commonly\nused file types are served with the appropriate `Content-Type` response\nheader, and thus, make your web site/app pass this hint.\n\n```apache\n# Serve resources with the proper media types (f.k.a. MIME types).\n# https://www.iana.org/assignments/media-types/media-types.xhtml\n\n<IfModule mod_mime.c>\n\n  # Data interchange\n\n    # 2.2.x+\n\n    AddType text/xml                                    xml\n\n    # 2.2.x - 2.4.x\n\n    AddType application/json                            json\n    AddType application/rss+xml                         rss\n\n    # 2.4.x+\n\n    AddType application/json                            map\n\n  # JavaScript\n\n    # 2.2.x+\n\n    # See: https://html.spec.whatwg.org/multipage/scripting.html#scriptingLanguages.\n    AddType text/javascript                             js mjs\n\n\n  # Manifest files\n\n    # 2.2.x+\n\n    AddType application/manifest+json                   webmanifest\n    AddType text/cache-manifest                         appcache\n\n\n  # Media files\n\n    # 2.2.x - 2.4.x\n\n    AddType audio/mp4                                   f4a f4b m4a\n    AddType audio/ogg                                   oga ogg spx\n    AddType video/mp4                                   mp4 mp4v mpg4\n    AddType video/ogg                                   ogv\n    AddType video/webm                                  webm\n    AddType video/x-flv                                 flv\n\n    # 2.2.x+\n\n    AddType image/svg+xml                               svgz\n    AddType image/x-icon                                cur\n\n    # 2.4.x+\n\n    AddType image/webp                                  webp\n\n\n  # Web fonts\n\n    # 2.2.x - 2.4.x\n\n    AddType application/vnd.ms-fontobject               eot\n\n    # 2.2.x+\n\n    AddType font/woff                                   woff\n    AddType font/woff2                                  woff2\n    AddType font/ttf                                    ttf\n    AddType font/collection                             ttc\n    AddType font/otf                                    otf\n\n\n  # Other\n\n    # 2.2.x+\n\n    AddType text/vtt                                    vtt\n\n</IfModule>\n\n# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n# Serve all resources labeled as `text/html` or `text/plain`\n# with the media type `charset` parameter set to `utf-8`.\n#\n# https://httpd.apache.org/docs/current/mod/core.html#adddefaultcharset\n\nAddDefaultCharset utf-8\n\n# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n# Serve the following file types with the media type `charset`\n# parameter set to `utf-8`.\n#\n# https://httpd.apache.org/docs/current/mod/mod_mime.html#addcharset\n\n<IfModule mod_mime.c>\n    AddCharset utf-8 .appcache \\\n                     .atom \\\n                     .css \\\n                     .js \\\n                     .json \\\n                     .manifest \\\n                     .map \\\n                     .mjs \\\n                     .rdf \\\n                     .rss \\\n                     .vtt \\\n                     .webmanifest \\\n                     .xml\n</IfModule>\n```\n\nNote that:\n\n* The above snippet works with Apache `v2.2.0+`, but you need to have\n  [`mod_mime`][mod_mime] [enabled][how to enable apache modules]\n  in order for it to take effect.\n\n* If you have access to the [main Apache configuration file][main\n  apache conf file] (usually called `httpd.conf`), you should add\n  the logic in, for example, a [`<Directory>`][apache directory]\n  section in that file. This is usually the recommended way as\n  [using `.htaccess` files slows down][htaccess is slow] Apache!\n\n  If you don't have access to the main configuration file (quite\n  common with hosting services), add the snippets in a `.htaccess`\n  file in the root of the web site/app.\n\nFor the complete set of configurations, not just for this rule, see\nthe [Apache server configuration related documentation][apache config].\n\n</details>\n<details><summary>How to configure IIS</summary>\n\nBy default IIS [maps certain filename extensions to specific media\ntypes][mime.types iis], but depending on the IIS version that is\nused, some mappings may be outdated or missing.\n\nFortunately, IIS provides a way to overwrite and add to the existing\nmedia types mappings using the [`<mimeMap>` element under <staticContent>][mimeMap].\nFor example, to configure IIS to serve `.webmanifest` files with the\n`application/manifest+json` media type, the following can be used:\n\n```xml\n<staticContent>\n    <mimeMap fileExtension=\"webmanifest\" mimeType=\"application/manifest+json\"/>\n</staticContent>\n```\n\nThe same `element` can be used to specify the charset. Continuing with\nthe example above, if we want to use `utf-8` it should be as follows:\n\n```xml\n<staticContent>\n    <mimeMap fileExtension=\"webmanifest\" mimeType=\"application/manifest+json; charset=utf-8\"/>\n</staticContent>\n```\n\nIf you don't want to start from scratch, below is a generic starter\nsnippet that contains the necessary mappings to ensure that commonly\nused file types are served with the appropriate `Content-Type` response\nheader, and thus, make your web site/app pass this hint.\n\n**Note:** the `remove` element is used to make sure we don't use IIS defaults\nfor the given extension.\n\n```xml\n<configuration>\n    <system.webServer>\n        <staticContent>\n            <!-- IIS doesn't set the charset automatically, so we have to override some\n                 of the predefined ones -->\n\n            <!-- Data interchange -->\n            <mimeMap fileExtension=\".json\" mimeType=\"application/json; charset=utf-8\"/>\n            <mimeMap fileExtension=\".map\" mimeType=\"application/json; charset=utf-8\"/>\n            <mimeMap fileExtension=\".rss\" mimeType=\"application/rss+xml; charset=utf-8\"/>\n            <mimeMap fileExtension=\".xml\" mimeType=\"text/xml; charset=utf-8\"/>\n\n            <!-- JavaScript -->\n            <!-- https://html.spec.whatwg.org/multipage/scripting.html#scriptingLanguages -->\n            <mimeMap fileExtension=\".js\" mimeType=\"text/javascript; charset=utf-8\"/>\n            <mimeMap fileExtension=\".mjs\" mimeType=\"text/javascript; charset=utf-8\"/>\n\n            <!-- Manifest files -->\n            <mimeMap fileExtension=\".appcache\" mimeType=\"text/cache-manifest; charset=utf-8\"/>\n            <mimeMap fileExtension=\".webmanifest\" mimeType=\"application/manifest+json; charset=utf-8\"/>\n\n            <!-- Media files -->\n            <mimeMap fileExtension=\".f4a\" mimeType=\"audio/mp4\"/>\n            <mimeMap fileExtension=\".f4b\" mimeType=\"audio/mp4\"/>\n            <mimeMap fileExtension=\".m4a\" mimeType=\"audio/mp4\"/>\n            <mimeMap fileExtension=\".oga\" mimeType=\"audio/ogg\"/>\n            <mimeMap fileExtension=\".ogg\" mimeType=\"audio/ogg\"/>\n            <mimeMap fileExtension=\".spx\" mimeType=\"audio/ogg\"/>\n\n            <mimeMap fileExtension=\".mp4\" mimeType=\"video/mp4\"/>\n            <mimeMap fileExtension=\".mp4v\" mimeType=\"video/mp4\"/>\n            <mimeMap fileExtension=\".mpg4\" mimeType=\"video/mp4\"/>\n            <mimeMap fileExtension=\".ogv\" mimeType=\"video/ogg\"/>\n            <mimeMap fileExtension=\".webm\" mimeType=\"video/webm\"/>\n            <mimeMap fileExtension=\".flv\" mimeType=\"video/x-flv\"/>\n\n            <mimeMap fileExtension=\".cur\" mimeType=\"image/x-icon\"/>\n            <mimeMap fileExtension=\".ico\" mimeType=\"image/x-icon\"/>\n            <mimeMap fileExtension=\".svg\" mimeType=\"image/svg+xml; charset=utf-8\"/>\n            <mimeMap fileExtension=\".svgz\" mimeType=\"image/svg+xml\"/>\n            <mimeMap fileExtension=\".webp\" mimeType=\"image/webp\"/>\n\n\n            <!-- Font files -->\n            <mimeMap fileExtension=\".eot\" mimeType=\"application/vnd.ms-fontobject\"/>\n            <mimeMap fileExtension=\".otf\" mimeType=\"font/otf\"/>\n            <mimeMap fileExtension=\".ttc\" mimeType=\"font/collection\"/>\n            <mimeMap fileExtension=\".ttf\" mimeType=\"font/ttf\"/>\n            <mimeMap fileExtension=\".woff\" mimeType=\"font/woff\"/>\n            <mimeMap fileExtension=\".woff2\" mimeType=\"font/woff2\"/>\n\n            <!-- Others -->\n            <mimeMap fileExtension=\".css\" mimeType=\"text/css; charset=utf-8\"/>\n            <mimeMap fileExtension=\".html\" mimeType=\"text/html; charset=utf-8\" />\n            <mimeMap fileExtension=\".txt\" mimeType=\"text/plain; charset=utf-8\" />\n            <mimeMap fileExtension=\".vtt\" mimeType=\"text/vtt; charset=utf-8\"/>\n        </staticContent>\n\n        <!-- This is needed only if you are serving .svgz images -->\n        <outboundRules>\n            <rule name=\"svgz-content-enconding\" enabled=\"true\">\n                <match serverVariable=\"RESPONSE_Content_Encoding\" pattern=\".*\" />\n                <conditions>\n                    <add input=\"{REQUEST_Filename}\" pattern=\"\\.svgz$\" />\n                </conditions>\n                <action type=\"Rewrite\" value=\"gzip\" />\n            </rule>\n        </outboundRules>\n    </system.webServer>\n</configuration>\n```\n\nNote that:\n\n* The above snippet works with IIS 7+.\n* You should use the above snippet in the `web.config` of your\n  application.\n\nFor the complete set of configurations, not just for this rule,\nsee the [IIS server configuration related documentation][iis config].\n\n</details>\n\n<!-- markdownlint-enable MD033 -->\n\n## Can the hint be configured?\n\nYou can overwrite the defaults by specifying custom values for the\n`Content-Type` header and the regular expressions that match the URLs\nfor which those values should be required.\n\n`<regex>: <content_type_value>`\n\nE.g. The following hint configuration will make `webhint` require\nthat all resources requested from a URL that matches the regular\nexpression `.*\\.js` be served with a `Content-Type` header with the\nvalue of `application/javascript; charset=utf-8`.\n\nIn the [`.hintrc`][hintrc] file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"content-type\": [\"error\", {\n            \".*\\\\.js\": \"application/javascript; charset=utf-8\"\n        }],\n        ...\n    },\n    ...\n}\n```\n\nNote: You can also use the [`ignoredUrls`][ignoring domains]\nproperty from the `.hintrc` file to exclude domains you don’t control\n(e.g.: CDNs) from these checks.\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        \"content-type\": \"error\",\n        ...\n    },\n    \"parsers\": [...],\n    ...\n}\n```\n\n**Note**: The recommended way of running webhint is as a `devDependency` of\nyour project.\n\n## Further Reading\n\n* [Setting the HTTP charset parameter](https://www.w3.org/International/articles/http-charset/index)\n\n<!-- Link labels: -->\n\n[blocked resources]: https://www.fxsitecompat.com/en-CA/docs/2016/javascript-served-with-wrong-mime-type-will-be-blocked/\n[html js mime]: https://html.spec.whatwg.org/multipage/infrastructure.html#dependencies:mime-type\n[ietf js mime draft]: https://tools.ietf.org/html/draft-ietf-dispatch-javascript-mjs\n[incorrect rendering]: https://www.w3.org/International/questions/qa-what-is-encoding\n[mime sniffing spec]: https://mimesniff.spec.whatwg.org/\n[rfc 4329]: https://tools.ietf.org/html/rfc4329\n[server configs]: https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Configuring_server_MIME_types\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n\n<!-- Apache links -->\n\n[addcharset]: https://httpd.apache.org/docs/current/mod/mod_mime.html#addcharset\n[adddefaultcharset]: https://httpd.apache.org/docs/current/mod/core.html#adddefaultcharset\n[addtype]: https://httpd.apache.org/docs/current/mod/mod_mime.html#addtype\n[apache config]: https://webhint.io/docs/user-guide/server-configurations/apache/\n[apache directory]: https://httpd.apache.org/docs/current/mod/core.html#directory\n[how to enable apache modules]: https://github.com/h5bp/server-configs-apache/tree/7eb30da6a06ec4fc24daf33c75b7bd86f9ad1f68#enable-apache-httpd-modules\n[htaccess is slow]: https://httpd.apache.org/docs/current/howto/htaccess.html#when\n[main apache conf file]: https://httpd.apache.org/docs/current/configuring.html#main\n[mime.types file]: https://github.com/apache/httpd/blob/trunk/docs/conf/mime.types\n[mod_mime]: https://httpd.apache.org/docs/current/mod/mod_mime.html\n\n<!-- IIS links -->\n\n[iis config]: https://webhint.io/docs/user-guide/server-configurations/iis/\n[mime.types iis]: https://support.microsoft.com/en-us/help/936496/description-of-the-default-settings-for-the-mimemap-property-and-for-t\n[mimeMap]: https://docs.microsoft.com/en-us/iis/configuration/system.webserver/staticcontent/mimemap\n[x content type options]: https://webhint.io/docs/user-guide/hints/hint-x-content-type-options/\n[meta charset hint]: https://webhint.io/docs/user-guide/hints/hint-meta-charset-utf-8/\n[ignoring domains]: https://webhint.io/docs/user-guide/configuring-webhint/ignoring-domains/\n","repository":{"directory":"packages/hint-content-type","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-content-type","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","content-type","content-type-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"7ff31bafef51d54bbd063630dbe70eb41c2343d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-8NNB7zJQ0WNaoUNB2ezPhOc3Jgo33A3x73NaQM0YNXFyH41bMkdhmzgW7NqsWEm/+0yPSGASjJ4ZI7LA8XMB4g==","signatures":[{"sig":"MEYCIQDrmGJUEFClk7YU+OaEnC3e4rxTJJwMZ/GRACOizrBLZwIhAPVWcip/l/S8N9qUJj94tfTQ4n51eil4Yedn9N7NkNtu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTSn7CRA9TVsSAnZWagAActYP/jOPU75eoZmN3E7XD1YG\nA1QV577xNBzcFv/Z7gdNr7kYu6CaoyUUGuvKXQ7FmvR/9ZnM5tZypHLgxSv2\nwjMkW9HIo/gRRh9V5eUvrhiDqUz4PICAjgolcytx5IbXvZQiba2TPAdW/kRO\n+EZ2lvCM2qrx9tH125puhUBqVZmvHtOYZSBpzbtlEzWhl5xZA1JmxQzuOwa2\nC7FA8LHQgyfY08zTQLZ/rGeClrraZEppLojVGNtHfKBbmJi4jF745Nmh6bXv\nE+jVynodN4vN+vYKA36WBjuDN1tiGZgP9unxfkoZ+KQa2tia5Jog0096CSK7\nipiI7f8+rojn3ybokonfM87dKWjdySjqT7Qiqv7+Q5Njy8eWTN9xXvG3aDn1\n3ETlTIZAVWicn+9DXNAA1E6O0rXWa+Y1XIsURlMH+9eaj34azp8YWrs4YzHx\nuUmVkYt9Hxondn5SEc9IP3D+1mP2VnxZM5ozFySXFGmHchxv7RyevHebBdcP\nZMoSeCHKHZtXRL0ZrYl4HF9mDPOi7VSLpuZB2aIiuaaBFm70sn2lTsgHRrZe\nRpbtbpx6+jqv/LQ//EMTMIEkqb3Dw8C1qrgIx/HRzlQntoUd2NVkjw28/aqo\nVDQz/8h373p1VsC/RRxxtWD6Xy8kgajuUkrKkonOseoFFKrhTSBG5If/PPFH\nC9ss\r\n=9d76\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0-beta.0","eslint":"^5.1.0","rimraf":"^2.6.2","typescript":"^2.9.2","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.11.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^16.0.1","@hint/utils-tests-helpers":"^1.0.0-beta.0"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-content-type_1.0.0-beta.0_1531783675568_0.19899350505652702","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-content-type","version":"1.0.0","keywords":["webhint","webhint-hint","content-type","content-type-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"39c3fc784335023d6a8d6e9ff25e11c957386fd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.0.tgz","fileCount":7,"integrity":"sha512-PjT0jwNZWwMvdersHrffoEb8zSDOj2hugjUYUzNUsUYWzlbQNgzeLLEBTZDai3mnfktHy03nc8Tv4GvFzn8KRQ==","signatures":[{"sig":"MEYCIQCxMoJvVoXkBir+Gv0gzwE1pIXdLGYMQDJRcM0/091L9QIhAOq1eDV/Iy1Fc7VS4VB2ca7KlAWBF5eSwyu1VDvPYgqn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaLt+CRA9TVsSAnZWagAA16oP/2h+dmvEIG6OcoA+Ku1O\nFKuHxVaSSbIAeHzVUI+aomLhnx/qyxlwzlJ9WHXODYbbaYYaVQq0zq2mzKi/\n6y32x6Qxm5RhGO6P2bDG65Y2dwgtiGHcS+RVHzmplh8FzJjpXF/NCaCQWSsv\nWj5Ph7HkCq79kGqCwyvg0WADpCupekwTBHEGeXYaV/z6r3J1Qp79syRq3IzM\nO4xbFS31C/ZtXjpVNK1c3p/bxGM+BUVfCjnNLVXQ/WzSKqcNq72ZW2iv4TQE\n48LCRFI8IO8ApJ0kxs/+NnjL95I2yPMfzXxTzr8runNc0+J+jPRRre90cvLh\nzXnHwaFOSopqCrD+R93S5O4RIps/ysdknshRls7xfppp7WzMjigM9We9iDoH\nU4i3GN+PNvgWphVG7gv2Q/SRdEIbGCZA7LyqKvzI8p4HIikMQo2JJoNdg3ma\nTkX0mj0x1c6iYy5VP5L5Oh61YBb+u+pmHXmPMCUYbA+2XNY5KszoVsfS/0e4\nVD45Y30TMMyHAOxYvtdPqORk6upDuPOjwJszhEgktzalKSBSMsKmqcFgl8sD\n/5Glld0VPWX1q7uJCLGeOihEStQsnqSL3eGRhQDAMEzkxU49P3wOm7jUM3vU\nkWViaLleEOoofx6ezzCH5i9jJwEwf2mmXhX3KKZxau7AfQY5ylae64E0xDYE\nDVDG\r\n=m5a4\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^17.0.1","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-content-type_1.0.0_1533590398055_0.6393316205245188","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-content-type","version":"1.0.1","keywords":["webhint","webhint-hint","content-type","content-type-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"365846149adf8b52fc759ef5f6a6c8aeb7083f58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.1.tgz","fileCount":7,"integrity":"sha512-Nci5fB+1to3k8iRWQTsUMdbVfL8kus2FYZWbSRbgt4/pwm089xFDz1uZ+twi3JsrFS9GP6nVMC8D2w2ixGc+iQ==","signatures":[{"sig":"MEUCIGgbpDVy9NL2ah/bl162W/HztxbZPuPRah7UcBbXYyKGAiEAwNHoh2FlHZ3l3FDcsxN/B1687QCrVRYNU5kKdw1A6zc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbgWLCRA9TVsSAnZWagAAqhsP/3FaxZRZmhsfB6Rjz9Oc\nxezz5dPV0p+Psf5e1yiPAmYFvBEgCEUZz+OsYzeZKURy1oKeXxxMGMcV+nhI\neAxoxqI18XqITrk1DIRZD7syS0Oj3qrodF1iTEtfxJ3geWld5ITrmmQdVYop\nQy5mfIVrulVY2xYawmGDVGDp4ztLTXwmETwQjmllqb3oaJ1E12RYkStevz4X\nBCh/fF70LGck2gV3MeRVCpQnLpSMn64yEUTRMhxj3SgWNkVhuOhOfkQbplOu\nIRPkn1coC09aRUIriRyICjIdvJXTPtJ/8pKsCBAyqg0ro7V4SQ24I+iVfB/d\n53c/PXEhrfB7VF6ru3J1c5jTryxCXiwFZeixLdS69BxDMVIiQw8Hkx5SWE1v\naGI9OsZkFklBwkvM+HNko6ZQ89U5biex20g9iNf2wMpC2HdqmNUlnejsYWO7\nPlTekslzBmObaqm/ige5kHsObPkQRZKKCjL4ES7O+2gCaz8bWzMw8MO7Af7D\n1+WeQiT1XYmNTwswmAJtavXHIUhGkgZTzct6rYd+2hO8ok8yYvHBlWOII4p8\nI4c1AG9CNq1I6o4Jkqqg6IiRbDMOcBW1wjgPPabFoYE5jKDoitizncGM5NIZ\nKchxcDvsoqC/UDZepr7A90z/cGTdB5FcpO1geyaZYFRSEUQ4aVILuC6QPzJa\n+v9r\r\n=gbTm\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"content-type":"^1.0.4"},"_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-content-type_1.0.1_1533937034470_0.5205271180314182","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-content-type","version":"1.0.2","keywords":["webhint","webhint-hint","content-type","content-type-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"ed3c5eed59ad11ed56c10214f72e6f82e2dff4de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.2.tgz","fileCount":7,"integrity":"sha512-U0U/WZOrHM7jwXBYBgeMeEsKql1h0nNoKOPKqTugjkUKGp4LYytOfqDQCV121cT2xMo58G4FqjvMExuoAHqbCg==","signatures":[{"sig":"MEQCIC3gPEtb2eyLobh7Z65dPTjqB3uE5Hd6Ub4mPuxsNasrAiAIMXCjricOBuEb8fCERtnFHgyB5z6NKHVu47QLdZvcQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35248,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcxjXCRA9TVsSAnZWagAAucMP/RA8ZNEctWetgiExzeOU\nH1osxEN1hAOEdjM1wTqsxgFvXWJXWUJ1bHywqB0YIjYsn8Era/f21Y0DEhIW\np50/9N4g1xLM2MzZiM3FvO+ASj4mL0RPTBHKMFs8eun+OUXXv2oOEL3Jaqa+\n7eRSGNcymPcdEkoylWr4rny93mdGtPQrbbkKThY2CBPXiDvDRZ3vYdQ/zT9S\nYUTU/uLO4rp7a3+mevcUVjH9QoL9MzKnFVrueLbufxKdFFQWApIqM3g9JtlS\nakTyDEehK0vudxSBOGQeI2nQ2QRBwAB65e8LNmeaL9L1CPTM9uYj0jnJ3zbq\njYn6FQaLypqfaNjtQrmk1wdSANbsDP3Wpldv0fwG43dpj2ouk4r+QvcAcYsz\nDca4GBymbpa9mSXpe6p0gDjSFKWjvaRt5eqR0tt9J8sgRcGMMd2CbCo7j7I8\n/18libWuQpJydmDdnSDuuLV8QgCPTYYF7xO8E/OdCuUgY2L03tTKGCIZN2pS\nM1pTPevLcAcfM3trrPhpcPD9IBbAmqq5CGZlm8P+P+UQ8YN+/MxQn6kLFn0X\n76NbkP8k0IiwxrNCi9z2yTRIAv/Haxq5wtq8bQryW0czyddMzE0v3wx20+oY\nP9gftByHCNvRJzvQVBTSkObfVlpHU+5eo9Ih+UfLudfxIbSNjggXxscGiKRX\nb+Ig\r\n=rmgW\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.1.1","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.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-content-type_1.0.2_1534269654706_0.13899250698916332","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-content-type","version":"1.0.3","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"d8c2d587c65812d7d4affa41fcb62fb9372c65ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.3.tgz","fileCount":6,"integrity":"sha512-GWJ0YZ602qhS824fv5IJ0hgqfaqAL99j7Ngy/4ZPLpYslV7PQOfkwwJOsuITbqeGzC8IqHyMqxeLWlIhp2XJPg==","signatures":[{"sig":"MEQCIHnY7I+jNJBTvexb/d39TLP2qBO6486saN0EfcoqZxoQAiAs3vIjXMyBnbecV918n/dzUqL2R7eECbqgVr0EyAiCbw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZbiCRA9TVsSAnZWagAA4fEQAJMqpDIPwoLYW/Vhs0Wd\nNXEbGLo9hMTbF0iYSDvsOP9b+N0+gXKK/xP2PqcTAeeNrX66pw9YrVsDYI2z\nZx37RmOq9p+RG5JWV3UX5vZQioJ2Uuksg87CruTbygy6qBJzJOKkyh6bTjFz\nNwaDDQ2F2bk5zRkoEanJyCIAlZpsGmBB56klmzAqENcKGoPybhr2+ZjTXz5g\naq83m8kNP2NBUG7378ydCaOePTzj9eHvVwU0ILU/5y6D00Nw7O6mJeHG2K9Z\nn7ClHuNccWQk+XX6ZvasypmYjpeGG64K61leXipkShYwpitjSoSrXFMdCTLb\n3yxjPDH5mSRe+kmKk0C9Z4JDQuGgjfCM5auZCY4ozGGRqFZr3g28P7y8bZYM\nM4pfU3YzwJWQ5BFStF77XUR4QIC4piv6x1x1A8hfu1mwa8IDqxL6665GYeUB\nLNutLcByRpR8xMT1u03A8mZJKC+Nlu6tKKO7KdLhTuLpNbOyNMj+WYQvr+X8\nL2HD4IjmPZTJ86us3OdmSlQCrRg25Z+chwWlZqgRwZs5agsE9SV0aZegzDij\nr8pBSDBo520tvh2kH9ldrMLh8YAE0t0cZNDjVBqPi5XIvx36ZjXHXUWXC3T8\nqfVK1HQuIiWC+DLbhaszQtJTATDx4k3gzKXIgKgzff1w5pvsTjWGSwlKqlIi\nLetZ\r\n=GIwu\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.4.0","dependencies":{"content-type":"^1.0.4"},"_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-content-type_1.0.3_1536268001150_0.68622622746971","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-content-type","version":"1.0.4","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"0e439769847549f70fef58fcf7c8b15d0f9e3542","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-1.0.4.tgz","fileCount":6,"integrity":"sha512-Slj37ra4l6Jiy7WKj6tkIcze+HvTzd+3lj+qDkkWvcpeOIHHB/4YgRifx1QyKc85WyETn/An6IQ+r+piofxVfQ==","signatures":[{"sig":"MEQCIDAhWHdzl4DNzQDhz0H7mybsjt3SVkYMmImOY5Rb4OsdAiARQOJtR3LWSgAZcn155dzoPaz76YALJx8Vqni/0jVZqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2jQbCRA9TVsSAnZWagAATw4P/A97zQeUHlLj39YbJm7u\nLOkAwlMe1elVv/BzYaH9lr+GJhEEYqW7vfkPK6fn80JkKItWG11Z8Y1HZSgv\nQUu9id09lAcVYPqYjtDFP7mb4AZ1W+FkP0sa3NkzLBtgGNNXUiAn03iMmgUY\nuyvXGihMIuyTY21sSKihTmwffQacWxbYg6tPmbPeSlAyL1DixBvL0HTqpzw8\nzp11Thi3qTARetA9RUqf1yZAjjcNCsH+4chkvZ8R5O4gZcL8ZN26ruQGFe5o\nXW8zX/eR/VTo21G34rmsjxepYTQ+hK04dxBv4igkM4xqdSGKOd+vOtgAajve\nwSUk0QXzb8KO9TlNS0Yd5JAQzngzkPpGd6eWo07hH9B9qaI60PTxq9XtzPD2\ncIZ94BHsYF+nmFNw7UXRE3F1P5jxuRG9WZ8dNSPKQe520OYy5F5dyzfnDn0Z\nNXjl7GEKJ8UXEISR1HoWlpXRfnjLsQwkjPG9N8XTKi8FUmiwgvr7eHufzAeW\nRaQr9qUoO8NeptUVRCoe+VQUMsn2SpVBXmTknWcaLe28Lmv269sN6/gAtIKk\nZc1nbbVNrBQDfU+dWofQUa9UGjSskCGlA/UIB4+CPk5dR5DaYIao55O153iL\nd1K8EtguAn/pPcCxQBDdsJOKcNXyt8NUTnLXeoON8OQr/llndEdXoaSUBP8V\nrz8R\r\n=L3v9\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.12.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^3.4.14","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","@types/content-type":"^1.1.2","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-content-type_1.0.4_1541026842230_0.49594808641399935","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-content-type","version":"2.0.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"59673cbc103efabfd23793071a483098a2cc6077","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-2.0.0.tgz","fileCount":6,"integrity":"sha512-5dvK0yZ8A93b/4kXk1pHFbPuGcxaObTmfE2HUTuyZ8SjnUlATc0PwkJV5vYeOt8X50LfEuDEn1wNb97kqhKF7A==","signatures":[{"sig":"MEYCIQDzS2UbQMgmsg5+WeFJzc87mmtnOOYCGu/7b23fMFaAFQIhAL8MPlQN0aLpjjHL4BYgpu10JZF5knbJTCJCZ/EUKQLg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4NVDCRA9TVsSAnZWagAAQ+MP+wTmLdAUUDHBImZYH7B6\nr80m+iFgRdPFA5qsxSZpraQe3kTqtDhscj4TWN6vMo4Ek9ivFyu6P8Y5zx/W\nk24oVCYPMHJek68Q2nfvf2lRaTTg8bQQWx58TDfnl8fVMJohI8nRnJVE1tsB\nJwqeeXdUXTtGoU2xaQWg/N8nd7F083dTg+3ySPmPQi/nL0S8/YNGayFH6VTn\ndkal96LiYNnRpB7KZkxYpUQCWPRs2UKgVEzN9Upf4M/GWqnK2MdGEZmp8oUz\nyOSn2BWKlN5WzM0lWnJ3WhK9MGsOyaAQ6WcjneXYp63jYHrginy/l1tb7erS\n2hRxXe3rkWGXca6UH1njxMkP5YLalzZvBqA61seOIJkkuSLS61vjv7QW4xGk\njbYjdnKlkoz/E5V9mR1EZptAGCwjQZS1fmPwgMhVNfgcFh5tq9RXaBiPVcbo\n66otsLcSR2UueI/NhdtCgSqnKDMpNjFKdeku788A0j+YgIzNs/INcMteK4uq\n0uaJ9tZDd+KxxNFbMoAefztOm242hPDIq2GbUO8NLYjhYhsX+/uNPwNGDY9a\nGFXV5/Hiu1btfVCM01FRhD0/cTtA6vkyYe9Vix3XqCu00zHs0tmGG5zAfFSl\nmspPKDAct38+uM+tyRzPB610+z4vlgCgQUQYI+seSOLZbga9fuYXFfxorCFv\neVyH\r\n=7dcC\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"11.1.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.0.0","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","@types/content-type":"^1.1.2","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-content-type_2.0.0_1541461314876_0.31168368796759593","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-content-type","version":"2.1.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"7dc8a5d355021cde0e21046443f3b87ef369a58c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-2.1.0.tgz","fileCount":8,"integrity":"sha512-yzXZGaxWW67ATHJsnEjNmnjKNfbSfuOb6xVljyZoyFPMTGZLWTCrB2VFDu5+GXcTmBWBlT1MBfDRSlUdr3ajYw==","signatures":[{"sig":"MEYCIQCF5BWGGzpDOTd76yqdVI2x3b0xDO41HP/nucRXg0T9fQIhAP0FvLkSn8U2zOPTyp30jFlj5cnTkyafQvKb0WyvCBpw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/jL8CRA9TVsSAnZWagAAMEEQAINVNR8PXYyCX+EsnkvN\nqv/01kAuok5fBkywJpMhOTEDG4eyNDgUu8spcs6HUffnNDo9Nmkzt33jsQwq\nfVxg5UW1zNdjwjd4egG18mgJcrw8lZXhJi/mhTFR60/6yCi8T9mgg1J2L0iw\no7d7Xn1fkCen0xy/EiQZ6OTxQ+5iy0/2nlPsUdvjpysKKbYts4D9SbgrMoCc\nWkpQT/JYWfVC47ITi+XJM0xz9Wq2hPpYYFjVgeLufXJF2KhlqDLxG4uPhaOk\n55bIAtmOxSr4ZnhVOQPDSwaSIMEMzLEd7nabJbcX+uKcA7hl7iLhOJM4kHHD\nWgCR38yl4kRMk0YQyHoPoeY5XJ3vjy5e1S2EnDyCjgJks9OKNsqCEC7NziRc\nrURGsrpDnNBuW3BAvWftTXxfZ1PmyXVTn4yTXL9aHkv1kJaKl6Zo+ftvKxXB\nS3xKxWlhXYwLXWarD1CoxH/ksvd+sNYVf/JKIkT0L3s7vKNWDgD2runqpidF\nhf8fvd+nbn/vj5dp0I414yALQmEYTomNFd+Z10sgmjFf1Z0aM3eplXp6jLfB\nbyzj4I1S3OMS6mE6D88L6azp6bTcH+2ku+RjkeBf+F77yryGUMVOgRTM+jGc\noLIC76n7raGdp9xKtBQtoE3QDMeZ3l8MBEc69nhN7O4K2NT2x279Vx10+T5Y\nLaSd\r\n=btRT\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"11.2.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.0","eslint":"^5.9.0","rimraf":"^2.6.2","typescript":"^3.1.6","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","markdownlint-cli":"^0.13.0","@types/content-type":"^1.1.2","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-content-type_2.1.0_1543385851598_0.6457902478152528","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-content-type","version":"2.1.1","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"e79894d26c378c088d73b4339244da69a9c43275","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-2.1.1.tgz","fileCount":8,"integrity":"sha512-gr4POvyyPZfgIGQKuNjT9nvEMvZr8yeLGkx3VhFfij4FhyctLkvYBMqLkwxqZk5C2Ye/qNOsvJumPcrRXXptvw==","signatures":[{"sig":"MEUCIQDgrLtm+TnQJObmrO46c7tuvNjd0S+IHy8Vi5t8ubvslwIgMvScIjryVZWNB4AY5k8KWvUNPY9PObC+RBj6AR9xyx0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLRHJCRA9TVsSAnZWagAAqcoQAJfPhMPtpgjN8XBd5x6N\ngiIxJ47uBp9b01622HzVWcSU3BjzlQLiGgmlrnEKxqJi3hzuSLxrKWOoXeSz\nwaSsYaRj9C55Vj6WVcQ+zYd/ijH1X9u1XfmIgyi/WMzQ9BT2cwlLoDhQjYkG\nWxvIuarKDFdmi/dm0wZB4dmujWBVLMl80Big8fcjw0h6tAZskOvKwGoiWd95\nDtKhqbDVTQCf0SkE2vfJrwzBCC9d5M4T1/N2aE6IE7kyBJyT+WJRG35mnCnh\nCQfKxb4HZ6mp9KcBj/l2aDSwAj9GISMt+NcPrd3HUS3qwUtF3+/Dfi4UraKr\nQZA2LU0jjHuSqEH9/4DHa32FkLO0ZTL7n6ELKYN3GQu/tc140chnkLnnRZRi\njKJwW3SVjzWc/jmTuayiVHcZV/fa4OceJoKeN+ZBUjm1GlXy2XnkE99uMmiJ\nzyLti8EvKCz2S+EHNpxvGyjT6/hbLkkPwyj/meUE/mEGCP4j7W17OVV/c4MY\nhAFqU3tgbYnFToMVX3n6jLc09pKPbXbrdmkxUYTcPaJYzglem06JBkB88lJi\n/wirJav/YN4IUTLOYxmiOAhzGoiDUiUgKcQErQ+yPJ+znqKKt6dMnwH/Al2W\nP6jrycmdTCgf0v4DqCgMkxr84SdcHzTVM58lYCHKIlPQTT2ypyToFN4QATP2\nHxBv\r\n=QTH9\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"11.3.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.2","eslint":"^5.11.1","rimraf":"^2.6.2","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.2","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-content-type_2.1.1_1546457544986_0.4034030812215117","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-content-type","version":"3.0.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"1b76975e1f1cd4e0b070f1be53218183ed39e06b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-3.0.0.tgz","fileCount":8,"integrity":"sha512-aUBx7fWV5a0m5GE5845c8vc2ITGOgkZqvRFmFZrljKb8G5LVqS69YOcsVj3I3jNuSYIsDDYSMOcvXkf5DnUxTw==","signatures":[{"sig":"MEUCIQDqiSrPTjYmoKnSLkmNNWKhuHjGmaPRRY9h0K1hsa4HYwIgCs7rlghLsAhSbOS/6hnfFNJXGGYUfUphUeneemkuIUo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPlbSCRA9TVsSAnZWagAAB+oP/3hYlgj5sp5njEB0UXyw\nReEGQI6SnMcUN8EIPoWjDOG2lyB+mQyBqDtXkZ+RU44nJ3B3AFbc+c7KNJeJ\nCRSxQ7mFBsQjC0JVX9tFWUN2VRFqV5uDZQ5MvODu7NPe+LfSx5BZ7+OTDtSG\nSaS1whkGwAAc3dDx64iX5EzoNtLPUxrAltuf+v9slARqhcIoOKmdHOu4mt3o\nKegk2N1lVae4Icz4WzeswRK3tjS5o1u7a0nobrnL6kKsX+a21uYnXUsJEEd+\nS5n1F/kSTBU4TmGaK/LyHD0Y7HZz/duSZJf4KRBITGlKmsTmAhJvh+Hfzz/5\n3vckPWHmbFkY5K0u3chE0geTj0Ac6LvcAtBXdJKeTWYjMvrTUmmG+a9kwQv2\no7FKzNFjmcNM1z6fw1/c2yvr/YlxUUt5A7NZvUzuxuvxtLU6YyV3kafsR9Ju\nrNaCINrt0ywIfqaqcqdpTKPlDf9XRfwewBSw3gQ6TBL7uz8WDVKgbcWegHrF\nv2Ue/FYwY+76Nj/D1m3QTAiY6Ii/elZ8beBgNIqYOt/nh2cm2s9DQrpdy6W4\nlqwuOht9yntLX8zC4FTJy1JOyxeDDm9BhlOANOGupHQv9O+nRLPrA9Yd9P+p\nibQAsn3CxD0v8FSPkJRUsB4aoAye1AiiOCSfhlUtpH0MXf3dhKkn2rFh73MU\nDpx+\r\n=BZqn\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"11.2.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.3.0","eslint":"^5.12.0","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.2","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-content-type_3.0.0_1547589329365_0.8923727325903976","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-content-type","version":"3.0.1","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@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":"88cadcf5ba68ab2371cee6d8a2361044b50f047a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-3.0.1.tgz","fileCount":10,"integrity":"sha512-Ao+Xnm/QqAOoFboM6SKBpn4ov7JeqX+Mo4EzZfdll3Ams3gDEvxnUqWM4+h4DBjYJUcdeshON0Ya3IUVKAe6Zw==","signatures":[{"sig":"MEYCIQDNIrZnP+9rYkMitfvi8FcwYZZEGzZ4Qbul0m8XiqYC5AIhAINek5UyDqPGArjjH+m3hYO/ufIXroTdhIpUrNcD5hW2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcb0G9CRA9TVsSAnZWagAAdwIP/0m2Juk8Aunv2/Hk43TJ\nMQp7yhGbvnGNKFM0ZT4BT8Pr+tYnqod95D/nAwG33gwjlyXLEbrmvP8IbR5a\n/gzRSHQjcwqcoymFRYTmJjPNsTRr2mH9seJKKvjW21b5bjKrrGEcWkCq1KDn\n1MRMi7qxG5/D9BItjTAFWsbm9S+uQ+U2ZSsqoIRHuCqeNWL6gtfYpz2BqcG5\nPn8doR+zTZZ8NaQWyzl5wQVkjphdf1DHPztGbg1F59+qyrhhAO0IVSnQiO7u\n8plJzIyB88ij6TrqpYu298dOJN8DAbl5qeTn+HqR/uOx2L8JpcqBnDOjqEAp\nSIfLQL9dUwrBvDZOxJYCx15BWWchBvmRn/oIhYI0HNmBZ2q2eLDUbCUP8ltE\n7T1Nt5P33aus6W1nY/AWrGZwvwREmI+1+0MjganrbkyRMH9YCAAcgu2C3z1A\ntf+vz3iC3XE87e9K2apZmLrpVK2JY7oeK8QFiDOgil5Zq4PGELwStztv/stv\nW0xh3ZrF9jcgXocUqCQaEn09IS1qaSH5MHuYpWBIF16QbrLhD9tiMSyphJ+B\nrrxT+fxcUehoUromZu7E0JonHLFnHD6nknXJ7VdhuVtJ3UQPggaRbqFzqR8A\nKrlyTzop6ihV4xTikT1W/T4uCFcTz7JglKXZdTzQWyLzRgG1g3asPuaWHvG6\npIid\r\n=UbA3\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"11.9.0","dependencies":{"content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.2.1","cpx":"^1.5.0","nyc":"^13.3.0","hint":"^4.4.1","eslint":"^5.14.1","rimraf":"^2.6.3","typescript":"^3.3.3","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_3.0.1_1550795196788_0.4364994243754321","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-content-type","version":"4.0.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"44e6edbb966154b27359ed32345b4fe0c93c97ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.0.0.tgz","fileCount":10,"integrity":"sha512-uq352TitqxPX40uTIf0g9bflzkchSwPmsv3a5UVbk7Egdg0CbpOkxSh4+zvhn5ELqBL/Oc3txJm5nWmcnS+Tfw==","signatures":[{"sig":"MEQCIAZ6hwgliciPCFl0JayuqMbj9QkcP3/6dmISv/kszbWTAiBe8FBiaLbd5w6v/+T736yQ5G67b4ZtruJRV/5deO283w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2347CRA9TVsSAnZWagAAvvYQAJE5B2JQGFBeZI0HDnx1\nV5WXcFXH1T2MKI8C3s5DyZmw6NmSFTPwDzIrxoid0drK4AY8GQJP1VrGxqf7\nz6EyGSrLmEIMOIyRtVsrtBD8pS4d1NeVqtVFYj/1WmhdM73ZlLagxegRG362\nHt4vUwfUSkMfhReSgz1t6YbCKBZUQdqxSPsI5gBMkyQx4Wj5yQzOpv1RdcCT\nhaLp9/TA5RYbcGxDNabMpzAHCzVABO4NvEzGWgr7Q2g8b2bdNxcAwyWYYhmq\n8n1luqXar5/tUMAKp50h/aDTDSPa5OGqFDfLmNhIG2g1cl1Po+UrjXrXwAQy\nLw7dAQFeBercqh3QCnQ9Wd/HN6H7j/enXNv9g+qCa4AncSYTpIgtA2EX5C8t\nA0nO+EbRj0nFTIHuCLwDp76e++qqofbiBZUI4E78Tkp+CgHK6GlbzJ/Lv3+m\nxpyL5P9n+pVr4paAds8mg8PPZc9ua32HPAKEnHfHSVMaM1GZ1bBjrE5F/o+d\nJH3iGRlKmFSGu1ip6bErYwA1qBcpb2gywRrAJ5vZcVoVRtFpUorTxJVqHfnD\npCFjsNIxtY35OVM6Rfjy2x/AczRePSvZa05XUKPsrVQw5nGGjNhRjM1ZJgEH\nCu2PddEq0nG0Pc/iExE645i13CfYWhChsDMbKFqgt6KYAeu34PjVcRsW+jfD\nvA1r\r\n=gSne\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^1.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.0.0_1557888571189_0.41535674619672314","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-content-type","version":"4.0.1","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d6ad445354b043449e4b8634c3955412b472d1c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.0.1.tgz","fileCount":10,"integrity":"sha512-7q2i7taim8Nnjd1JsnyxK+o8Ry6ucM0IAFIoNjcgPnj9m7StpCEYueOnYEzqFGSDA6MTNs/iw/cBWDNL5cR2bA==","signatures":[{"sig":"MEUCIQDM4lWXnlIMUIhGYVW57SPIx+vw3e23voojnlOb/8RLkwIgYXroL1781LxA7hsfSR6nWeB0IEFj1YQV3mSTPqIYsO4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25MLCRA9TVsSAnZWagAA6LIP/jH3SPco2M6cxjEwAshB\nx3ysAB3VQ1MiDJEe3HWMwqrEyVRWoMjdX6anSMWo/W1vVy1zFTFuoRs3U2A7\nyKigzHK7rbbMef4nozPGQ2/MYwMHZkvZyErOYCwTj6yIQ4lpUwYZzOw/9GoH\nTsJo24yy2NM4HKuc8Q7mLfB7lg+QDrvjJoCnTlB59NHA5fgNiJiKgTi8VbA7\nWuGC+YLuMMDiNS4s15at+AZazp1Dl+JV5lqxXDuNDbRzxUG0FtyDl4l1dkPe\nnF0Xj1O37LaF9TCGk/S86i7GyVeb8aoZycFV9hVuBDUWNZ7brevPEb6f6mhn\nvYmhBI8eRcguMi+po7A9/cntgMWRtf48se/4/5ZMXpNFOec2ors2wiXPttqe\nlAWL3BZvUCNI3MQjr9lwj1xLeNEFlfqns3aq4oxNmNnK5Psj30i+eGBSAris\nCqlOAMdsajXa7hMObVQNbRK4swIZISluXQtBHhOyZraZgMBg8ssVn8IbXdHi\nz0KN+RcvOGPTiOxwlgsTZ4c+8hAZuFyWHpLF8yotzP0U2lu3Ny0XdLNuWpRY\nZhMvES0rOCgKVT27B61fBJWXM/PtwpSIYZIy6KnB+zwL83o9/357s2cuT0hq\n39dHzs9I3+E/Ptu1Y6XGakg0Ztq+Avz50tKKEqRVRU1+qQY1/5u/hfGvyo/P\nMGzs\r\n=WZFy\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^2.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.0.1_1557893898838_0.9936750606159177","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-content-type","version":"4.0.2","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ac38f003112a8ad35bf5e870bc28b571b6d57f07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.0.2.tgz","fileCount":10,"integrity":"sha512-OjmQLAt42IRCTG3RCZpqsJaLeUzBzHdt29k4rEeIdLa9/jgv+RJYpwdiwx2h5NCsLnGrxH5I5gWRCk+zBEKsqg==","signatures":[{"sig":"MEUCIF2s0CwBqwYV92dg9VQtgHkxlBUJUxv1NkP0Pg6EsohDAiEAzceG+3ULORU/kLGtJ1BmTC/LSGqr3prGjQ1gcwIErJE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sC6CRA9TVsSAnZWagAAFfAP/0j9c0kP6vmn36Tb2Jcb\ngjEDEX5IluObpyMLAbkrnZZncma+YKu1pKifmsy8j57CTA0SucL/4iQFXNMh\nlfhsf0FeXAMpvc/RtVcD0fI5SYXZjShWO2cu0BPxMNswff8FlW3PCleZk+BS\niRzraP8htCa/PnKWMNRNoIGT6aTKq+7VHRHoyLkpwUPUKM0wfhAVdm5RftjT\nYiwYmqC6yfMoQF9J0NF97OmqXjdMAYFbi21UlHepe3ktXNAROeAPA9ELeYRD\nalPlGNhzom0HL9UQKi1zIlnFe0dZw06sfg3jE9OEn9akvtopgbKcoSe2nJ5r\nG3oyGENlZhku+bepLB7i7gMSDKVEsWr69O4YRcTDftM32CLmS56lH/jQHONT\nXzIe1Jp7Xn9SYfSfg662+5MITSOeyGY/Le6wFQA3fwsNohFrejs7mTO7N/rV\nOZlBXxajFQrZCBWd+dBl9nPbYYvy2wOGfo+jUKllb8Kti4Fcnjdgsz+WuJrk\nH4hOWm6A9KFHtrtVfcgk9/vaL3yAKkxC+hpyX93A/iIz09Ln38vcgms9wCv7\neBybWU3xyjS+rqjobb83wlbG5968Ma20xMjCM/gZBckJ5EYvVO1GtYOc2e+W\nU/Vj/2Cpk828ofYS/HDC1obTy4DzgI3ekjMtO9YwvUSxWXw/Cfb90mA6goTI\nn34E\r\n=F0Is\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.15.1","dependencies":{"@hint/utils":"^2.1.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.0.2_1558626489634_0.2064959622671343","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@hint/hint-content-type","version":"4.1.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e278ccfed0ec3773fe377de9fd0bf449b47b4abb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.0.tgz","fileCount":14,"integrity":"sha512-jEu8wypdmktPxksq96vvw/xSwENnZpi/6/vDjYsp1/rfqbfzTahCIi9K48DJskPtVt9Szy8KIurHO7GdsZrR+w==","signatures":[{"sig":"MEQCHw4D7jlz7akxh/EZFnv5mfNVmQXTq+yhJCHIKBE8ZDwCIQDcbM/v8a7xIPUtwQ2xAyPBRXBCmF9u/uVxdqen7pDmFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzYrCRA9TVsSAnZWagAAv7wP/03QvbPAumoOE9Bdzto8\nDjPSVdrTiKp+I90gwshow+l5NNZPd3MTGR5sGuhQsaD6Qp2l1uSGs5AlWUmL\nkCKEQ7sdMhejenlWax17bDpmPcRhA/xAtPA6F3HIhLsORul/ku1nBfeuiuil\nPb6DLUHI1df/0MV7WQfjir159HRvGbyp9SdwHps0PkzdTfkXYfXaIdj8TAP3\noX3n6sg/oEwGQ9WZvKmVZsmwaUcwQ+RdRGTRRGzn43RjtEK2XzCoF/myMUq7\nHImSl5ULeX37bfbflrV8vV4OacZah7Q7jFaLzskKlV1vNsdI+rXBXoJytMqU\nLe7N5nZxNPGN5rSGXtoJ0PKqC+RgTBBXIhpHJzYlncuDbtv64DkrX/ts0tGe\nnmHzPPTv15sAUHSuuIaDJI0SPbj6X5JEzzpxymnvdpOW3E6zlewVVnuC4G5w\nAhZYMVP/YxwfBRff9/Oljrn7xIUL49I3wHwnyrR2fg4pgWA+CrxpC3XaS/m1\n3SZ4saqT6irx9dE589XbczdpGzwpq6llnYcOHNdsRh6y1FHEdimwLtMM5pMD\nwfMtcM720Q46thHzKndoMtSYmVU5f8z4utWgjT37ZiZ+K2dYAUcCz5WiCyi6\nX7ZrcJAdmeumOOL5dD5D2TNGLMdxqxEuAznrgbXCm7vvNcUY5LOdFVMtAWOn\nJAEW\r\n=8wWC\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.0_1563899435174_0.5960946740032955","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"@hint/hint-content-type","version":"4.1.1","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"119112b353eb907c99430d9b51af1e0309bd6043","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.1.tgz","fileCount":14,"integrity":"sha512-V1vYr54qGtoji9oXKaIAAiLgJMQaQXEQTrC4BcAO19eTXNbiwsVz51jCu4Hmh3R38WGlfWFxO6rbJTsH2KC2Iw==","signatures":[{"sig":"MEQCICiJjGOfkQIS7yI/g5KcvIrXGLQLHzRpKcZIUPAdjNFJAiBe3FVywpnxuJGDdefFL0sj3ahSbPV6uvorEdyCvu519Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMsLCRA9TVsSAnZWagAAUOAP+QEfG6mdomxCW87IC+Yg\nsAO8MZE//1Qq9ENBd3mTqbNVItySfllE1loyiPgMhlDZnDLJn1DNSvhp/EHO\nACizdolXuKATYqHO2uZUlvSPvO7YSM9kSIApdj7XZ2g7AqH4pBc3ZcRwe/K5\nODNui9dvpecd2sDjAdIw26lvQHvcg+bgISjkerMJSrh0yESBC/nhJBs+t5RI\nJamu7P8XdTMv8oY7HdOWD9rG6WA8ZtJW2PSVM4DVNFJt8mjTmSf/p4Hl8Ect\neK6RaEWbUR/TZ9bmdo1MLTm56qLGFJvswJc4haxj7OaYni4hr9Zoe9x0ejpb\nfbEenatc7tbEhA6tpPSB5YVU5mb4vmpJFFHD1E6BbxNfncY/rz9byBxih2Tq\nlnO6mSix3zJfBGZv10ELB4ueU6Erst9tmV1pdY1/sq3oiIxBv3dz1pSnnZ1i\njkGFB7Ubs+KuxO9PDl7Ux2hVkTsCxwdLD3OulLe8YD1A+qzRIvSViDOIWxfY\nFS39QeJR/ERz4xrkNDTMBx9ql8jtCVAxmVGbWWfhveAP7WIbxyw7fzcSNgNZ\nSV0F2VsjtmRbuXW9kf4Ry2pdObyuwHZtBpkFPEZI7YyIabbyRd30cBiBGo9v\nCX58PkFAxqTVYlku/7Xe/Fll7Spqr9BoOkOEkLEsLDxrLSVGOHDcuY2FZHGk\neOfr\r\n=zqRh\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.1_1564003082168_0.30347272286356275","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@hint/hint-content-type","version":"4.1.2","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c3723fab68de0bec04021ae961c5977f2486c400","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.2.tgz","fileCount":14,"integrity":"sha512-t1pS94vK9algXYwfYDVrns79jrIkS9nptJq7R0+8XRbWO2ywRZ1fW8QMkgRrT3O3X/d+ZEEtAev0mn2j6MKDuw==","signatures":[{"sig":"MEUCIDgHLzSVY1aQqxoKpI/i575sWV1cZo2pYFK+odj2uiqoAiEA1+L6GyFQzl3aD2UEv/nAp3TCEUfevZQiiRARIfqs4AY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJqFCRA9TVsSAnZWagAAuFsP/13TA7L9ZGqpPs60vCCr\n0Uns3yqreDOWSlIjDO27Un5rp5qvxa6cnRcTiT7BQT+F9WrnV/St8XUkLlza\nE20k75eT4sEzcC0MoMvlf/VuKfuqOdV+2C2Qgbt/rTrrjgBaZsN5YxZOXZq2\nQ1I6loc979Teq6zpGxOs74pJI/fi0/VU1dcdct+xjj6OCviHZewlx5ome1cZ\nedC7uY4bei11LQsnI8ZCA1lxTynSqogUQt9uIRi4BHdS3K18o0Dp6jH631G/\ncOxypzmnj9R0Ms0cxmMnEO6mwyqG/aD7IWs2Cfvx04gIlRGEmF7Hd0aG7AKL\nUK54a0WkxDDeJUKjJ0ICrt2PXnRW6jCp99obsxZIT8vJbq39w6p3cebcGeJY\naGhrAaF38Oz7H0JAD038fyTwEXbNuaneaaiYzFk9nYwnFoYYiSgDFewGDYyM\nxoaD7ozvc/LNU+nofMIltEIrliyTVyl3QyZOpiuS+eWVFbMddBjH26BZXxQX\n+GZB+u3uf03JQagltrcjl0afsqLjOUJRH1AUoNgdWrihbexmqzY5Z8GNS2E4\nwfBnPAec1eU3le6wIOoOoF3uHzyXy4bAFD0de6V8uEcM5ZKFdjt+OLKbckEO\n/THN7Lvva2MUii2pfICR6BV8Tx7+4QcddDSrOGZNZ9KWqTJJa8VSgJ07hB/N\nh7j8\r\n=831X\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.1","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.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-content-type_4.1.2_1564514948583_0.8667939965039124","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"@hint/hint-content-type","version":"4.1.3","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4c3cc52092d34d0571e4b30e777f8600d5b58e63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.3.tgz","fileCount":14,"integrity":"sha512-MEq63ERymBCiP0aeoggWjAAh8c6ozjFDPp68vAva9cuoqu5TllEq3ejkrxgVoeDq6o2sUy/1ew4FsIi3+YvpoQ==","signatures":[{"sig":"MEQCIFPN7Aw8upHJKlrrDizreONMlcRBeEl0Y6Hpt6vU1shgAiBywQVE/HEVX7zwN4PXt7+w4wC7qACr/isbxqn1S5hh9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56392,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeW5CRA9TVsSAnZWagAAyqMP/2EKZbUs240NekfiRal7\ngyQdTo6+0HcQSbsQ1MPWz1m2XOIOg960csxMBKjbf8slutqfnuMQV0amxMMN\nQu7VXXzELUuuZtr2Hg53vosptJZfqHxvkCihMDnR5xlLScZuZSElJItEE/rz\ntNejjQXvZ/Flvkrmv1YAHuQNNauXJ4fKunV6Ary5+K8IWwZDSJk6qnC+dpxs\nQ/b6A0y/FoDfUcS2gEy68bOVF9gGq/hlb9DbkAXxNGtp9WPHElvAZFZckHN/\nBcSIkRwjBLeApZLz20/qK6XANSL/cZSeqx7fNTtWlGtOzGBjh2IhvjuVIDnp\nAfdeOSiGinMZqpqZipE9gTYBUGCQ9pi31vFEMsjaX7wDGO72cRm3mtlccS9p\n4XkaYgeQ06LAJ5jnFprYUbgcESIp827bp/HWf785j7+NWTgxEu3pb8xcqFlq\n/fDkJ3QfiIozdrLbb7JppQGA/EZOCCqKZyfgfpALYadlAmVd4LNpkGoMXGUE\nWHNeGGR8YVGW8/4e6XgSNHvn3VxnyKAmtmZOcqmvsk8pCyxS3SENfPtoZCeF\nEqDh1I34+jSn+6Gik+B3lnsR16lmetIGyq01Fb6kWW0EkT5dMwYkS7LIo+32\nuOWyPyfFTydDDOGhvSUJBaDPmHl9wieIl2r/5p51L5tvyot9TdK4w2hW6IQQ\n8V0A\r\n=q4Br\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.2","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.3_1565124024734_0.6600783945785826","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"@hint/hint-content-type","version":"4.1.4","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"7a6d772ad9cbd342bfbcecd674ecaa1660d4b98f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.4.tgz","fileCount":14,"integrity":"sha512-B5N+MqJmz1TAiNK8UOPdKm6/OxFbDDUztaXVLBIBGwJqvsjNNGFh59GjZhtLosSCIXu4+Ukz0cU6EACKI7zyVA==","signatures":[{"sig":"MEQCIEWMyVprCOlyLQpu03/4fqUkLlW/7v7z2PbBz3PlkVHYAiBdQGx6iAKXP2KwuNv403OecUmVvuiWSIVBYZ19OSjjqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhcICRA9TVsSAnZWagAAlX4P/2H530n3x1wmmULHGgCz\nMPAwl0a8Yx6Yix3faQBIQDDdJdRbu8X1F0tVYJgi9KBYDr5+0G+N5evMah1d\n6wtDsgIfoNUpFPhaMmdmVYVQG79MDcA2eTODpDyhKzM61mDaa3WC2997s6to\nJCoiAGYLS3SbUEpr7Gy0UO6FWCdGvUJla1s/RZQcNDfg3w6YwcsUXjavrHFn\nPqRNMvTb2TE8hrgCWYCEIKIxD31x6ckSL7ENhCAeTeizAPRVRZgPJvBEVJts\nnvf1hatM5JTIbd4yqFbdOt/reKYgXEIiFvyutQosdOgBl9SmbOwYxtPakBUP\nG3fmINZvQuGl556PeXKVdqy5xbQKLRouUONVURVNlFmYBlEHfymG/fb/3YCg\nypHGF92WngE0jXkb0WShiFA/P9OfMMOeqVBqXJw2BvFiB7eVtaQoIp7Dd0XK\ntq86+b/5WcO2MwxVXXKvFVuOwvY9c6okUHj/bB2uQAXQhytiSaOUnmfGxhCg\nehBzGAhjw2zeyet6Y7xH8Ut7Lwvc89oi/n54e7ytwccNQnmnSExG0Nlq6rkp\nFqz/yC2vFtTeDHhR7Yl74D59bm/kmN0MFY6d83tc1VHL5IfaUDe0jVy417aR\nitM0Cof7SwPm2xaTNeAX2loKd2Af5cMkZOfFaJe0Wv5xZtmReA9vDUMne8Kz\n/7uK\r\n=/atD\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.1","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.4_1565923079925_0.5773257897961865","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"@hint/hint-content-type","version":"4.1.5","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b1ca5195cdc5ba5a767632e6ea088ead67b7b7ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.5.tgz","fileCount":14,"integrity":"sha512-Ci0CLwzis98FCK2pp2tmAVcsz2PU8TiX9EhErV2xXk1+eAPqqlfByN3AgnsB3qme0s1RbbhJjx2dMGALcCDPSQ==","signatures":[{"sig":"MEYCIQDpCvdArkrWmcPQZIu8clMb41S4ObX7OPlUtgR3h/UDhAIhAO46DDpW7+oBVIJJrGAqm1AZ9qi/72XJjiTjW4gNX0Po","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/S1CRA9TVsSAnZWagAAE9sP/jIaicPh2MRidX1b9ID7\nu2tW8ltySYMxCTV75ZYmJkWYnd3oowP19c1HwFIs1K32lxcISIZdzY2oVIq3\ngVEb2YiwWcoENastId4wbJW88cHm0c1/BQIGd8+mY89VIPl7pj/KAwIdEJtJ\nT/u8VFYbWH3IybmRYQU9sRGRZ+ib/eUDshImQJNT4q+mWZzFZj3iVH5LEqqq\nBySjZeEdbn/CSDXSJ18Bjp7yx5yDIfzoKgQW2ITMncWW91UGnSRq5KP9S2mr\nCF2UJ+hOLcqk4MA4/fhs1WA0IY+yzt/kduZpKjUtz89+NqejfQSjGV80heDC\n2bgnnUcfGcu83svMmVyf/H9HiZY7f9y57PGkYVWRHPP/n1Q/lv8uy0kevn5N\nO8IOwcdWCV4HcyP5kcvTSSEBzN+3LGRm0BmKQoBHDo7D0IQ0OTbhCsOi99zR\npBxSR6K9SmG4Od4hJ+hY0TW35jkPZYQjQDlV1iAuiZahA7E/mPnMl6I63/qE\nHaUGoijyO4gwPqoZJwM8QQB3C2zjML92wLYDyCX2EMqMyLJWqfB8Ifs2TycQ\nLirMqXXnN/YEx92snI0lWRtPcs9Ozqe+8c/9ngh5QHpgpnn4tf782xQmcuoR\nDZauoWDRYyeV4Ojr/yNWiuuUVvKkXPYUz4Ud2uLWvlSXGkEkoHgubA4z2Pky\nLriA\r\n=CHNn\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 media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.1.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.5_1567093940254_0.09417880989095795","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"@hint/hint-content-type","version":"4.1.6","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"0f9277f1b36382454cf03450a8b6fd0398405317","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.6.tgz","fileCount":14,"integrity":"sha512-ePfagjYW6Y/n2SN1VcRxwMatnx9S06CT2FCcvVadCqDE4swf0hznXcZCJYXrF2Ik2Eno5KbY2/qCu9XHetDgOA==","signatures":[{"sig":"MEUCIBMv/e310FzAnKxFScaA6ncGR54WEv/qmGkuJfdVvbZlAiEA7hYULqHfLaRJMTtdkQCRIoHVk8qmlpkP5mkM8HFsGew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXVwCRA9TVsSAnZWagAAKDsP/35RZMyUQsS+hkoHdvr+\nQ9fvojyNRBvYxrdefhdSDtmWGFDI+NyTGNAW1VJ0Y/AsDp0RWkHQcCZZRwSM\nJ/m5ZBu7CunnxHzUv4GO1yL+Op9BwFxab/W4mtAe2iDxtMXXek4df8bm6k/8\nNh9lrm7UfDUxMu8gVQl65aPdbO4FkDPB8IFJpbNkWJoUb0Z6D/n/62ORh3yp\nzX/GWIKwh2oTI+lq7lsRug5LjYHN5pR5hC7GUXi/4IIUjGah3eOJT95fkhAH\n//Cv09NXT6ejy/nxVpuYE0VLyj6Wj/3Pb1wf0Usqf4aPikOc43K+d1+zm/Ld\nHgpIyPpX7wx9lGLD0gMXVSbEk1+f1m8PhMUJFa2nqnLHLe61zOEJGvWSFc55\nqLkkrd1lUWvNiGgFqBZJ3Ga9zcf+2Dy3vhkIV7VCtXXw6hsjxW+e3yCX/7od\nZPXvd2OPgmXYJR93pqAAHyRZ/dMpjyt4v+01i0mL982WMl9FSeuUMUFQF2zt\nHYWUqsrl/IwWIqy/TXP2PRAthKJet50GmsKvg3I5SHLVpS8Xdyq+2WfWicCU\n6G0YYYWzz0bU5caqyEAXomj2/67/GCRy5JNDa6ceWghs3Xn8DyrhnRKZEEQL\nnYQ1v1on5x0XbHNTQmRqVLri/xniQ9pe5sv41MBbwIaatlIiok1qG26kczV0\nn1YN\r\n=O8BU\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^4.1.1","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.3","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","@types/content-type":"^1.1.3","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-content-type_4.1.6_1568241008040_0.038267516162378445","host":"s3://npm-registry-packages"}},"4.1.7":{"name":"@hint/hint-content-type","version":"4.1.7","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.7","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"df6bd0da7f00d90c8c64c36a74f48aab44fc745e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.7.tgz","fileCount":14,"integrity":"sha512-OZcrSpU93n4dtPOXC9QUxxW+5cUVbujpkx8z0j6IGJd7Qu6yO1JmQUJDDjeyWt1rVAealH/EMMg7nKq/ZQxNrg==","signatures":[{"sig":"MEQCIAZXEg48lru8fwGUYmx5HRrc0EYpxjt3xbqYNGnrfZIWAiArcQk42dgdG/+edVIG3LdRUxLThxwYVU/2NnVsGnxcjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8l6CRA9TVsSAnZWagAAe1YP/1GCZgcYfLB99hMCChEQ\nBIxhRLTnHCtASO0/8UkBXdv9pF9kJc7NGIZibk1nvN5wBMzAaGO4W1pRsXE7\nas5jC9nTgd/hiWELDPr4ytKu0ZD0yuQ2TovAuKWAxb2RDe7ZSvBsUDvuFDRm\n4h7X8JHYAHB5e5RbQ0AZPHYXjOeHOwwk33yH0RpTLAhdiVY6a87kNqeW/K+d\nS8tc64C4GHepDNpyvt1kXSwWdhumpGoo1v4IpSssqfFhpOdSvddLsjt0Ypqh\nfjj8PFvpu/zajm3cop0wnJGI/mi0/5B2p8C83d06h5GhfZyIOpevlU4rgZx4\nQXZrYv/nF7+qm5IZNPKXHylSJYsp3FnhQAYClXZFHy9lYAJRL0QTYY+JlBdE\nU3TYo1xpTrw7HdCYJ4hr81BTBcBy13gKVB12dp4iQTmkLJji/vEEkfcg++Xd\nzII41kRcytbouAuqYPvLQPTZ3gwaQvDqH6rLVnfuC7xbxgmwhi6rx3Os9GaB\n5Zgnoh8tAaAKWQuY9CI3yODDncuS4cOwNsPp3S9x8hdZKORkvcpMDcclzuXW\nZK92ufzMaTZTRExMNVBNh/KYuTVx8gbngtsEccPCxjD7ppvf8EXPldpmdqQp\nLmpM3N8AzNOwgD1umyFHsPuQY3aA5TEpiRF4DVG37fWmJ7CcgSPVkpsfNCCp\nV1LE\r\n=9zvy\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.4","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.1.7_1568917882055_0.8932649508584316","host":"s3://npm-registry-packages"}},"4.1.8":{"name":"@hint/hint-content-type","version":"4.1.8","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.8","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"307ba2011b228737a1a00fdd7a2fb9a46c343260","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.8.tgz","fileCount":14,"integrity":"sha512-l+1BTZoC0+16p4aB8PiF/e1YV1h9UCvVPDoMuJqiczHveYUhiMp0GIEJA1g7ZwMpPTQ4dC29Z4yhCjJRfY54IQ==","signatures":[{"sig":"MEUCIQDfTI588L+/0IXusT6BrkhV+e++4JqmQMTr4CfvXLmdQAIgA6cH30A/VrH1Z+c1Ptvn1q6wZTftjvr4ewIBYaysXd4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim6tCRA9TVsSAnZWagAAj8oP/i0dB4ZaST3EMEkhwFFn\nr1VVWhIW+UMjD1f8zRTnKloEU8J13ViF2OO7h+tJhUL5PuCLGPwSEJ6w4x3i\nbMFywWhxhyvmBqayPsARdmwWhn7RjExZllu5WJF2lkBS/6T9Pktd/WoJIm88\nZXXtl06RbGeM1wKfQBe40PN99/1tArQNtVYytbaIFMbwrLKwRxN0BDQGY0zR\nN5WieB0aaTMqZ9NBDfxAnCLtRCht70mb1RuofntEArU4Wtg8FWaCOKufA7ez\nlv0yhlLURUlLBcm6v2JB0TfoUmr07hdrWrPyDbKBNlubmklD6j+aXkXVyzzH\nzuPsXPZSdtWNcUc42Fgy7bP8+/7w5a9P+boSMMJ6fImAIoTWwUb+OIRVFvvo\nY3A2+7Y5Hv9MYW23u1Fw9utakMFaCMOvdK/q1+yyHeotVPOSw94MgP1v6vDe\n72MDnYSds8M1RApc4ivhJeTMzKNlVc9Oy3bADmMgHNTrY5PY8UxaagLVxhF4\npwR6RshlQ8Q26oHcOdwoH6Xe/t/kdd7s5lcpgvJspgdRQ1EDCLWpMfAU88k6\nBvFLT7I2oFS/nPoEIs/lVMfYGCmw3IzGn+3X7t/uU93R+O72rWjPyLFMlru4\nkjyK295ML20jQhdyXP3MK7CpN3jK3NEX3MOv4InIyp99TYWGjy0OdLLzlG/r\n0F5n\r\n=5hT1\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.1","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.1.8_1569353389080_0.5996873929516198","host":"s3://npm-registry-packages"}},"4.1.9":{"name":"@hint/hint-content-type","version":"4.1.9","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.9","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4d8b6d76123f38e3e836eb4774b3c33a567c2aa7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.9.tgz","fileCount":14,"integrity":"sha512-nLHdSGiepFqNWE4aOyCW6aBJH0uo/SrYDu/wS95zZR+oH4r3Ix/BRn4dYNNyHHCTfNRDxyVfuJgJv71yN71SHw==","signatures":[{"sig":"MEUCIH9yNdHktUJ+uzALD6qnyi2FQnOCdqMliuH7w7CE6JhxAiEA32hasDEOoaNLZYH3cPKfMNAa6U483R4pw7GciBZGahE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSsjCRA9TVsSAnZWagAAeI8P/2Cvmhzt709Kl6WXyHef\nhhbF+gssHSMuDTDZ5LCkkm5DobbL1xWovlSvyuddmy34F+VGeUClxC2SIjS0\nmQWj+nsdzZowgfv+GkENeOOzfymGbv80iP3IDwbKOIUvKNS2jIGp50qKCjuA\n3oJuRtCH7XeRNR+wHBR+6h0JaB01CFS4zwQ2TCrRZEQB+2RMmCMJkYQJq+ra\nx9zXJBbtuHeTDo+EIkMn67lQNrgSbeyi+LtvBVc/IRR/RxLabnAWkoLe1Xj1\n9VcUw5aff/eSXPm2ptXYQQTMV4a9yxe2BWxroKa5PXvYXyWFEt/bI+nQuP20\niY18r9Ez+YPdPB8mLSkT+HcSR/sHUbRB904jdyDTDkF4udP9t5b6FVk8GhHQ\nTW1t2kSeX6ksxEkOlT9Borhuor+zK0rhOK8Mhczi+SeZjyOMbpnpcDmxyCkY\noaTALdOXY1H58JHWWtx8QBZrf17XD1XKL0uNqDiPm2joXeWNoBYXaDZlPSzC\nPSTt1xT94YSVq2LnpyHdUKNuIe0Xju1KxWDUxBK1dAwd6QbQ+4byGREYDF3h\ngB26+ogm70W5Xoa+tLqFFFLShL4mS1oYBZZUfVQ0Kj7woxfMu0kHNf0gIq5Q\nPnI4DzfcNBrNKlAjr41w47biS6sASQHb+nrqElIQeCtNPbtv80hsELHRVEf5\n4iO9\r\n=UlYF\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.2","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.1.9_1569532706847_0.11622907479412903","host":"s3://npm-registry-packages"}},"4.1.10":{"name":"@hint/hint-content-type","version":"4.1.10","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.10","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"944744e8ca6727309414254a711c59df8d166aa4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.10.tgz","fileCount":14,"integrity":"sha512-aKyDClAlBHtuQg/eQqilFpKa96KFUKid62vnsHoBietchONfsRrwuhcNukDpx3NE1DSmaJGw2bmLWug/MZE01g==","signatures":[{"sig":"MEUCIQDMS3FpAarF+NrNVvfsky8Uy0LTA1gm9oV81rF3TklENgIgKaIWPMzb1km6/RB08WUT8ovsC+LvP06ZV9+I/Jf2H+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59021,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3LuCRA9TVsSAnZWagAA4yIP/0x8NDlUTsrYpr0dBt1k\nj0p0gKJ8LV4bot+rsqQoK4RsHdSdiQuGR4g9wCRD1aqbun/ux3cm1bPtsl+W\niOFXfTnyEfmEbTqmEH7HFaapNmeWR2/m0ZGE756PrvfEBI7If2fomTMZ/Jij\n78MD+mKpcktkU90c7t0f/X8ZA+GVdQ5bNmYEcCfLkU320Hp4FZ9kk1y0t8PP\nJSlMP2JtxPiiM1mj77PVeKk3uaPwiJtp7q/ruxQhxIjtcxD9nvomo6zsdUV6\nwJ5E9D+i6Rz2zMcs1lFgx0Kc1gKlU1LAQkfXiLKr4ntmtc619HlzklAzOZzK\ngUFfiId2Wb4rBhpuHyBd6ucBAQIK5CDu2W8vNaiCwYqkwv+qF8Ksja/JAnql\n/mZIt9kFIzVCJPI9z4+aEP7U4eiq4SvOUUpe4zDz27HpxyUpYxBlRBVsM+4I\njUzNxxgHUtLDgdd1r8PLXOfRc9L/7sML+CcgnYuVk8uxfbiDwhnnByOCq8WL\nyYivMA5OFn5NDxaTMPEZCTY8lhuHU2r3ObciqCX4sskA1Cj/+eIoQLmoFkFv\n5SwVORKewIJyjI/wkzaqkS5lM7YfkJK1pj9RwKT/HJDYF6Gi0kuEDjnE8f3n\nRJhxEz/wEVIhI9sMy+TsJ5KH5zr42EMo467xOKNC1jX0kwC4wMrBwTKxFrmD\nXhsd\r\n=sKBq\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.0.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.1.10_1571255022156_0.8868719081689502","host":"s3://npm-registry-packages"}},"4.1.11":{"name":"@hint/hint-content-type","version":"4.1.11","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.1.11","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"854e791f25c0e7fa5bcb9ace795c3d688157291d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.1.11.tgz","fileCount":14,"integrity":"sha512-bE6YbSvy0l3vdc+sUaWNXodNUMN/tPC3YNDCep9GHwUk6yUSBlLU62s0tQDb7PcaDOQKgmXoMgQ+ZkOm8VvMbg==","signatures":[{"sig":"MEUCIQCEx7PI4PzTxC+vBUR1fCqeWULxD3EPJ3TBK3WccTw3tQIgb/M1XhoF3PVvUymRrIJoRMQDELnbQO6o07Wi6aX/Zig=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59619,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL0cCRA9TVsSAnZWagAAGKEQAImUc1BvqqyF1mPIgFP/\nEyFeHGtMsYHFF4QaFQDQ1S9mdl1g98tikfIk42MD2y4BlasfVjIteg7jsP30\nwsBA6sz19NJa6YvhWVZJu3CqtLehIIHlHr/+o2AOtNMv6y5FMz1ZpGLKdZZ2\nxelVn0HkmoX+SoWddPCQX7J2TY4hLmHaIyY3HXWySCU/s/AiR4UwvTE+h5Rq\nzFHM8xTFg+Lffm4NpydCPf+16arnGiWu7Qhnky7p7DLymnRyjyWyPpGXwMUK\nwbER+4R6r+h/YT5RPiai7VAn44cra7W0doyUKhFuR9/D9IqUq0A8gqIZnO/3\nx98mMpnoWikIaXfGkXDlC0THVnRzq43R9OWAFAJJtUv1dZhBcpkiTUtfr9Df\nldTmy/fVa4cClNggi04EE8ULwZCGtlnFBXTAHprKBlodkKKsuurK7chHPRod\nvCexalFHaf0LY5IB0dt31jgZaD0AjoI0wy42cjsvlRIydrN3pm6DQYjSRQfz\nOBlUdyejlR+po4McNVy9DAHlxvgtvnTX2DUQ+YmTSk7h3KdITdWEb9dhCQfb\nsBB7T+a56eYa38SIDg0ACNYbAFpDmvt7J6I1sYBd0qMYNRovymQkLcZQPTSM\nJ6TEpyCWHK5SP2Dsx64WzN6vBfY9btuenbiA4kiijQJRKO9iGnyChUfyfyxW\nUnzn\r\n=Mjt3\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0","content-type":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.1.11_1572388124338_0.37466456583003227","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@hint/hint-content-type","version":"4.2.0","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"deeecd4a03fb79f0edb5d76c1d97e0d7e90d2aba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.0.tgz","fileCount":14,"integrity":"sha512-UWpbWtE/su1PdeqHErHgUQSUvcpelUhtAvYL3fb4LmSZWICacuuu2Uu9d77Xgs1nymF6HPErmMjjJkwXGNc47g==","signatures":[{"sig":"MEUCICp5uucxjv8H/eVuF2lv0i2Ev5lfz5i0Ontb5IsUM+YaAiEAyembakqL/gr17n34j20oE9cV1frdRp0hpVvMLxkvues=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bPTCRA9TVsSAnZWagAAIlsP/iCkG71BC27Kuvr5ympM\nKrV9bZecJihH2I5Jwk3ztCmayCHQ8ISnAfeRDRjSRUFXe0k5dVqVVZhtVbsr\nSodlBn7dJL5SmS66NBbqc9YiG88iLGa3lbt17mXrcXTTEAYh9sFgg6zCIMBQ\nsuw9Znk11RNjWiDn2dDDQJ5Pc1B0g62h/KdIrLbq339UXU+nA7KVkW+f1eJH\nNXYQ4grUesF+VnH8WmfehpXPfMvr3/x9+6HJ0FpV1ycoh9xnbiXCCwTALqhm\n3mLkwWspcQem4/7sbIdQre9+c2vSAlP2hJeyGL1CrOtJ9dkG2eLG5bp5H2GQ\nsMnM5maOL6ead6jpcnlAfe9Mh17MiVy1mu5zsljQR53wElgUJsy4EzT9FtTc\ni0kOMJrjWorZNgqeugEBLs3+qqFCcquF266rgjcQfc8qLrpvi7o6oLwqi5qA\nd+GK2lXq4Sy4X5kA2JJQw2E5ohFbBgDDP2eLbqO8HphMuEF5i8ckraKe0zpg\nan0jA6tL8FSPgBYbMYfer7J0Yu6kdldHEtJ0q+r4SkDExciWvh743GJvbNfb\nwEOqYCmUZM/6SujhjUhKith9dsoVEc2p08WVaRe6dIthvQKwnsBXjjrE1w/w\nzAEJ8TmHBSff74gX+p3XgpADxM1zyBAD9lv3omD32ImscmB3Lp6+UgiSiiGI\nIUY4\r\n=NX/p\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^7.0.0","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","@hint/utils-network":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.0_1575334867012_0.769618504495237","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"@hint/hint-content-type","version":"4.2.1","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"667d2d6c9a8c0de4c6095db8554793150dc84617","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.1.tgz","fileCount":14,"integrity":"sha512-wjPaQdLq7b9QspTPSdLhZN85Mog+/4wMWv0gV/nasOHOY1l033AX4R0a/a4kqedXyrJtrXg7qgkijxmVTuS0eA==","signatures":[{"sig":"MEYCIQCWEmD0e8RwQtPO+Efi7f0C6e/FfijRQ23VfL0M8rLFqAIhALcYiykYSy+keIgarOpdc3Pm4VO8iMpNNIBgM62hD6Qk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E2JCRA9TVsSAnZWagAAR0UP/jL3iO1f14joDOK6O1Ji\nqdJOX3Fn5j7cujFpuDPbVp4anReDYqvU1gKxMIt3eawlc2f1SV6TcWpfN+2d\nEG+w9zQ1VMB5+yh6N0jhVqqrayxtyKd+qbnfp6y7oyEsK43zPx/5T57PaMfJ\nHHp3O49V4t1nNqzj3DLMsAOEaEyOIIFqfC1dkG7DFhcGuH8QB+2cg2/uGTSl\n813t1iq5tlOFDCWFpFWYH8cLqMx1YgO+O62erIIMANGjq+m4UWgEu2BH5IGI\n0mLFqK0eFVVLpMoGnVU07/4QiFUqBuCJawaULjP89f48KGGxdBcJuTbG+bjG\nXJmemAilLPFKw/YQTWWkh1XBLfuQ7iZCBOnQLNyA8y4Wh+nK4FtRRto20tbo\naTP9VMoU/17AHLogc0npy9fcnox9ppPX4FIRk6sYbBPM85ldQoa4ECYUq8rG\nsLa/gKH2JMKDpRYdvVEGYxs2mO1OIMBj4RMiTCGzmLETjQIZtZ3Ep7LPpkC3\nnkMdcW2O9khL71pOo5na1xq18vt4r5PhTMsXNDgnKnBKrxa78/HrHLkBHb/b\n8oqW0BbFSCPiD13doGypb3UHhrLG/I1eqMy4WI+Vx0G0E1KslQLYkA62fvVb\nl9n69Tiur8lUJD58lqjupvP2pbDHkQS/vGl6xLmpovJJytiUbXEQDm8AzXt4\nl6qu\r\n=NwPp\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-content-type"},"_npmVersion":"6.9.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^7.0.1","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.0","@hint/utils-debug":"^1.0.0","@hint/utils-types":"^1.0.0","@hint/utils-string":"^1.0.0","@hint/utils-network":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.6.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.1_1575505288683_0.7678502041065829","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"@hint/hint-content-type","version":"4.2.2","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f223efbda1fc3ec89eb0f41fb0828cfc7ccf5ebe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.2.tgz","fileCount":14,"integrity":"sha512-95yFBJDipZLgkOzfwTdsnoAVs/+LU/iwwZ5FZRD69Iyq0toNx8OXb67IqMz5Pil4vNXslXL/Pg+kcbbtodxPhw==","signatures":[{"sig":"MEUCIED79BYFz2NkVeCKxBOsRQN35FQJHICzatFjkXYWFCaCAiEAu0eTXOFA7A9UuUmUwD8nlxuTVmtD4XqiAldgl9bxVR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpicCRA9TVsSAnZWagAACdAP/3WmmhgidGKweRbEAQ9m\nwFwDozI+RUwxJnYlfZjKFJbiH00Wu/GH6Wj4acEYhBZ/qWyyolnO3VMq60YT\nay4CHs4U9RD8NHHM3JIBgRjp8ACZ6Lcazu4hm7BNZR5Eyd0PZDFkEs5fW04A\nImgNsGx+uZg1G4QwsAWtBHByUIURV/sUzvFCX6NGPu8H+hNWXamHOsh5GTXd\nhR2hkoMPqKUyD4FvJv7yOEgcllMDZSrD9ptzRh8an5jUmGzPSRjONWkrHKRd\nSqcNrm3dc9waF817e4/n+jZV4UxUSKgv3/7ASeQAdjFRehXFBIG+/Cy4DpoX\nwl4i4m2G/hEJvJqjD2MahZBwQRVstUQwW8MUVm0OT0pVGca7WBgwcYkJvgUB\nzuVIIHORlRuSKDCcU/4V+FWX0CKabtvhcWOD4KXFq4N+/P2Bfdt8Ztgr/whm\nJaYSm5ic9MpLcvbt2S2PlHGGIKyp6XRkFhmVGIEF85iTj2Tn/UZ3omDZumYP\nNWA+3wphU6wwZ9sENhdkV73U2RXMv9ffij7bBhDy3asUQP3c1+VhQU0sHRUT\ngcParQHBE1Rc8ysTcrxUt3A8+KPEz+Ep0OKsX/N/7Ta6ZN4WMwTG5sCWib8O\nknLJUogPogVwNHPh+EZdwqfhdnxqnIPsvAQTeXKfg4mdCqpw+KXKQh1+Ag/U\nCqAr\r\n=+H9V\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-content-type"},"_npmVersion":"6.13.4","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"12.16.1","dependencies":{"@hint/utils":"^7.0.2","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.1","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.1","@hint/utils-network":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.2_1584568476398_0.07797898815087323","host":"s3://npm-registry-packages"}},"4.2.3":{"name":"@hint/hint-content-type","version":"4.2.3","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"200af081f12c3a5f93c69e44640ca73995444f41","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.3.tgz","fileCount":14,"integrity":"sha512-yu3mfNGVJLAQIwWJv4QRhtRzYJ0CLw4yL54sSGg6aJbmSu/gc6Isd+zC4lDCxRzlHv9rcPcCNUBrgmm3wFoUKg==","signatures":[{"sig":"MEUCIQDZLSmdqFA9h5Bia7QXd3kaIA6rDw1uVKeIVg8x3UtijgIgbfP3bQgdLwPehcKaZPTKi//tcL9GY2IxV1Awltl23DA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65745,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel13lCRA9TVsSAnZWagAAg8UP/RcAridZpGBTJmiFZmYY\nO2WN4UyJyXSDHe9tmaugkWwuSMmO2JDZCBEbxCbVKaOahdkiQvWS74/repK5\np1wUJIn1IBXB72VYCqgRIsg/HHTubiQ4O4tMyLp97CmmWRM2JI9n3QLyZGiI\n7+x5J1cD8jBxNyE4rzVddTWOwEOrRQVmJHSFAgtQRGXwPUKAM0hgCNE8F6Vd\n2HNMb41XWf2iP951TSfUObCqh2V6pCbHOfrTV7Onwyif3LBD12dWSWG7inMn\n5iSsdX04vJKK76g2kU7IKVtBbqFDzOgUiv43VW2GjVWjnut+AlxhZHSHGhZY\np0ftYLcN9myGWzZWNEhOEX/wl9ScVAgvjoMQHR+0SrSo5tcshufIsbgikCI+\n+92PEH4p6ZsH9OoTIB1Jrdq+Esd1SrY7seZslCZ+V1HEsBiF6uU2ZkRVemkF\nNFwCh31lBHYAOP//hwQ4iEc9msnlLfTFo1mUTMIJWlfNvglzAZBUJxK5Lrue\nTVXz6WkbecNgP1w9FpzhBmTjwaicwspXljXA8fD7g3xUxlk5ZExDtvdLWd9y\n8heyYybFd9ongTCqH0+bvFgk28oqsU0ooMJiHfqcqQXzzj5xISfJMch4Bjn3\n13J9twsIsV/R7Z3WO+WRZ/jltSW5og4vHS6BSvxP7upmQ7jJAdfGFu73WWQf\neopv\r\n=G6tk\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-content-type"},"_npmVersion":"6.14.4","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"12.16.2","dependencies":{"@hint/utils":"^7.0.3","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.2","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.2","@hint/utils-network":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.3_1586978277273_0.49335262348342357","host":"s3://npm-registry-packages"}},"4.2.4":{"name":"@hint/hint-content-type","version":"4.2.4","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.4","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":"a080bf832b62f3ce54b83f0ec65a1b368ab610bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.4.tgz","fileCount":14,"integrity":"sha512-tenBf0CZHEXFilYplBFLF9OJkP+th/dJGX4GjjvVop3AbG3oLdvLID3sOostYgdZQTBLNyRgKha08IF7CGshew==","signatures":[{"sig":"MEYCIQDGlVe0E4Ggx1ADMB6v+50MMCJOtd22YmYtY5n0UwW5JAIhAKgs+9J2F61ZA9VIA6M0nuwkHfkK0GzK/jN1bkj+WaFg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwjkCRA9TVsSAnZWagAAhz4P/2ifFjqYaoCDHFwUGs9P\nAle4KAkCD4ccl8wCPns5xYgWZkAUMWUdN7h/9gZ9ptcJEdZ3dxwaE/rrjYgj\nXKJ9q2kjvgoO5mqROX0vVuwl8sozHgyINqPP8VxEN1HqJ1RCVWrM7s8RmiQ2\n9lw1J2Qux2CUhbWmQfusrvTKlryq2rT9wIp2S5k1RYW2+Z6jItT2vn/TrN2u\nNri/c7wwFPvijXqIYU9TFcARs6YIGOcrbOnKLx7NwtoShSw+PawLkeqsPnV1\nWCi2zJueJ+ghJpkeVfR+rhnOn2f3j2O6sEVCHxTiHHVs9bXejRg+d/4ikm2A\n9JTlxNfDJTi8ym/ur/Vr2IneKheQvmMdMFuyj8J+ErsD33/pZhFEZAlk3TGP\nH41ZZrtnEf64RcVjFLSQpI5JZgFXFi7IWauLrm4dFjOCVtTO03BE32Qv867v\nVGBcR3+rs/Nd6eju3aZsfMqJcqW2VCoBr8zqy9q4RN8bOp4rrr6sUQDiCov1\nRaOXSDvdJQZklHWVoefsUpjxm0hl+CsWwSxh0QJ6k5D3KshZ4RdF8Kc1UF/B\n/UQubp/ZWGciD1M/TmkMm9rycwOV1S5+mICEX2xhwUNC729g5O0u6dBP86RW\nIgKUnK7RrVU72xTvLO5FrE6U0UvgFpjpbVmoMN4Y71z50ikAt3lGTzfVpn1a\nUXXA\r\n=b8rt\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-content-type"},"_npmVersion":"6.14.4","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils":"^7.0.4","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.3","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.3","@hint/utils-network":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.4_1589840099810_0.05629661667128216","host":"s3://npm-registry-packages"}},"4.2.5":{"name":"@hint/hint-content-type","version":"4.2.5","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.5","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":"d3f03e55e6d230a44d305bae5797181d1cb3df71","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.5.tgz","fileCount":14,"integrity":"sha512-Xw33JleBxvMsfVAAGyYgN7b+hdMK+I9RZrXvjFrPhESCC/F5NC2wwQZyABq+i/zCK2qe689U59ClO7st7nklSw==","signatures":[{"sig":"MEQCIG0YwefOmMLUK3xWdNxmBvBOZ3zbU70pHPSUuhKJfGvdAiBcvpJv7WSGMlndEXwxfUDcObXQC1Xk6Kym0NscQEzy0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzrLCRA9TVsSAnZWagAAHCgP+QALdfEFXpNPkFnBTJCP\nyh9AYDM7XlgvQYBBh47Z8dvOZHLn5sBoHppZPYF1rqD9LJQ3TjrlTXWmGNKx\n86lLTsN3JXpj9+KakyfYTag8dP4ACfGEtFrrsMzCbFuQ5bQPgm3rlE44pbuJ\nvNisGMIMwDoZHhsKmm0GDGzCjzM2hfQ9PP8ZhI3Ohwt0WyIlRoot5FTWYQeK\nvSUi5AT+33xxFjdAuz8yS7P8CxUfcCcJgl1NXX+VyMypgHWoDm/wQDtcidEk\n8YfHMuAG7RJvZfoUCqSO3EU1giZ/gZ/srwhIgx0oUdx+ncYwNrf4vCuylA63\naPkLDr/nfv4TE9B2UojhxZM5OvSvjwOBCLQWH65xFLtkZH6PblLIykCWMrkv\nrXGn0Sq+HHsqlICwJZHP0476Np4jKHlU72adeV5LOghJ21TSuQEZRy1dPLUq\nkeOdBccWzlRyrQsXqcxAvjJGNR8W+RPbC0xuEGQv1JzrFdejPa0HEqsQHMTD\ntW0X3DsLk+E/nyS8WK5jasDu4sEhrRFuxXkCIXEimsC42YwO+Uwh6Zs6/5wn\nnKUGgAHvVctykwlM3HLNdHzmMZ9/zT8FrD0OtfX9tocJsLih06eh6EatkNOj\nSRom3zcJAVr7VTa0vCxXxs0ZZwxegNgzKlxg/SCq8kXAcnZRVHXCX9mp37C0\np/XN\r\n=GtpH\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-content-type"},"_npmVersion":"6.14.4","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils":"^7.0.5","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.4","@hint/utils-debug":"^1.0.1","@hint/utils-types":"^1.0.1","@hint/utils-string":"^1.0.4","@hint/utils-network":"^1.0.5"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^6.8.0","rimraf":"^3.0.2","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.5_1595882187412_0.056936291446090026","host":"s3://npm-registry-packages"}},"4.2.6":{"name":"@hint/hint-content-type","version":"4.2.6","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"470e1e6d4179de3edb37bd37f81e963955bf5368","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.6.tgz","fileCount":14,"integrity":"sha512-ZRnmymKU+Oc+H0cb/oYzAqAut/dn6Dzra4gC2yrtNBwQ2btfBDFgqkS8YaXuKlma4KU7c9zrn3+/0IjamLxQKQ==","signatures":[{"sig":"MEUCIQCfmTURar3EDBI2FYtnp2fpWPfQ1diyd6C2X6bWBXq4ugIgGJzEZaT4Zjm4Vu+NoUi0/jHnZnWGNEEK6dl2LXvON1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDc2CRA9TVsSAnZWagAAPkIP/3t6bU3nr6xTsh09Hedr\nI/OfzsT+9HsgLXzcoWCgLHNLUZDwW/JA8LBPkSNT6h7+CY2VJyi/v7qDBL5Q\nAoZv8ifM5Ikv8EXX1NHl1eZvCjBrptJP/+tsCjEmphw9jEMJLf0Vy3nXEO12\nVGh31SMj/qJ/NwIUNLTVGOqdyUWAxv6R3mgyDvgQhTtarxznWOLfvtplnwAR\nTao4V4E3l6zPrUn6nmokA0jhKLt1HifxxisglMMuiiOnQoCT6Zd/Ctr8HzHx\n3dth6zwFoLLQlRpT38YWiYCeCBRa4Sle3kOanmRFs0JMFeoPEaFsIi3TejNC\nm14eOMtbyeySZlkYRdv5OP87GGfWML8W0hMUFgYRpAmSbGU1JXw8wgRFJ7o4\n3jKJHDTspHB+oVY/qzypsNHpGtxIOOiplIfivXdr6fBF6owJgj1ruVOG+jb7\n99l/eSZCQatuonGVb3s05YS/YMUZfmoRCnS8HPKYrbNajwR/SF6GHOQreq75\nqXL6GoT6hD16pRng3hl+ZIAOZkzdJmkcCXfzHmD0dt2reS/SAQsZ7tc4OUri\nQrJjgRwkAURtsqLSsMQLaJjVTXvxzAQ3P+u08Apk01dJrlscsqd8pJVozLsm\n5O+/CBykkaczMa9zGWhIcjiW82/jkLKBLKqi4rZaWCf+NjnCEtzub8CrT4Qj\nyknf\r\n=ogsm\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-content-type"},"_npmVersion":"6.14.6","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils":"^7.0.6","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.5","@hint/utils-debug":"^1.0.2","@hint/utils-types":"^1.1.0","@hint/utils-string":"^1.0.5","@hint/utils-network":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.6.0","rimraf":"^3.0.2","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@hint/utils-create-server":"^3.4.6","@hint/utils-tests-helpers":"^6.3.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-content-type_4.2.6_1598306101974_0.6448444711060257","host":"s3://npm-registry-packages"}},"4.2.7":{"name":"@hint/hint-content-type","version":"4.2.7","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.7","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":"e775820a9678fed85dc2995acd1838cf7753bd2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.7.tgz","fileCount":14,"integrity":"sha512-4UOnYDmKGZIOh1cvFl/rWtiJqi3NOJieQ71b26Mc+8SbYa2lAY772jrC7B5Ror/jPkZoOXUkbF77PBAEQo/SUA==","signatures":[{"sig":"MEUCICeCgfkS2N7Eow4qRE65GnAtHdEh1Rnmcpni6Da9OFerAiEAoFdQkeue8tPvA3PqF9Bzhr7Wq0PfzZqfoS0ti5C+36E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrExoCRA9TVsSAnZWagAAvaoP/2eGKkb++ARBsWAcYomv\ncxgKCN1CKcqWNRkKf/YpFETQautBNNuCvnOq7AJ18uCF4Oks7ShWqIeleuIE\n/lXuAkJ8C1Z0mSq1Sse9xiMW5ydJuPoA3nM5SxTGb5GmO+wahWv8nTLjHezx\n/FB1kCrTyQ4h8VWJdR2F9Tdod0Ajwe0Lh8r8pE7PXRg9hglZ+R4ZUMRG/QDe\n88NbpNKGJqx1wQlN/SSM3+7bfF9jYM/UWYhuN/r1lFv8PIkJJNSa4rG7iqjw\n1WKFnKqMacfRwiqNh/ntsrl8dhU+3dUEfmX0Tz41mHqXyHdRdJIB2xiAD5Gq\nYUqGdapOw6MqHTw08uKiFoh9FWLzW0iadjCxFPO4XVVybX9T0oFZFKcI/aW6\nKOOFFE+ciJ3adUFpE2N45x7dlbgs7AQ1USyk0kwOCdfzYVoDrUIYam0zjmwn\nS7nus37lJiZp5GKH2SwVjyy9XaZK8zPzQvc8clEJycL6KN91QO2aTqmp0VYA\ne12PmO4wf5XEcWoFvYiwvzX9qXxlmWjVowrs+6s0EgSU3eRpT/yzPHG4SKmr\np0aKXX8pY0c8WO5tdsL2FyuOkzDMjzgx4IuYE/iR/0YSSHOQvG9LHpGVzuKh\napG1HTUh6CItwLaFnyo6JfjD6B71hGAwUfeuPHhDKxoo7XaeujW85sEsqHCH\nkTPF\r\n=f++6\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-content-type"},"_npmVersion":"6.14.6","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils":"^7.0.7","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.6","@hint/utils-debug":"^1.0.3","@hint/utils-types":"^1.1.1","@hint/utils-string":"^1.0.6","@hint/utils-network":"^1.0.7"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.8.1","rimraf":"^3.0.2","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.7_1605127271538_0.30017286965543377","host":"s3://npm-registry-packages"}},"4.2.8":{"name":"@hint/hint-content-type","version":"4.2.8","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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":"95d07b63eb59b14f8327c92e6ae62b3a0a3f5c2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.8.tgz","fileCount":14,"integrity":"sha512-7jCu9DLbF9GCZ9HSYiRtf2gbxV7rG8D82S0kntA6AhIUCM235MvgTgk3KmJNvvtpfb9tYoHj+uarnuXDpkzvJQ==","signatures":[{"sig":"MEUCIQDqhm343xqSKmVlw6kqwp6Ax7OrBbTO62EY/9/881A7NQIgCitYWnfeH3q7Jx3fgxQ5FGOoZpRh+xOikcz1Ta0b00k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEr5CRA9TVsSAnZWagAAaEUP/At6no8CPOwJOmhPayvy\nmePMgW/+0QyUuZDziYB9PC3yg7I/cpwJyqb/EHfEteF8S8UrOFpUKwaj2BbG\nNkSTWcLbGBoiTRG4dpKT/DJB+TesS0lGU8sxZd6a1847Tf54SRfre1Xr+e3q\ngAcKWECMW/ndiqajZAPF3OZAc2KMUgBrL3NlmILFfK3af1KQRm2SMwNdzG1f\nwZw4Rhf5m0AD4iXAAXLRTXd8NiXm2a7UkyqxCHoyDNlVT18n8RUwAmzO/7L+\n8Buz7eCpgTr4cz71aJGwVJzl8r8oNzq3HyEqt6cy+OayhnIOCYRl0ov9Asjm\n4vs2SsqViUkSFRy1rM77iRmulwc0jE7ep3CGjab1wJQEeo9RSXXNVc1DxaQK\n2jM7kl/LJV4f9XSqPxwT3d48p1+IaJUh8Aju8FqD5deRUihGJ/jEaaamcUfU\nNtj6J72RtDzFv3ipo9E8upHmAU4yJZBYs8fpubD/NVPFnaQkg9MMsyMMjXaK\nsDSNXzmqLRPYXE3lJZoKqRu3pPkCUdW2jjhPJygbrKQw/KRN7Ffh32E3P9kE\n5FbYHA07O6RQ26qjpeUNW8HpwsHDjO7WyIkM7Q9WWlhXeqOl0GXjDUG5CHrq\nYbq2XUTaQ81JnvVIPOj8nT3BtTU7Up2urZAFwwyC0lYApkeuxdLGQ7Oj5D1G\niDJ3\r\n=RAlq\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-content-type"},"_npmVersion":"6.14.6","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils":"^7.0.8","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.7","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","@hint/utils-network":"^1.0.8"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.8_1612466937388_0.32959991996975946","host":"s3://npm-registry-packages"}},"4.2.9":{"name":"@hint/hint-content-type","version":"4.2.9","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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":"1aa3b08ca30dc63a205c8f975f64a7e49ba62823","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.9.tgz","fileCount":14,"integrity":"sha512-qmNO3yHmqOBoG3lKN2qWNO9IDxZgvwZg4+h5SwKxZ7Y35LmMlMlhCRPDaAC+u/3SCxaiTTKbwKt4j9p3dTsc1A==","signatures":[{"sig":"MEQCIGClqS3D67jUmcdSeC9AM9gNQJhMXUtidJ3QFi84LiyfAiA9K9Z8/PjU8j97kpUtxO1nzyqoNnxhp8iswFM1kwD72g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeWnCRA9TVsSAnZWagAAQc0P/37qSuIf9+IUz/P1aHXl\n0n7+OoAQ0/WoONjRQKxRep94kW9ZpRcG0pMlT2tfEF32GV9Sf5iA1YcFuon+\nRSaKcGcrkVvk/7a3012wIXKwcAZF7HRCMdU/pHLOqzPlPjwo8EQfDdTucZtw\n7nvE8C3g0wM9vfUz3RXFlKhvUk1nKGNXnuB9BrvURH0dtgdkeedEZfGkyPiL\nfSOZ075prIq7TnKqx1HHwnNdPhAVyHJYYZYjMyYfapCBsDQ8HChA98FzCYXL\nwtrTt9Hyq8TOtgupuxiUknQa+DYck9jlKXlZ38ggKhv2VfmzNZjvwcHtGbVn\n0uhqScNXTmoVnWA+h9Ox/r3W+w6Mrv2dDuXzevY3O9Q5NT9FHfjaOGyAB/C2\ny5YDDAMwVmgoUMTB8vEBmOgdUrkakDxvF3OszzVpze+H8PkKPfsyko9o6abx\n90Wj79btKL9lbJOXzOAHxzCNS38ShnXzzEld33RHmHDtJJjRQoLBMb64MFBi\nFhhi5+exHFGSCioQX45PVCFEWlZIF+40ANDQtuOPhTPEK+QPKzj1Gfriv344\ngW7EN/NtO1oPd/tMlYCDg+klnKLkpVA2dEUjsrC+eybEKgH08TyJK6CABlpQ\n3YKuBtoZB05CMKmyBFHtyugz83JpXCoEOKxD5nqFyovDv1j4Lv/giSWP7FAR\nAq1U\r\n=2xyc\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-content-type"},"_npmVersion":"6.14.6","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils":"^7.0.9","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.7","@hint/utils-debug":"^1.0.4","@hint/utils-types":"^1.1.2","@hint/utils-string":"^1.0.7","@hint/utils-network":"^1.0.9"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","eslint":"^7.17.0","rimraf":"^3.0.2","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.9_1612572071344_0.8771536320704962","host":"s3://npm-registry-packages"}},"4.2.10":{"name":"@hint/hint-content-type","version":"4.2.10","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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":"81f74b6b81e6c14bb902d1bab14789b98bb3cfe2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.10.tgz","fileCount":14,"integrity":"sha512-Qqo0qKgkzuBSjrZQ57gdGVbSwSX3yKHlA5by2UzeN1paUoD5CLs7MdDn1yuqr643y9vXo1rxJYiFkzhxTHH0rg==","signatures":[{"sig":"MEYCIQDjefw8X2BhdW0EbnAdjguUcSXA4PskxImZOjweWQ1y5gIhAKgTAEdD0tlOATbcPmVOBA8kRrSeNrBngyQkgP0vndrS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRIHCRA9TVsSAnZWagAAjSAP/3KGS1n6SDCqKut/BhAT\n29DWfE6H3bwSzmRUxk3PsGSJ+qbYtEqbo3SPsxR48soQfOvqq6ROdKfdzWiD\nu9pjzMBXnCTwdneIpMP+VYBm2t3JcWqdV3MLUpwb6zuYTRzafqzjRqKbzt/y\n7hhsOaCKqwO99ciSGDrP83vjr9hs7iPa5Kiqr+8LE1iJWppQZaj9mDHEvtaN\nZm9c+c9zYs1DnW5p/dTGWFAird9GYOKeGQRygobe+dK6LXr0LxnNDgWJsHEx\nlaCh7PO9rF68c+wsPnhVimiNOo2fjPZalmsIiZtSr19vfYOQZyelrcCqeJqO\nWsYt5uIRwCT6423rWHi1OyPe0Hxjpjm/Q0sWju99Z3yrapLw/yxJqU44RHix\nlt403QjqC0UpQ2y1360tWOzYgjdvPvqF1Lm7jZ2qpyKgsk6w/QKKo2OxY1rx\nrva7Q68O12D3yt/8/tsX99uS2tunCMz+HB+C0kHl5Hbo4l759xEtPdWu7I5E\nN8JwC/6+P19frRYNGQ0OBeEi3FMCh6Hf+fmN3zK4G84BJqAcXUJgLm3zzFvG\nuqq/HOtrcMR5E59S/iJi6buG3UtWeWeSMwVsoSP3zqXOLV5skO7uCHqp7yjt\nYGRe6Tm6+TqBUajcOr/21Hs0aUgpvZCMP09W1nI3Is/3hZpewWwqjtH5GCi+\nswAA\r\n=QTvi\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-content-type"},"_npmVersion":"6.14.12","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"12.22.1","dependencies":{"@hint/utils":"^7.0.10","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.8","@hint/utils-debug":"^1.0.5","@hint/utils-types":"^1.1.3","@hint/utils-string":"^1.0.8","@hint/utils-network":"^1.0.10"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.27.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.3","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-content-type_4.2.10_1623265799313_0.15487593220556595","host":"s3://npm-registry-packages"}},"4.2.11":{"name":"@hint/hint-content-type","version":"4.2.11","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.11","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"54b88678ff4c303fd8ec9313f33e9d4c93946d25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.11.tgz","fileCount":14,"integrity":"sha512-byoLpFJrNE3c4revmysqLjXltwB5Bx4uLLQ+il8INWJZrfkNdUOOF1Te+oE+WmbWpdsRxo8ag983C9NTnvm8gA==","signatures":[{"sig":"MEYCIQDm1mG3Ql6PTlYfPsQRzaa7sVwA+kzMFtFz6bdTd73TpgIhAKGBo6swDYEkO+qeAkHl9FfsTjLrqjp6OIWBk4DM4ZKD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81141},"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-content-type"},"_npmVersion":"6.14.15","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils":"^7.0.11","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.9","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","@hint/utils-network":"^1.0.11"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.11_1634833172633_0.9414273516732066","host":"s3://npm-registry-packages"}},"4.2.12":{"name":"@hint/hint-content-type","version":"4.2.12","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.12","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"cb1dfa2b5c6cf177ab43acd731d524d311d01890","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.12.tgz","fileCount":14,"integrity":"sha512-Tx4FGhwNoDmjhKY5atD+B/cdBz1yx2+Rdj1NUhDPXb7pHcoClTgu0Q/TA2O7Q7Y2n1UzClAJfhxKQzTWBTez/g==","signatures":[{"sig":"MEYCIQD709zhIJBah4bGfm+ehtxDE4qy+d4Ymi/QETmu7qNuJAIhAOEo02/czQm3fELHRLgWvgfs9km2Kh1JJcKl9W9xSL2+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81141},"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-content-type"},"_npmVersion":"6.14.15","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils":"^7.0.11","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.9","@hint/utils-debug":"^1.0.6","@hint/utils-types":"^1.1.4","@hint/utils-string":"^1.0.9","@hint/utils-network":"^1.0.12"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.12_1635537391154_0.7974345012717021","host":"s3://npm-registry-packages"}},"4.2.13":{"name":"@hint/hint-content-type","version":"4.2.13","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.13","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":"2f7d8c41f05d6176d7ba4c95107a2ec880db95ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.13.tgz","fileCount":14,"integrity":"sha512-z3DX0E+PbT3ab/+Dtlax7fO8VwQU7s6gnrjvY6LEUZJhVHvOO8pjR8lqTqZW2RdUSn/V2Yw00oqZbVe/k6ccKQ==","signatures":[{"sig":"MEYCIQCcouFj4k68+Ryc+UoVJ7gBqRCv0NEPue2Ozk+/+SS5iwIhAJV+YqmYwIxhgSF01yMGOndzcDbgNBuexHBWgQ3NcyYL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81408},"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-content-type"},"_npmVersion":"7.5.2","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.18.0","dependencies":{"@hint/utils":"^7.0.12","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.10","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","@hint/utils-network":"^1.0.13"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.13_1636050552297_0.25513685486728743","host":"s3://npm-registry-packages"}},"4.2.14":{"name":"@hint/hint-content-type","version":"4.2.14","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.14","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":"c07589459434accaa429e69fa0cc294214703047","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.14.tgz","fileCount":14,"integrity":"sha512-oKzmB0tYQZd+evRgj3EnL/bYHfJoUhpqqRSX0vOoiuB7uZViK2ncagp+OtvCIdz0Y1vbLeOW1GrJ+bja1tXDPA==","signatures":[{"sig":"MEUCIB/dH2Cjk03DXYqKgZmhZUuiWdgb2JUbCEsdwZlAIyupAiEA153qKZB2XlVOVgrCTLZ+wpIqReuaEUEEI/BXnGX9zi4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KRlCRA9TVsSAnZWagAAsdcP/jF6lXGhmHX1xU3wYhn1\nFRHvO0UVpqsrC7qxiQXZ+qvWuvUlVZsVN/ii2qauW75S7TDmxpLHNVtg2Dtf\nKxt0qYjFMbeuO/vj0L07afCH9++ODvogJ9t7kFYEloNsjqQ4xL87/1gjAqQ1\ntI2UI8dz2HW1nern5QXXGdOpEr8c0pZAJX8o40+sQ0BCffk72IFq4lgODSZH\n9VQmGC8lqIipIK5VEGsZhm30LG2aZTLt8mdjTUnjOyHFg3/R6WcU/TOzs0G5\ns07QXai9QzNqi6MJYirsOtHR7b+7T7Vqz7sCxgWwHVTvil+RTeUi4dNC8gyQ\nnROGFv1mUuBhx4pr8UCk9o7u/CNUbnuYS7mRNTYXJEItIUC0q+54Hd26fRio\naOixtMKb1fcVDNOTiivClLtB3vtbsz6zl/WjVRjRIaIYIuewPtq2w7KIs8wY\n2s3bfiBGHF77BLd0cmkDTjog5jROZXWo/aR0gWvsuKSHUhJHDFhtOAfYjLEw\nHLuT88klcFeHnVCYaOL0E5cbxB8ZmfseOAbbp8+ZJVDwGwC/1ulAzKt7ICHE\neE8EikLSjr/Pf4yo6K88woAp/qBaXIwV183j6DdGD4o/4DuYiafWPbUDfFfW\nGdGTnuyHrzPmJefADuI6mJjK7v9nhXnLejRs4wHhQDDyyk+RGYFDIIc+v4jr\niuBy\r\n=H5++\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-content-type"},"_npmVersion":"6.14.15","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils":"^7.0.13","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.10","@hint/utils-debug":"^1.0.7","@hint/utils-types":"^1.1.5","@hint/utils-string":"^1.0.10","@hint/utils-network":"^1.0.14"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","eslint":"^7.29.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.14_1637006927596_0.9248212538217782","host":"s3://npm-registry-packages"}},"4.2.15":{"name":"@hint/hint-content-type","version":"4.2.15","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.15","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":"657747e663e1e8ec82a4081e8e704cb5b17960a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.15.tgz","fileCount":13,"integrity":"sha512-8GHOTlGOZPa4LCEMxrQhsWCVBBAdYEn3zHXXyX9/hBts43LSbQpEflGY42QGEHZse2LDRDX/V+muMcIZQMY/1A==","signatures":[{"sig":"MEUCIB9mTsg4mR7wsGaz/qjJ6uEkJdMO8bg0owRRrX5macG4AiEAvPB624+YiZBEOMNIpEXdY7k2e/0ZXcN/4uC0uUKQ8UI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40873,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKko2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFKQ//Y66i5vhU7BqBaCb+rqUozOev7ugve5JUdU+mBXb58K61zscz\r\n4zKMN8xrKR31RNK4n8Lkz434s+ECh7y0r5VMeZWPGTJWrAcYYRdf3snhT1VY\r\nbY58JFXSFc8OmmtKLhsswQDTqIKlh8hWGAGanNOI3AlkPWLhx5flHU4cW67q\r\nABIlnPIuZcSCNGTXdZOHoUQgfmi63tPQwrHhAlsAesaOH8BDTruWYI+mg5wm\r\nXKOtIALW7dol+wZ18GTn5bZxO2Z8hnOlQ7eEaVccLfPI5qIPbyIRxcFlMIcv\r\nAHks3XbrniW6ciPgWvrOivHN4gP1TzwBQ2hWKhvxR7vWIlIz7IaDoMEJrxAH\r\nfKiRv6GGk5nXl/RUa3rFtyztfKfmDS0ufter0wC8koBjo6x1Myla25LyjNEc\r\nShTubZSQwlGKRsafe+PiFFRBCK1Sc0BJn8kOddP7wUrL8dwf66aV8QZdpCB3\r\n1hmBbA7wN3ETE/IHfBKnWMQfkqOh85f6F1yQ0AoFbqbvqoy9ybuU8Yo+64v4\r\nGuGcMrxrTTWK+7BLwbJyDGYmQlBfe6KTudaFZe5jRknnYkMf+I95+lEHSfmk\r\nJOWjTJUiHf0jMjYtwLBaNtPtnMul0g+eQBG29a4Qesk9zkbSTkhkAK52jpib\r\neqIpusk2B4hPfNSCiPwAW3fwABSXPa7AWpQ=\r\n=nEdv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"958c5ae10b0cdfebd292c67584ef5b99de8deb14","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-content-type"},"_npmVersion":"8.3.1","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"16.14.0","dependencies":{"@hint/utils":"^7.0.14","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.11","@hint/utils-debug":"^1.0.8","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","@hint/utils-network":"^1.0.15"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.15_1646938678452_0.8859893866167692","host":"s3://npm-registry-packages"}},"4.2.16":{"name":"@hint/hint-content-type","version":"4.2.16","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.16","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"bbb606400fec72068ce2efa117eed39c819b6675","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.16.tgz","fileCount":13,"integrity":"sha512-iJ9bwXpVeN+T1tvSXC011hvE7AK7SadzQ6CWnHw1MjQsFlnPtRGTD/FAO0mX7yye46aT08WvoltRT7u/YMJOVw==","signatures":[{"sig":"MEUCIQC/pmPAPur92UTnQKlnHO1KmnhCq/XRDY6qGX800Q++cwIgO6lNbdL3x8uNhXuIfL2sfbzuc9Qwf/BuMCMIj2DYhWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG3gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNDw/+OZC6aAiy4pKABgqZ+bQDpwmntCmRr8WEVEX12ACSSpzSIxgG\r\nOswCULnhw7YXTp1g7VGhaAP7pcQFCfwdYmCDEBN3rD9b1IVWh1X5LfRmR9lF\r\nK2eAdFJQoaD19d6KAeSYcQjp9biRHv6vAf1YERaLN5bINcuayJZJv++F3TCm\r\nxduVJZGBcwoQvXNyLB8V5GiY9PVeMySypQHGJgXccLUm3L1uZspy4I9UIPZx\r\n8i0L4ZntFjb4FxznbkdV5zo153mw3kFMLY/DdAwr8ZCCluefyc1MTVDd40sU\r\nM9/uUz+dowLMlRB5piKDRNqS2PMGPI1B0ROWtjAiFK7Rx5QASOZ3N5OECjSR\r\n7IvGZTZ1CzLDT6XamWwySZtwun3/vuK1l3MVGUOQxXoK+8A17Y9tvSdCSZv/\r\nDqmm1Aey1vt0kgXiCdBS0fR7nBqfGtsaXBGIn3W9KlgV5IwMP9vyE6MkgSHW\r\npzc37QIepr4JYihi08QzDam+0TpRElXBNvXrdp4SjX/VC4bJYd0hhJ7c/FQV\r\nYmHUzIUDaJqKlXxjuLBp8byJDa7pnQ+qAsy6GCTsApLQmx48MFdTBjJVJGqy\r\nApRho5j8DM+AodsyPQLsJndNvSTLf9DEKFSszTIG6j7yoV5A9pGUTlOBQ1Hu\r\n+zIm0LfMSZl31/DqI76RZt1JJ06Bf9Ec8KQ=\r\n=Fb6c\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-content-type"},"_npmVersion":"8.5.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils":"^7.0.15","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.11","@hint/utils-debug":"^1.0.9","@hint/utils-types":"^1.1.6","@hint/utils-string":"^1.0.11","@hint/utils-network":"^1.0.16"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.16_1651011040244_0.4685406958182179","host":"s3://npm-registry-packages"}},"4.2.17":{"name":"@hint/hint-content-type","version":"4.2.17","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.17","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2e95d0798918c06eaf6f51f19f943e9ce8a05bc2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.17.tgz","fileCount":13,"integrity":"sha512-vsG0UxLW2QAhKCil5oNkrgLBInu2+CejtOHMr00yZIrogM5ByNEK0XhntngDsDi7xCw75fLbbFjNdNGfyjDsIw==","signatures":[{"sig":"MEYCIQCy4u6dxHbhmSedAt+RaDbUrdfb4SU9kLHrpX787AaRrwIhAM3RXdmW4MqoY7MOftEDuR61t4IfNam1mbT+0UnRXIs5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdoyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoiYQ//fFztCJegelLDlkihWxn92hV0khZ/9LCgHbCHCixNOerXbbwb\r\nMINvYujUVe73I6xsUTAOd8+sm6zGEBDm0gG95crp01ix/k3E4ywTZqSkQMA8\r\nH4Sy7B2NE5n7IaPL146l/bsaAp5LzFu4M5OuUNVnxMKz+nfI33yuCbuEASys\r\nXBMVAe0GN3NWYk1sYyQH+NhjMLWkSwhz0+AU7x4LKUO9+Rr9CNBwvW+AMFuA\r\nJLSJrBx6j7lvNaimlg+r/SsXhr6inbSlJCgwde2AEiSEM6iTBNTU3lZXexaF\r\nsZg2btvsAlJLVxlVpde0DCbHZfd1iXkASJ62ZWiqvRk7MLS+9Znzp+GF2Cxk\r\n1q1UBmn52r57h9haVUOOA+glXdZkja/ionw44XG9l32NPTbd0rzHveGD/Ant\r\nG2P8plAQgvV9cC9LkBdwGK9LcSEuF7IQGPnt9PBFEAHkK5LJIwt3yBJtA4Od\r\nv010CMbfBuep2JvdQcFKoRBMmA276RQ9piBWD7W0UTdLpP/x/N6xW2nHoBfq\r\n6nyyVdUxl6qbeuz5UuOVjiGp45oF3gqzlKSXOD+f8n57tZMh+xGtuVRxV2N7\r\n4V3lCjakSxV9KiJJ14a702hqZ6ct6SYVO35/ZOrafcTv9sH3L7Bm+DE2oUic\r\niJmXdtREZaxHBsHK0p7RsGU1IzjD0AuTbug=\r\n=k/qR\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-content-type"},"_npmVersion":"8.5.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils":"^7.0.16","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.17"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.17_1651628594479_0.7735738418164204","host":"s3://npm-registry-packages"}},"4.2.19":{"name":"@hint/hint-content-type","version":"4.2.19","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.19","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":"472c5f42955cb6b37cf89ea2012e57dc4ca96745","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.19.tgz","fileCount":13,"integrity":"sha512-a8+BnNEwmQKH4ipf78fhVECmUB+YQ14BoN2EwlqRFKSKTfv+8UWnZPz/iltUk06rfUfGg0k+NslTk6nayOULFA==","signatures":[{"sig":"MEYCIQCl5aRUWwbBMMNuJko/y05aw4vTXgHV9fzDZ/sFqgmeWwIhAMx8gUIZ9LhKY85siqEDj8e6G9RUZD5fEok3QkJgpYaM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6BoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJvg//Q7V8er1idN6XCSMZenr5YK3L2kfCdkfMdLpr5315GHKgxpIx\r\nUtpDJ8BfdtBQ1nXq9IgHlocPomts03h2hURbJSOcHXycREeJomm1RRD8aWab\r\na93qzH0WNDeJ6vXb/ZBuJcb2f3JbqdYuNsnw6f7xerzFtdK8LYnOe1b24yiu\r\noHxaZRGMfkEXOGGApaMeZxu567suQKt3bAVIgkl0ICADWJ81cf/4/Tn+o8YL\r\nMbyK6Rr7PK9i7emNiQgVrCqDvoDNCmuajVBYYs8wfrc/LJeY7yYZ4gQtP2cF\r\nzEFp/f/cM38e46VMt7q2GffauP9hl10PB/oIrOy9dKI2+lMLoPi5S+MwE8Uv\r\nzIAnwhH5JTcoVQDIbFzs6kSD1tqxRo3jCDRMuKbXQD67fVW56WIrdfr6wv4h\r\nTMJoVLv2aorl0l8oO1HrbLCynrglmb2Cm29P0tFnB1L6Q4dG93kil1blyx/j\r\n9zzxrp9Fh0HsuPWfdVCIXF9f2RPOvHSUzMhW+w9QQjBokQWMM7MrZRkW+0hI\r\nN0EvxTP/aVGy+akfUKkPMx+AdAt1NtB24WXe2vvKUrMkwB/KgtqyAMa9fahW\r\nkbQ7lntvvHC9QfHXKiVPup4tRRDW0RdYd3gd8BlbsVqhWeDMbw1+6J6bNKYk\r\nwY+yrOgpyJ1Q+FEvsUjGKJDJa42PegVOkxo=\r\n=Qzzf\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-content-type"},"_npmVersion":"8.12.1","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils":"^7.0.17","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.12","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.1.7","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.19"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.19_1655152744139_0.28229637021428067","host":"s3://npm-registry-packages"}},"4.2.20":{"name":"@hint/hint-content-type","version":"4.2.20","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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"},{"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":"466fda9bfc6a1e1a14a102ff9c5e2fe00a0d5aeb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.20.tgz","fileCount":13,"integrity":"sha512-5mLW7gNYmAuhDg7P8ddegiLHx/pX2kUiROyeeKbilZEInp2qY4NX92dKniTDPP0cVrfWGi1UFDjIIIyysOAGtA==","signatures":[{"sig":"MEQCIGtjF4lhHi661hNXyYpZSflvglpfmVzU340F+aMglCetAiAnp/6RUNn1VO5mahxM6tHuprSTIvTGzo6dSEZ5VKnhng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFQeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmphLQ//TegrqR2xQ0C+AbwJK8DS8ZRi76ezEuQLzn5r5gN53axiD/3V\r\nqp9LCeX7tHH/qvlTbbTb42FnHa5t6ZW3WbGG57X66ADtDXn3VUngr0uDgi2j\r\nfUMUhzsKjBuEu4fsgC6QyGVFFxKi2QD8k3CQdghH4YNtngOoDhwa1BrLdq+V\r\nxzOEK1RAOdLtcNjldtIeW5eX+Tda2zWj6lmM57CbfaNtGt/cOUKoZC/SWrFw\r\ns5TLrK+fVdEJQVaqBfAAiRjuKnEaZ6hWz3S39C/oCzczoxskr0JTjOJFap3I\r\noX7uRuCSkmqamlZwbWMJ9vccOUkgE/qchGaatPPcO1H8cXC4lSqjlFwUzsq/\r\nBHl3YyrCgdjp4hhEQsFi+7Jx0I5O2fUYf4GM4SIg0xCAtQ0kWhqlIvsFjfEk\r\nXaZMFh5TsOojMAk0iUVZH1a138gUxamHYLq3VOdLkjVEagCp7lQfLARSzzyG\r\ne96uDv1Zlgd95Qhv3blGUIMyV2CNat0fNEckv8zpZQfkj4U8fDTZ68r9n9vK\r\njj1GSIUSF7FKjGq0cqyPGy4fktd/u6jpd6P3ryRI5JuTzanubpYq+iuoAdWp\r\nTLuEsEBjapREZxph6lqAYRpqlbzPz0vt3g6C/Bbm5ItmXLZ8AKmEqqDUGg7L\r\nhsaLtuOgKCwfFxLaRDL7cC5r/dcjvNQRu4Q=\r\n=F5+K\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-content-type"},"_npmVersion":"8.12.1","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils":"^7.0.18","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.20"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.20_1657295902659_0.6828125377125394","host":"s3://npm-registry-packages"}},"4.2.21":{"name":"@hint/hint-content-type","version":"4.2.21","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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"},{"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":"34d78957b3d601f8d761a3397064be00bdbbb69c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.21.tgz","fileCount":13,"integrity":"sha512-uaRr1A559HlzXAadr+6rPc5u66aj4oH4cfVz1ezA6uVR53xFoMn6Prn3eW7hY7q7VCWMdathErH3c9Zvp8585Q==","signatures":[{"sig":"MEUCIBTAzFoxsPuaiIA4Ms0GKiP0g7+/gA61owX24PEgt1XxAiEAxgWOs+Ou6ngyi3pOu0RQr15TeJ1prjzIGjlfZ6twg2I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1wA/+OCVZVLxqHIZxTY8F8AnYcEg4x40TCA5jGTlJTO6xTElxnC+n\r\nUeSaw4Vzh+VKF/AcDh/SNPEjbm7S0SdcTmiFjhm+OOV2Ibd3GEhDLYGWTFLo\r\nB2kHr8SOqb6pnA66tCx92QGyC3u2sbSsnW5cWs0gwKk/2sH9ICS2eLg8Rez0\r\n2o2VrI6VcUf1Rej1CnTek4Dpavy3ZY7lWueCsB8EOAmZp1VEhh58vKbw0jf6\r\n7ZHcIdGYz6LEMum14a7UDOebA+6OHdNa9wzAug3GTv0nkTS/6OV4xayfM+XH\r\nFU104U3uSz9OAYkXMuBNkUlrwFLHyc7+S5fNiYhZhl3qqcER+cWh5eR/2lLl\r\nYhrDfADKddOtfjdO8zgaOXRkmjNE4L4CoMAkX2rgRTptGZi3nh6x2gVzvswO\r\nRdlcEwVTX0xD6LXg876rSSySdodI6Ss8UtQhbOdTEp+LIvq120ENRxYibael\r\nIw6m1T4zHHmlnXhbnMAQi64SYg7m5BjuzRff32EbWazCJ8wzR9vlSnXeqIlY\r\nvQIzc8WAGt0Hz/6hdQmAIZjLpZNPJzWXdtDCCVifK080J6L/T9FYsULH7bFY\r\nuC6pfGXgogzMkno/jysEtbX8XKamePzFlq+id9CZNlxD9M7hgYcHfHJvvZhc\r\ntmW+CDZQqosjUFMfFXh9SchtYzwoWqgugT4=\r\n=2rUB\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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.19","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.21"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.21_1658530755732_0.692332733472028","host":"s3://npm-registry-packages"}},"4.2.22":{"name":"@hint/hint-content-type","version":"4.2.22","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.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":"3f8344ff8ac7f855cc8daba13b4572535af725c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.22.tgz","fileCount":13,"integrity":"sha512-bH5usydvn83h5MOBziGxq62QP4EscFOLisXynZLOEIlUgvQpjZLOodGnufKbgURx32uxdDmBfLCKSbBTBCHd0g==","signatures":[{"sig":"MEYCIQDN6Zh90rQGsmTnkIYTcc0XBIkwuYF3RRibjaPOkWoBbQIhAPthAIOcgkWG//O7M5DFLWmlpQ03vWSrSFUU7OWPil/N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3ftACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEyg/+I2BugDwxun097/kw8SYfo9afiisR3kD80R0ZaTjL6LS9jbUD\r\np5TpSXLMMCna9itnycljwKVZj+TUvVhDbLrsfc5T3vCzj3iLdGs1HIEnwjja\r\nN7b0X61J2/WU02aA3GZPAUem9z/RoGiPWFu5mjE2kbDKVtXwbhEAI7ngKUin\r\nDpvKA3aL3GsFCeuH0JZb6t4A12607lCukUnNvPKAvSMqV3zpiMYRGQDihPCV\r\nEbZoazoYTfWzHVUweUr7xWInP3yUqol6lScuTgnHHCBurXCL2ih/j3BdEAML\r\nSVmIMFn0pTml+tcT3yvJk92viLp57MjZWUhiRo+DnsmhySbejwqOUhWMij6C\r\nb12s1SqslC+RkHS2VzwSloprn2iBabozme91xwHzUSjtAciurTQdp0uDMWLH\r\ngr9+b0WLrR2lkfinXz2zDltb/YHL0qZGu3HgLzEK2yj2cDyQjVCGNNHrtFyh\r\nwLbDXiAfDsuDXD97evZCl6okIIxE8lcf8I7VsuAvHrV9ueroBG7AVwgTM8iF\r\nP1EydZm5/DHl4VC3jUb7fOdC2B6j3ZhAbTAyF5LWKMxczBYGs6ad7aPdBRgw\r\nW4o72xagzv5+pWnsmAWdMjRjyx9fBl7Ncy5vp+/kDf3tv5jjMmAgEJmgE8N/\r\nI6za0E70VAXybpHGsWtY3HW2pCrqEN7x7sM=\r\n=ihND\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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.20","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.13","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.12","@hint/utils-network":"^1.0.22"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.22_1662482413764_0.44641433847125067","host":"s3://npm-registry-packages"}},"4.2.23":{"name":"@hint/hint-content-type","version":"4.2.23","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.23","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4a6c6408254bc2b6a3b909a9cd1e84f304c21c32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.23.tgz","fileCount":13,"integrity":"sha512-NfNNAsBaqMS5QdzkdDOb7Fq9FrXJCW5es/p+Os3pVSc0TiSfJ+o1Esrqx2oV4ILI188e26q42Fs4vHsU/0oTMQ==","signatures":[{"sig":"MEQCIHeJhS3/PUcz6oYaFy3fpQAvVotk9fj8DHFb9gE5fXM+AiBr5NmuK0kzRIXfE8B0g/MW6xGAoKItkvY72XhFxcweGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPy/mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlBhAAhQfYfd3jAyAmf5UzAvetH0Wpie59FPYWDj9yWRndqOvGEqYK\r\nGqX8uQNQtRRY0Qom3tJAMYzZgDJPQh1gGorVDmvv7gCg5DbiYA536vlibm8I\r\nQ9Z3kwW0MgiZi8J8BS5HxYeSAS8LqIpDgPhWFpMNi9zhPrHTwwElwFNESgZI\r\nIcCIOfuuXII9ax3Gsf3CJtgiDSolexkMiR6wGS5raeAdnh+WOK+GShFVebV9\r\nbuiOkKw1LNq418tq7jfPyZQw5Oe1I1U0sP0QSh2xBdToIdhdBkkx9bLXt262\r\n7hxSIhbYr4maJ2ir4vXQH6HR3S6FmBH7r7PsVGNzfYi1Ld2aEIRUJXCj0qvB\r\nl5Kub9vR56eFdD+7zK9raGxmksPgHbI3zowAgIb0efI3Hl4CZVas/HdXG6pL\r\nS8xmy9zB8PGvI9mDkPSUg2Rh5A1VyjXYXoquXdv1uGx1l9SCPzXFK+dIvxgG\r\ns8jm9JkvZ86jSIZOufawk1VUrCyuIluTvJPDKEqhHXYvKknGcZJwZWoRiykg\r\nwxORiy/GPA2QlBk8GJdrQsVAqlcq6PLiwCL+W0pMrm4zg+kuShrNNB+LgMCf\r\nC+pf0SFqWRLItpkUt7JE/fpBMr6/rgl/eaLZ/IZnZ7xezVGg8cUcPi5Nywn/\r\nrFbIw9WF5KdUuFCziifM/p0AVml3RNNtuxA=\r\n=Xk2S\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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.21","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.14","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","@hint/utils-network":"^1.0.23"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.23_1665085413999_0.3438558624757002","host":"s3://npm-registry-packages"}},"4.2.24":{"name":"@hint/hint-content-type","version":"4.2.24","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.24","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c6280e278eb722eef8dd5886c71dff60476fe57f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.24.tgz","fileCount":13,"integrity":"sha512-/M2hIwJ1MFoLrVig+JPdUKC+hIZtodkHFLkKNOIMHAiJriJep7+q5ugFzAS9P4fTmnEodY4AYvqYh9Hm4rqXjw==","signatures":[{"sig":"MEQCIGOUqim/w841eKkY8AlFSR0CJOnJjoEwNYkC1uBZb53jAiAnd0IQHLY3NxpjFIXakZuhYUxo1nC7Kh0kn0jhMhJvrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqW+Q//SolaiggL5rw31acJmmi1p7RaJc1C0GJ9VX7ghbtVoh5YYaQA\r\np+twcFQtg+MneRaPi9cA61C+a330aISEOgBMXbYqQRCBJqEsBo1RkTyVRTkU\r\nWvlCIDwgAJbiSXq5MDu139MZOd/zk/vWimlT78ia0H4GyWbz4c7320/fe/Dl\r\n6D0EP6XRJoj7Pqxaoao33y0J69jgK96RQsmszNuLaTwpXfYAfY5Ah0MG0Pbu\r\nNDNMXcU0ZZ6USxJvrmdo/GTwOoglBOsy8Db9Z7Vj1acUHGF2+jyBitLcYFT4\r\nkWbIZvwPYH00DVIRKZjpVh+L2JZN0S35Zi7HBqEvZfuiCRWtTBlnLUosiEK7\r\nuwMpNI2iHJSkQk23zCg9JA+0SAI21PZi2TxPxAy+8H9SVqIff/8bDrNrmMFv\r\ndr2fGFRxTsXq/mC+S/pZYAaAJFeo4J+XPv+WQkyVwSN6QFS5+DTgV4oRu/zw\r\nGsCD3Yf8341O1+IatlXD6C2nHd/y71Hf75tly4zlMkdyQfkTEXl8FhgiM4ps\r\nazOMCMi50LcMMGL5d2JLVKQ1pH7NGWGTvUTIqiNMP9vdW+AQGETQF7rv76Yz\r\n9sli2DViIO+3B2enDMi8sggOZtKFYI9j5f1U+gPO5ji4En2AifkkA8PHXBSg\r\n2u3Potz3Pbjl8fP9Xchv94c4RfgQxkhhVkM=\r\n=3WUu\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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.22","content-type":"^1.0.4","@hint/utils-i18n":"^1.0.14","@hint/utils-debug":"^1.0.10","@hint/utils-types":"^1.2.0","@hint/utils-string":"^1.0.13","@hint/utils-network":"^1.0.24"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^18.13.0","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.24_1679006988152_0.5907114598926653","host":"s3://npm-registry-packages"}},"4.2.25":{"name":"@hint/hint-content-type","version":"4.2.25","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.25","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":"021c6fd9fbfad19b9bf55055454baa6d5c0618db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.25.tgz","fileCount":13,"integrity":"sha512-ni7Ztvuw+u2j0HA9h0r54d35mtqPD0DDlM/30PxfmTYshH86BA15VyDsMkNBDD9En8uhf6DmnhVGaDc+87eWPg==","signatures":[{"sig":"MEYCIQD0AXZ8/eLC9CZBm1eBmuX1eVg6b8EuB/snlrboWwfCtgIhAP/Q7sCHiFpi0RR4slDtCSgjhaPRHR6dB2rAUJkRR1hL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40873},"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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.23","content-type":"^1.0.5","@hint/utils-i18n":"^1.0.15","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","@hint/utils-network":"^1.0.25"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.25_1686328034680_0.34474566609039115","host":"s3://npm-registry-packages"}},"4.2.26":{"name":"@hint/hint-content-type","version":"4.2.26","keywords":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-content-type@4.2.26","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":"49a646e0935a3ca1aa5b8a3525a0014df1044bf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.26.tgz","fileCount":13,"integrity":"sha512-4okqajwL0rLe3IsXyZULxMCvd09UHLuP0h1cmrIEYNUN8CkagLZiEO4R4+4UnBvau3aIGl2lSIQouyPAC3Di/Q==","signatures":[{"sig":"MEYCIQDhte4vvV+Jx3nPWqVfrs2QXh5CnS8RqJd+Z0fyHIvPWgIhAL3Y0L+Wp8LxHDXnmjQjcu+yYZX5YmFnyobCsHcqFYMt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40873},"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-content-type"},"_npmVersion":"8.14.0","description":"hint for media types (f.k.a. MIME types) related best practices","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils":"^7.0.23","content-type":"^1.0.5","@hint/utils-i18n":"^1.0.15","@hint/utils-debug":"^1.0.11","@hint/utils-types":"^1.2.1","@hint/utils-string":"^1.0.14","@hint/utils-network":"^1.0.26"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","eslint":"^7.32.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","@types/content-type":"^1.1.5","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-content-type_4.2.26_1687907319063_0.4401483558798158","host":"s3://npm-registry-packages"}},"4.2.27":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils":"^7.0.24","@hint/utils-debug":"^1.0.11","@hint/utils-i18n":"^1.0.15","@hint/utils-network":"^1.0.27","@hint/utils-string":"^1.0.14","content-type":"^1.0.5","@hint/utils-types":"^1.2.1"},"description":"hint for media types (f.k.a. MIME types) related best practices","devDependencies":{"@hint/utils-create-server":"^3.4.27","@hint/utils-tests-helpers":"^6.5.7","@types/content-type":"^1.1.5","@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":["content-type","content-type-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-content-type","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-content-type","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.2.27","_id":"@hint/hint-content-type@4.2.27","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-+tVzsDDZ6HlusqGik2xfbH/I0PE1RmcU8tRb1hcxURzjPYqLDMCpecfV/QBz3rT7+gJRvPrdhUKjRfvmIEK8Fg==","shasum":"eca1feddcbce3bde7d485c7cec48ca4cbb6b4c72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-content-type/-/hint-content-type-4.2.27.tgz","fileCount":13,"unpackedSize":40873,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICm49WHqqGh4ezMAmbAj4HrMH0B6T7AnAqHpJ9gBR195AiAh6uEnX6jK7WNndmR8BHO8iek5KBlZxrWLp2iGFrs5/g=="}]},"_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-content-type_4.2.27_1724949332268_0.7127773272611668"},"_hasShrinkwrap":false}},"name":"@hint/hint-content-type","time":{"created":"2018-07-16T23:27:55.532Z","modified":"2024-08-29T16:35:32.715Z","1.0.0-beta.0":"2018-07-16T23:27:55.659Z","1.0.0":"2018-08-06T21:19:58.163Z","1.0.1":"2018-08-10T21:37:14.576Z","1.0.2":"2018-08-14T18:00:54.866Z","1.0.3":"2018-09-06T21:06:41.314Z","1.0.4":"2018-10-31T23:00:42.366Z","2.0.0":"2018-11-05T23:41:55.024Z","2.1.0":"2018-11-28T06:17:31.750Z","2.1.1":"2019-01-02T19:32:25.162Z","3.0.0":"2019-01-15T21:55:29.489Z","3.0.1":"2019-02-22T00:26:36.936Z","4.0.0":"2019-05-15T02:49:31.377Z","4.0.1":"2019-05-15T04:18:18.993Z","4.0.2":"2019-05-23T15:48:09.721Z","4.1.0":"2019-07-23T16:30:35.321Z","4.1.1":"2019-07-24T21:18:02.310Z","4.1.2":"2019-07-30T19:29:08.740Z","4.1.3":"2019-08-06T20:40:24.862Z","4.1.4":"2019-08-16T02:38:00.094Z","4.1.5":"2019-08-29T15:52:20.374Z","4.1.6":"2019-09-11T22:30:08.194Z","4.1.7":"2019-09-19T18:31:22.219Z","4.1.8":"2019-09-24T19:29:49.209Z","4.1.9":"2019-09-26T21:18:27.109Z","4.1.10":"2019-10-16T19:43:42.322Z","4.1.11":"2019-10-29T22:28:44.434Z","4.2.0":"2019-12-03T01:01:07.171Z","4.2.1":"2019-12-05T00:21:28.846Z","4.2.2":"2020-03-18T21:54:36.522Z","4.2.3":"2020-04-15T19:17:57.474Z","4.2.4":"2020-05-18T22:15:00.041Z","4.2.5":"2020-07-27T20:36:27.542Z","4.2.6":"2020-08-24T21:55:02.079Z","4.2.7":"2020-11-11T20:41:11.668Z","4.2.8":"2021-02-04T19:28:57.542Z","4.2.9":"2021-02-06T00:41:11.470Z","4.2.10":"2021-06-09T19:09:59.561Z","4.2.11":"2021-10-21T16:19:32.785Z","4.2.12":"2021-10-29T19:56:31.282Z","4.2.13":"2021-11-04T18:29:12.465Z","4.2.14":"2021-11-15T20:08:47.788Z","4.2.15":"2022-03-10T18:57:58.598Z","4.2.16":"2022-04-26T22:10:40.393Z","4.2.17":"2022-05-04T01:43:14.649Z","4.2.19":"2022-06-13T20:39:04.287Z","4.2.20":"2022-07-08T15:58:22.872Z","4.2.21":"2022-07-22T22:59:15.889Z","4.2.22":"2022-09-06T16:40:13.907Z","4.2.23":"2022-10-06T19:43:34.287Z","4.2.24":"2023-03-16T22:49:48.358Z","4.2.25":"2023-06-09T16:27:14.862Z","4.2.26":"2023-06-27T23:08:39.231Z","4.2.27":"2024-08-29T16:35:32.434Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}