{"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":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"3.0.23"},"description":"hint that that checks if HTML document only response headers are sent for other resources","readme":"# Unneeded HTTP headers (`no-html-only-headers`)\n\n`no-html-only-headers` warns against responding with HTTP headers that\nare not needed for non-HTML (or non-XML) resources.\n\n## Why is this important?\n\nSome HTTP headers do not make sense to be sent for non-HTML\nresources, as sending them does not provide any value to users\nand contributes to header bloat.\n\n## What does the hint check?\n\nThe hint checks if non-HTML responses include any of the following\nHTTP headers:\n\n* `Content-Security-Policy`\n* `X-Content-Security-Policy`\n* `X-UA-Compatible`\n* `X-WebKit-CSP`\n* `X-XSS-Protection`\n\nIn case of a JavaScript file, `Content-Security-Policy` and\n`X-Content-Security-Policy` will be ignored since CSP is\nalso relevant to workers.\n\n### Examples that **trigger** the hint\n\nResponse for `/test.js`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\n...\nX-UA-Compatible: IE=Edge,\nX-WebKit-CSP: default-src 'none'\nX-XSS-Protection: 1; mode=block\n...\n```\n\nResponse for `/test.html`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: x/y\n...\nContent-Security-Policy: default-src 'none'\nX-Content-Security-Policy: default-src 'none'\nX-UA-Compatible: IE=Edge,\nX-WebKit-CSP: default-src 'none'\nX-XSS-Protection: 1; mode=block\n...\n```\n\n### Examples that **pass** the hint\n\nResponse for `/test.js`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\nContent-Security-Policy: default-src 'none'\nX-Content-Security-Policy: default-src 'none'\n...\n```\n\nResponse for `/test.html`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/html\n...\nContent-Security-Policy: default-src 'none'\nX-Content-Security-Policy: default-src 'none'\nX-UA-Compatible: IE=Edge,\nX-WebKit-CSP: default-src 'none'\nX-XSS-Protection: 1; mode=block\n...\n```\n\nResponse for `/test.xml`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: application/xhtml+xml\n...\nContent-Security-Policy: default-src 'none'\nX-Content-Security-Policy: default-src 'none'\nX-UA-Compatible: IE=Edge,\nX-WebKit-CSP: default-src 'none'\nX-XSS-Protection: 1; mode=block\n...\n```\n\n## How to configure the server to pass this hint\n\n<details><summary>How to configure Apache</summary>\n\nApache can be configured to remove headers using the [`Header`\ndirective][header directive].\n\nTo remove the headers that are not needed for non-HTML resources,\nyou can do something such as the following:\n\n```apache\n<IfModule mod_headers.c>\n\n    # Because `mod_headers` cannot match based on the content-type,\n    # the following workaround needs to be used.\n\n    <FilesMatch \"\\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ic[os]|jpe?g|m?js|json(ld)?|m4[av]|manifest|map|markdown|md|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|topojson|tt[cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xpi)$\">\n        Header unset X-UA-Compatible\n        Header unset X-XSS-Protection\n    </FilesMatch>\n\n    <FilesMatch \"\\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ic[os]|jpe?g|json(ld)?|m4[av]|manifest|map|markdown|md|mp4|oex|og[agv]|opus|otf|png|rdf|rss|safariextz|swf|topojson|tt[cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xpi)$\">\n        Header unset Content-Security-Policy\n        Header unset X-Content-Security-Policy\n        Header unset X-WebKit-CSP\n    </FilesMatch>\n</IfModule>\n```\n\nNote that:\n\n* The above snippet works with Apache `v2.2.0+`, but you need to have\n  [`mod_headers`][mod_headers] [enabled][how to enable apache modules]\n  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</details>\n<details><summary>How to configure IIS</summary>\n\nIf your application is adding the headers unconditionally to all\nresponses and you cannot modify it, the solution is to create\n[`URL rewrite` rules][url rewrite] that will remove them from\nany resource whose `Content-Type` header isn't `text/html`:\n\n```xml\n<configuration>\n     <system.webServer>\n        <rewrite>\n            <outboundRules>\n                 <rule name=\"Content-Security-Policy\">\n                    <match serverVariable=\"RESPONSE_Content_Security_Policy\" pattern=\".*\" />\n                    <conditions>\n                        <add input=\"{RESPONSE_CONTENT_TYPE}\" pattern=\"^(text/html|text/xml|application/xhtml+xml|text/javascript|application/pdf|image/svg+xml)\" negate=\"true\" />\n                    </conditions>\n                    <action type=\"Rewrite\" value=\"\"/>\n                </rule>\n                <rule name=\"X-Content-Security-Policy\">\n                    <match serverVariable=\"RESPONSE_X_Content_Security_Policy\" pattern=\".*\" />\n                    <conditions>\n                        <add input=\"{RESPONSE_CONTENT_TYPE}\" pattern=\"^(text/html|text/xml|application/xhtml+xml|text/javascript|application/pdf|image/svg+xml)\" negate=\"true\" />\n                    </conditions>\n                    <action type=\"Rewrite\" value=\"\"/>\n                </rule>\n                <rule name=\"X-UA-Compatible\">\n                    <match serverVariable=\"RESPONSE_X_UA_Compatible\" pattern=\".*\" />\n                    <conditions>\n                        <add input=\"{RESPONSE_CONTENT_TYPE}\" pattern=\"^text/html\" negate=\"true\" />\n                    </conditions>\n                    <action type=\"Rewrite\" value=\"\"/>\n                </rule>\n                <rule name=\"X-WebKit-CSP\">\n                    <match serverVariable=\"RESPONSE_X_Webkit_csp\" pattern=\".*\" />\n                    <conditions>\n                        <add input=\"{RESPONSE_CONTENT_TYPE}\" pattern=\"^(text/html|text/xml|application/xhtml+xml|text/javascript|application/pdf|image/svg+xml)\" negate=\"true\" />\n                    </conditions>\n                    <action type=\"Rewrite\" value=\"\"/>\n                </rule>\n                <rule name=\"X-XSS-Protection\">\n                    <match serverVariable=\"RESPONSE_X_XSS_Protection\" pattern=\".*\" />\n                    <conditions>\n                        <add input=\"{RESPONSE_CONTENT_TYPE}\" pattern=\"^text/html\" negate=\"true\" />\n                    </conditions>\n                    <action type=\"Rewrite\" value=\"\"/>\n                </rule>\n            </outboundRules>\n        </rewrite>\n    </system.webServer>\n</configuration>\n```\n\nNote that:\n\n* If your site uses a mime type different than `text/html` to serve\n  HTML content (e.g.: `application/xhtml+xml`), you'll have to update\n  the value of `pattern`.\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## Can the hint be configured?\n\nYes, you can use:\n\n* `include` to specify additional HTTP headers that should\n  be disallowed for non-HTML resources\n* `ignore` to specify which of the disallowed HTTP headers\n  should be ignored\n\nE.g. The following hint configuration used in the [`.hintrc`][hintrc]\nfile will make the hint allow non-HTML resources to be served with the\n`Content-Security-Policy` HTTP header, but not with `Custom-Header`.\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"no-html-only-headers\": [ \"warning\", {\n            \"ignore\": [\"Content-Security-Policy\"],\n            \"include\": [\"Custom-Header\"]\n        }],\n        ...\n    },\n    ...\n}\n```\n\n## How to use this hint?\n\nThis package is installed automatically by webhint:\n\n```bash\nnpm install hint --save-dev\n```\n\nTo use it, activate it via the [`.hintrc`][hintrc] configuration file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"no-html-only-headers\": \"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<!-- Apache links -->\n\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[header directive]: https://httpd.apache.org/docs/current/mod/mod_headers.html#header\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\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[mod_headers]: https://httpd.apache.org/docs/current/mod/mod_headers.html\n\n<!-- IIS links -->\n\n[iis config]: https://webhint.io/docs/user-guide/server-configurations/iis/\n[url rewrite]: https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-the-url-rewrite-module\n","repository":{"directory":"packages/hint-no-html-only-headers","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-no-html-only-headers","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","no-html-only-headers","no-html-only-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"a952e622f4f40fd4ea7d66fab7d9f5996dbaedb7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-Cgx63ED7aL2e1W0NHqWe8m8gwgHSi6tlEWiOsr+lKQvtaa0gsTLexFkxnkwyVxcPKXvV8VRCF3oIvmatFzHc/w==","signatures":[{"sig":"MEUCIQCDCzWII4T+miMtPBAiTONt83oysSDeY/UpMoE1rIrsUgIgOOEhkkoEiLnESgCInHM730qk42C4p1sIPEIYtlTHMWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTlcWCRA9TVsSAnZWagAA+CMP/A7QHsCGhs+KUR1NQwwG\n/IimnPdE+557e1kVplJHCWEV09gCRpNDebTBRk8udzB/qgYG9Ab0S3fLH31r\naFDUNiI1RqLQuJGKb5tMgIdl6Heyt6xWGu1MvqqZ3fCjwF9WZX+CHD2N731q\nGv/BxqwxUyjtVBZui3K3iWbZ0azFcFi7NDfB3L4QUvOWr6//enBNBWDy1nxq\nrHHlL9I4BZruj7NQs4O1Be4TQquwAd2MWY8Ikzd2goPLb5CiIu0KFkvsEaic\n1iwqBXrY+3F2OqUuNo0mCfDufNuk4/8v1SJe8nVZKyKDv6iBKLkeGhgAppjV\nw5dUBPnGyvJfWwndko4KH72CJ2rah36qqX9le/Jj5w5ZlwHs/qqF8x2P0nh4\nt8joC7k6D0vOUAdWEYBzaJB2knGVPUAru6jNtHyyUzs1bBz9g5Mgl3u5w9sq\neCub+9l7v5RVXhFm7LeLjI6tTe+bOycjnifM1hXLgw37mx2S3gVeLMkn2IWu\n81S5D29zK4aVAr4BWZGls+pM9vgwWnvcvgYblexKARJ3epVWL6CfHdAKEhEn\nL8Nyl2wtopwehK8irWRXO8tbiCU9ZG/QE5o2I/wLWRweyfNHFuyf3W7Tu/e7\nnkHrveyt5nJA1A+3WGVYMRcdO97kLQyL2ZAsFeE17yEazciae7JH9FW88N8o\nTZm3\r\n=nKNL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.2.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.4.0","_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0-beta.0","eslint":"^5.1.0","rimraf":"^2.6.2","typescript":"^2.9.2","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.11.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^16.0.1","@hint/utils-tests-helpers":"^1.0.0-beta.1"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_1.0.0-beta.0_1531860757656_0.0815381368008361","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-no-html-only-headers","version":"1.0.0","keywords":["webhint","webhint-hint","no-html-only-headers","no-html-only-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"8f0e48b6e8ffab1285a8b0786b279031ec8811e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.0.tgz","fileCount":7,"integrity":"sha512-iIwB2FMuAhMqXcXpLhPCQvLmvJHdOq/aETCL2Q6tUeXoDmKYVIMqQ+LPtcOiTwAzaG2aFt1r0ygltGXtJ4OKXg==","signatures":[{"sig":"MEUCID72B1ABIveWBQlLIoYXhJnebwcutHyRU/C4GIQnHQtMAiEAj8y7+eZQUb76i4JUEI6BDku6WL15WbkP4kVEmBu7YVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaNIMCRA9TVsSAnZWagAAEogP/jzoo6WuBSph0v2voh27\nlMyvFaI20aSFJBIVe7DH9ob2IZ9tfc0ztMaUGtryB28nuCgmSyvVqBbLMrn8\n+Jgror+cfj5wFWfwM4SsdEf4Wz9ufpH00kQsdL7UPKwZbVMVXvNv9Bs48xpW\nihpl+yNtO0rdunbDYdTja0hPanaUvv+vmKkYFtmxbivuiIQtSPSVlEuuJx8Z\nAt8qJZMQSLyAScImH3k3N5D6fbbqwSEEV3ZlJHTIlE+cjjICUscmgjELlXt3\n5zCNZc0yhKGojuD3m2g9N4NZbebJqIY2Jqw/g6cJZ5VZphnzGt15fe4Ruz63\ncFDYjODAT/+adE70TXVJ699B0D9WtY2AOBxWHNKLmkBN1gz0GkMJoo9RCsJm\n90lTruAZ0IEvNpRnMCEJX6QzPlvqkja48jJmbN8fd+9nc/GSjIxhcFNB76I4\niyjl9UPkgGC2SAynlQdbVXp3GiuxFCTf/VM/CccnJM+HSQU8516DkVxA0emQ\nlAnH+mpynJ+cs/gctMl7G0A8dFfnUtcYn7RPX6VUsXdFbNuhYl2MjG7Px3kK\nGkmqX1jbtn47gRolTSA+45BhbapsRIHweDhveM/2pCU0DcF0Vhdiy6LX2wHn\nABljsu4Psc9HnZKu+1jGEL26jYogyGNIZRaOmy+X0+LwWItMeuOomuJRnXrA\nXeOB\r\n=89LD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.4.0","_hasShrinkwrap":true,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^12.0.2","hint":"^3.0.0","eslint":"^5.2.0","rimraf":"^2.6.2","typescript":"^3.0.1","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.12.0","eslint-plugin-import":"^2.13.0","eslint-plugin-markdown":"^1.0.0-beta.7","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"^18.0.0","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_1.0.0_1533596171695_0.08629026324546762","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-no-html-only-headers","version":"1.0.1","keywords":["webhint","webhint-hint","no-html-only-headers","no-html-only-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"a13917bc2ee63e497ffedbcbc84cc67dde286f87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.1.tgz","fileCount":7,"integrity":"sha512-2n/T4GSkRRp40C4its1bsR/kmmpS8Vi3XZ+xw2+fWlirMxqL/ihe3kig9EQC5mIS90glbvWWH0S2TXQJDUbP8Q==","signatures":[{"sig":"MEQCIBVl71qRcYv4C0UhzdNnM2xmI4MxrP+M2bTIwPUq0gRwAiAP7eN3uJNsAupjpUHyxW7GgwZTPrmDjHztAai3xGmSfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbhufCRA9TVsSAnZWagAALoMP/Rl9GKCvSw6uqC1nLgOF\nq7RYhuhBSyNwnqQA1zv+0NmJIV5EeDSXV1RX4j05WH4kbjYT5MTfmQG4LluR\nvXo38/Q8PgTaZf9oNfDSDfda3bwySxZfx0Rgqkjzh1ZDDWFKhQ7fNvsneXYw\nRuVW6lr24EUVpsAHFbio9PXPQhmzSEozv1cTLIISy0jMJvOtupmWKDFTnu3z\no2O6FSLkvILXFNYkUuugQNW1F+/UszAwTRYROuDPwQlgR5isC1FR/v1x/rxk\nhqOY2/dYQmZ66kBUeQXMEECCqvmRS7Gy72TvD3ftOSoT5LqGnYOrTQACRf66\nm+SX/DsdOl4EoiwGIO7A9XAqcpS8XctPfuVJVU7zjevlj4T8qX8QqA0xvx+a\nTBZgdVdvqqk48pFqYf4gpTgDvcvmRHYn/HT6LbOZUSGopk5dFoo+2E01owSV\nMeS/YxITZPGPAS0Ep+f9utqLpLCKezUDuInepfLhTP7+Kbu+NojT0p7X4Gr+\nn9ey5v0dST4RSwdQA4D988lLKYOeGIBonbIDI9zz3uPQUGpCveMblC/uO1o7\nB2Cq4ZytdkL5MXtojbI50Kn/dWZavNyO05iKK+xrgBm5qhx8sTF7idg7AeCa\n08e10a//mBcp7ejyn3gMVQmDlYYFSK2OKqFEaTX3w6EwLnBBpaABS4LF/NbD\nJYYi\r\n=2nZS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.4.0","_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-no-html-only-headers_1.0.1_1533942687516_0.7820354516210346","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-no-html-only-headers","version":"1.0.2","keywords":["webhint","webhint-hint","no-html-only-headers","no-html-only-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"a436719cb43163de5c60f3dd41ca7ef0359a558b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.2.tgz","fileCount":7,"integrity":"sha512-2ZTt53v1XpRxflkwI2X72k8fyl349jIWASQ/m+qWO85Rl8O8HHl/bk+/lB68jfGLSayULRhxgNzUazF3GZgFlA==","signatures":[{"sig":"MEQCID2ll3EwXcK0gwVsQqTHfayFrJsWJZ/nV9s2VrgpfyLPAiAdPTdgYb2tWR963wDBfOLKhEZIviT0hc+eoEueajZDyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27613,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcxykCRA9TVsSAnZWagAA6+QQAKUNuy8eGtOOuANKNCUV\n57cO5n7tu09XmDApOP8yDWJ+9Dn6GyP97gVXxtn6Or++GbhCHFd7kq+YYFRo\nFoozkU6VlTF05SV8LZRhaB1Y0axGQOxjdfdhUQwCwfqbYSBPB+SQWUQR2tSS\nIX2SyV1yF5qQ1T6nbQexaSRCk//BtDJVHzLR50+Jru1qupeLqdyTnGDqXkPB\nFae8ybwU4iJJwWBjhxUbkhlsRy2rmqSOfOjXfJU0T7iOQRpHDwB3y/J42W7t\nUTp6heB1BcErnx+wDUdJogFFNFvXRp1GAHpnAG+Yeyc4hUteN++TclE3YL+C\n+meF6CeB3Gjzjcik/wHFyxssaCc3qmG39WpMLaN8oIObjp8ARZpmJGilpZur\nHgvguX7Py10Djn1hooONfDlndu7uznQs8Au7MmK274lHUw3DY2uzZ3hWrIDX\ner7hiS1bi1RxeSQHwGGwStjtUcV7lc20duiFfoPq/012S4CwfD83SdoHVAEh\nN/sRYTOP/NgQML3cWIWA5vF9pajG3XV9JMKgzS+nrfE3Rcyiw+HjW0G2EXWp\nGgPDfqAodmE0RCINR9hTamnZmH9d3BWjbBd9b+We2VSOQfuP2ix5rOKDYi63\ntEcvVxIAB3v7pfIpewwClqXrh5StP8uQpC8ld8inS5mcJ+mL3fpvOPpCyYsf\n0OpU\r\n=WNgv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.4.0","_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-no-html-only-headers_1.0.2_1534270627555_0.8586596906361907","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-no-html-only-headers","version":"1.0.3","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"f1641e7a98d6320b662c3c5732907c7e15808d9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.3.tgz","fileCount":6,"integrity":"sha512-AOAq7D6Cf2jEWUbWkdD9kBIQ77wlrEoqrecvICbpHZUeWDGc6Jy0y/6Hf3LTyyg+8YuN8yrU3h2IgZoPzIu+4A==","signatures":[{"sig":"MEUCIQDkLwhM/GD4P8jpLc4DS6lAa73Irf+eydAujsL6idvI5AIgKVg9iZqW9GTQdtD7gqqNwgfauy4xCAjUL4DCfIPMuE4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkbNdCRA9TVsSAnZWagAAzaAP/ia/SjgSvCT5RbCFBNXE\nYFMm+G5nd/trIQgkmxZ+FWufRjwC/BrnGPlS9dK01JVtYlbzAXKG0RlZVG3C\nZi75BWcChdnstYADt31GrvEGCN12MYUAzUJeDgM6slcqI0/tQ8aMui+VZw2j\nbY7geJoS95mpXEOHntc7U1vaQzQ6BpYU0WMJj3TFUCHtCDM3RTQqhagOpxA3\noZ1o/HtEyhnxl4qW8eRLQxkzRQ35q5gHtugUYuXIVoexCuerX3PQQLStkpF2\nTAn5yIGjZ6LXU120DcwwOO1YZpTBMnObrFWABJ95LxxuhzqcBZExqx0WH75x\no0duyu6XMDnAEzMiobYw2+ZSHqJiXWDVPLk0KLYbgiFIN+lB+IEzmGsvb9Mk\n5j61XzZ9Eq7zDbLkkGPxo9lC9xq2wDDRyLzjfvuFP0vCDsT0pmcscFPW8SD+\nk1IQi4PtP7rPWQD5QYU4knAxVKoKQKAhsA0vgbvL1BvYFuwo86u8yNS+9TxR\nj/MMAb7F2jw0ZGcwTHM5LQjTHojXN2NxDYfn+1kQNNNFHdgbHF2+Pe4HX1Fh\nu7MZfrd3F0PI/TvQ15g3zeWXrI8mnyYEc/ezWulrTNw5KavIticVdAs5BQJX\nw30RXiqyooxztT2mwWz2HLwu1bGMi2v+xT1hI3yIRJAf+B5+QCSjtymrNa1X\n4sq4\r\n=qZwR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.4.0","_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-no-html-only-headers_1.0.3_1536275292734_0.22907674563960279","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-no-html-only-headers","version":"1.0.4","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"f880788e5d6e406dc2c1efbd3c33cdf69e40c5a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-1.0.4.tgz","fileCount":6,"integrity":"sha512-FZtO1VqBmI0/Isjqa0rlHwf/yBD2u46RVi1nD2hyIMlO0AQxzEo0JC1WEXcvBbbIslbawNBicdrmCZ8ONX95GA==","signatures":[{"sig":"MEUCIQDdOn5jlkSjXa3GvEGUazLA1Dm1qJV4Y3uBq9ENlFj4sgIgTUo83PjJFqfL1FdC4iRnDF3OyfbHXRSk0ET3AvCUWNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2kLyCRA9TVsSAnZWagAA/vEP/Al561ARW7PvV0Hj35lH\ncxhDJ5mxzusHJTT+7V+96Ndr0IUTCu84hol6ccwS3G0BhN0RBKKaYUtm4Pxv\nZXpIxl7JKWsOmrvAkqbPJyvZpvlxrTSBrLxMShlE3TJnWeX6jTqjYwtG5rGw\nWAx9otv1iNnqrKcxr5yprMFcgxQ1O0UNaBy0HNhGqNmVdVbsbQUgEQaT6c2i\nS71PJRmrLWEkAxAyHZEFMUBJwBCujvwlrTi+QLOlv9+CxON9lfARMMOpChOK\n59CYiZtr/RQhCMQPEUj78ZG5tvWqnSYWYrJY+PsCb24cDzOzVomY250ijAhB\nMKg5IF2eFvwmvrou2KMTiXQStVcDQr1HObtzHE/Dr/2fja4zi2XrMQvvO01p\ngzgdtRYET5cnmwWkYRwfEZT9iH2E6tToJDrEUH1uIaOvWH5LPaAc2yfvhGHt\nbfVPZCZBfMoGx//zQo8mq0HdQnyHD+hkMrX56aWzlXP1l5n1D6dCPUSWGnDy\n997Dl0hzMfcLuY5yGXVsYZQqN2Z0b356fRwn8QgCa+jmTgLgT2HyRJSn7saK\nHaFIM6hb0Alq0Upy+wjFSCk7ioR8Ci25DyhXHIF6rClNLj10XkXEdJYlw1/X\nsMYJCSBSZlUfsNs+9szdCF07Ll98WGL8fF2/xvkOwuMRK2i57Kaibe5gf24s\nCldn\r\n=XJYo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^3.4.14","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"^0.12.0","typescript-eslint-parser":"20.0.0","@hint/utils-tests-helpers":"^1.0.1"},"peerDependencies":{"hint":"^3.4.14"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_1.0.4_1541030641592_0.2703837725694247","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-no-html-only-headers","version":"2.0.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"2541dcb31b2604605cad77ed5782a28a7ea281af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.0.0.tgz","fileCount":6,"integrity":"sha512-5AFqXMmFpt3EbAW/pLye9bll+B1wJJ2NfcOXqbElN/ly0xLltk4T6LRlG8mWiihVkwKJaeJ1vGCWNJTCn2eQ1Q==","signatures":[{"sig":"MEUCIGrDDHKgiab9FSa43EL0eTcnc8eetSty33l8w0p7RnrmAiEA/uJGUVNdNSNXN1QG5SKljdpFr5jCpp9FBD+REyGHzLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4N7bCRA9TVsSAnZWagAAq0IP/j4v6yyJIetRRqkg3GqL\npZ5k4v1VnCjoTkefRke0tEM3vWGgso2f2IzH80Satgu15Oa9RWqGmvIw+Rwh\n8BL45ihP8qHqrpwDoK3uLXnnmtrdIYKLC0C33ZNfluhT/eEyxk1nBehd6sDG\nwypDJRtEB/ueIkUVSoGulf8XfYaLwRvV2m6XXWRyN17nQY8PjuaNJW26Jo75\n1Esq1gyCMwK5V1A5GVIuXHCAPdrIKZNQ1ZhsO3uPlEAuUs4enE8QSMk9RYdU\nXesR8/YuWRy8YuuUnsycZhZQ8Dqq33SaB7BJv5eM/w26aMUY8CtDGpeEYjqd\nyoi2Iu91/TdUybSJWo6Y+iqHx5L/TL8eAeD9kzCiKAFFyNQla9A4EQZD8c1l\n4Mad03RxRxHbk5XvjgJ/sKqBEsqC59at8GVI/+kiCx5QqnjWuCXpg/YM8N62\ngX54DEVLgDpmu3dTkJwccjkGoVkqQhclZF8KWF8KSSUsXn5eoHPKdYSVldM2\nvLbmg3dkx3m5R77Zq/prfVO6vbwb+soy4eVaCwYVwSNRcBanfzQd9ck//Hco\nuihYYJxJ5mq9jWZeKIeYqBSD0jYQXOENFxnnZq9x83Jy1Xl3pd80R4wBSd+r\nwpchOrKLyY+6KrxKaBt3c9141f+TPoo/4HOuY0+5QRj6Dlqh4A+y6UTYAyug\nJCUg\r\n=qf9+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"11.1.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.0.0","eslint":"^5.8.0","rimraf":"^2.6.2","typescript":"^3.1.5","npm-run-all":"^4.1.2","npm-link-check":"^2.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.12.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.0"},"peerDependencies":{"hint":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_2.0.0_1541463770710_0.8384347647713262","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-no-html-only-headers","version":"2.1.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"e9eb46f63e013c6889f2dd263039291ed1b5a27d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.1.0.tgz","fileCount":8,"integrity":"sha512-Juy81RSQ9+io7kFkzcRlc2bHbI4BrmSQ7NH9zkzf2488BzJULtViT9S6N9rMQW0kXWva4D3rkKqRQCoslEy1rA==","signatures":[{"sig":"MEQCICq9Lh/WsgnQXLhr/M0Vs4UW382vsdnVs2Ox/0C0+ihLAiAkdF3WDtPaHQjQ119u+vumk8Y7P3Y0YLPZItIrjkkJhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/kYDCRA9TVsSAnZWagAAjGUP/04xtzY0RqgBLV/Fm47l\nO4VaSp/YlMVnkiJkuDvxpCYBD4r4MRyds7S+VFtF5uwwXIf9paEjkLhCC+Xz\n3C+44HLB3+OaojiYidtGppvWq3lYeG836LDlkpwYSktMyojrNqV9gm2rOmDs\nyBKdaXiZrTkxdwFefGtLnbZuyF+8i/saUKCDMGORU8bHv2xr4shX7pBtQC5X\nCmHUwoKbfCjuesdfBd8xMSvK8mJh/PpTVQ/3hByKqs5VNTIU8LiTYbdxM6KQ\njwlARBuClAKzDZVQMNi5PFycDsT1VwfO4lNy73Ofy4iJ+woTZ+CmlFiueCnX\n5jAqBRfaipyoU0o7xy9QjltoM97S/z1uJ0mK3KZzxiJwL/0TPIXj/8zCiPAb\nXCTG9dr/xPTB+e8pXREhqhutEjdcUmy5voEVZSbKmNEXMh8rRXUwnfzyhmwN\nqvmVn80RYnMxP4arhm/0Kkq8cs+bBi3QXZWLFmmJucmcSLQztPvj8R5bZXbC\nwRbJxSGrIpjX1UGMIpsSTcTcX9VbCmhk7YnQlwS4Az8RRZbCDY2QJKdMETgl\nweYbsGfe7g5lAtUojHnrO95ogQtqng1ZcwfxqIvfpY8v7Rf9KX84XQu/PWIU\nrzk1eDUNMm/9heI3/rjpyVxYV2Qv3+SGXArXZf6c30vHHPkMFFIGGgljFXEo\nFoAC\r\n=3Oec\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"11.2.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.0","eslint":"^5.9.0","rimraf":"^2.6.2","typescript":"^3.1.6","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","markdownlint-cli":"^0.13.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"20.1.1","@hint/utils-tests-helpers":"^2.0.2"},"peerDependencies":{"hint":"^4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_2.1.0_1543390723162_0.901566696407464","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-no-html-only-headers","version":"2.1.1","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@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":"35a9e74a05df67935c82f8b492a81322e8314fa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.1.1.tgz","fileCount":8,"integrity":"sha512-7o9cImFpuUFX+FjJZ/uHD/jQP/pJ5GmF1/pdQsZpsn1Y2XqMdRvCG2UK4I31WCNhTTCI1O8Kojgvd6HxDkX5Tg==","signatures":[{"sig":"MEUCIFeeoUoj3WkJTCOW+FQZFUh9Bm4t0gxFu2F2+8g6C4kHAiEAoiTOM3hauVchEzFPrIbqqT8wGYDO4OenxEtxRmQ7WjM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLSu7CRA9TVsSAnZWagAAIqoQAJdH8lHfUAV83+rBSVWA\nNCMnhryzCDeqOHQOexMQYSDYf0n8FJAjHF5wronW8niXqXDlu4BhWLFxDB4q\n19OKt9rbXhp2BZdKMqE+5eBiiEHhzL8TQwNz7v/rccCwtOVvxqUggMj6H+2+\nfCiQjHSGroJMmWkW9OpQER03xThIxou67+FVZJV9vScZjnirRmwzTpN+1OqY\nmNZgj7l4OUYMb04CMf88m9FRkITAWJBqorvpCrTxId5OkqhzjR2LKpwY0K1/\nYP5BQ8yxedb+CB6MKLdT7TL1ZZjBqUw+Bhnv6XT+e/9mQZ4XLJisct9G6UmS\nxTb9cs7/T+t4ySeCfZmidPCUPcR39AfvyvhfYgWFZMSVtSHa6vVzj77FKTPf\nlsB+a/lGbOGS6UpcKO6pnxf3JhNUfShKjOKWjDPRkF8K21aViV5sgkwby+qF\nwdQJa5qCUPFmMyZMGWULc/xIHT7MZAIDVr/e247ozrUD5FYDj2xf3LPBoFQj\npQALOUPVBZYihrbPPktYTxkVZ5cQx8DhON4jtW3HQyeH3AgMAdBsXYgH3LEr\nVXzQUl4/cdvIsIdgLNfsFNRsJfp/A4tmjp0jbpMgdWNjHUhcowbMkjelH04n\n/bTSOqUja3TzOPTu+hoqOSk0cpwM7ElCBSaXFtr7xQT9XkySuuYeEAkre5+K\nT7Rw\r\n=gTNW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"11.3.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","cpx":"^1.5.0","nyc":"^13.1.0","hint":"^4.1.2","eslint":"^5.11.1","rimraf":"^2.6.3","typescript":"^3.2.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_2.1.1_1546464186963_0.06672877337689509","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@hint/hint-no-html-only-headers","version":"2.1.2","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f65d85e1ec4b470b553532087199f1ad3ad5c63d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.1.2.tgz","fileCount":10,"integrity":"sha512-xtQ6lVuln9SFOz0mVDlpzOD9YiHe3cY96KLzhfNkmMc91EsaUOH4XhfeHXHksShRSpiy/yCL8NEr+imvws6UCw==","signatures":[{"sig":"MEQCIDwHxSsnKtz5JmRzEtpvBXo1Wx3p2rRSdkavJPdYy82QAiAQDRbHQGE56TWdXxHL5biSBhYLRD2ScS0K1t0TEqrb+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccDgnCRA9TVsSAnZWagAAq5gP/14XJh5idwax8tkxRc2F\nccTK0d3vYS/3v2ap7wRztcb5yD+mYfcMW+uhHGxxMDuNe3FRklq8OgZ8wvM/\nn1D35rQngxtdlA5zV1TZrUBmMkAZRvwF593qayHh0ZnaijaUAJIZrlWQ6Icl\nGg1z35mtTTsK1M7FvxndPkGhJnk//nDvFRFFBdxsiK0qsWolM+t7c19e7J2r\nfw5vT0wGWvoh628mQQ/1+lJrYlDZGOFkABZlLeNxLm0HBJ+x00XgD6Os42sI\nlZltTtSVkbE2V17YO2DhgxANKV5ryFhSX16Hx16/AYY58gulbH9bhVIdOlLI\nj6ogWynkWM3ur2wXKbZF4oVMku2Ue9R3cTlEpm5fd2uxqP7r0T15ERW8tG33\nebAYA2Zx6OQaAwGmXnu1dvG5iTJMVCfpXXosfjb6i2YvfZFoz4YiLkJKfEb6\nxbXCtQUP7f9uoMA+Y3PrQLL8fs6NokRzuGUTRwvcGLRwWDKuWNjcNA8Y3Qdz\nkjsT3oYGbKbI0DQoYYSi1iCSTdEe+cTbrAIRr3MC4KTIhIRkDASWViYj/Nya\nDXq23ysmszRrqbfCkUWevRwv4V0teDZURGzgTZCFJWayk993yq61XfE6zhvt\nVlujBqNGc71+aQU31XfOMFkknG73pACZ8Ju07yEnKMOb03Alc/j7/5JuOoZx\nqPjM\r\n=fC/n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.2.1","cpx":"^1.5.0","nyc":"^13.3.0","hint":"^4.4.1","eslint":"^5.14.1","rimraf":"^2.6.3","typescript":"^3.3.3333","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.16.0","eslint-plugin-markdown":"^1.0.0","@hint/utils-tests-helpers":"^3.0.0","@typescript-eslint/parser":"1.4.0","@typescript-eslint/eslint-plugin":"^1.4.0"},"peerDependencies":{"hint":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-html-only-headers_2.1.2_1550858279092_0.769921026000919","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"@hint/hint-no-html-only-headers","version":"2.2.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d5c3d1bd17f1e1139512dd5abf21a0b4364bc69c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.2.0.tgz","fileCount":10,"integrity":"sha512-Cci30PXXdWLkbObJ1ACX83kMNz5MDxjZfMLTkFv6P1vWIQRj7TsqckEd04eHZdrEPiWlAFVakt7eSNhcll3I/g==","signatures":[{"sig":"MEQCIBnH9Xl4E9llisnuo0yaR2jgLid+z0ZMUorvnkwdeBKUAiA8N25l2OLyf2q+5fpxLJFODYsncW9lA8np0t7WGfQX3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc23/HCRA9TVsSAnZWagAADFsP/36CpmpzHykSW0wKmPTE\nzaomzEDzFmo5OAN9fQF22HDLbleTW5ByocLgwUd+xY8mV/j/SyfYrqie+GyX\nFEVf1G76q66mnixSx9MAb1wI+ZbrzK/HMDdTq+BOCPiJj9946yirkj0d9sHH\n/dJ23oSzuGA7v6L0Tgx8OK+xpwe0qtPgyPTxTGDufsblXb7cv1oTSG6c3OjU\noc4OcEGUOFuSm6EIpq+Bv213juWlwnvSrgAy54U2z1epyvjDZeXAMvUE9hfg\neoUgpiXVFH0zQaTjObeZS/vEUJ/noTCFJrd64mb8+f4p3LaLHIqDmr/6Vv6m\nqbrBwaf6MdA4Q+XaPtDKzPqjysLqGbLZh2fDxItSTjqpubxNDpWlIuHbymo6\nyiK07HkmFAiDLzhiXSUDS+MWya61rOOh7i9ySWAT7sbcSmZe6iqw9sZ/Lohy\nmj3F1ZNC3Hk860v/5c91dOLmIQhRAyjHqA2LTxUNH4ZE2gvuFiqmqHfzGNjb\nFMp5UTao77GEAjP9h3bi8QeUt4DTpPx2No7QqGhD8Ctw/aehg5TqX8PgYSVZ\n6kHd5EEZeYNFNy2tfijXQsxQ96RxTvldE5oUGSOaGO+NkM11eZzHN9BAwxXy\nN3w6KOvy7pKoaIk9jFxBtp2QsHuxswVY3l0bWnqK9eKJrlLrLH98jUNh67G4\nnm8+\r\n=/YYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.2.0_1557888966284_0.7698840521223296","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"@hint/hint-no-html-only-headers","version":"2.2.1","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2ccc569b7019c075864d64d8b63f454d8215dec1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.2.1.tgz","fileCount":10,"integrity":"sha512-CtxfhtGhdNtFRSDLYaIbYNtiKvh15g1tx2OLzVII6+zub+4JjpEyGo73EtLSBWAYmbLniM2AYgQbwWfue1mMww==","signatures":[{"sig":"MEQCIF7PdUllQjHK6ypFWogC+sqgSqy81Xvmnt96Dz80lzStAiBvcYnk7dp+kcOzBdDZXrAXAsDAuYELS1OXPnLmexdaWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25UtCRA9TVsSAnZWagAAZsMP/R3geLFl7VMZbr67KyEr\nn9ynGG7q878DqyQxAQ7SAErXidb9sS9Ku63s9Fr/htOJGn/8uuNSsarIUbRG\nG93soaSmnsQ+xk7f9/Y88cWnIYDwOBOcpgFG/Kp3euvaKhplwSalb3WlJTfs\nxL2F/e2S9KxWrUEoloCya/KLyEfCnEWS3mnNDhqZn0q2PxftRCsk6z2p3bAo\ne4ZYrsC2K1k9CRJhCcK1k1gPJfKErMMMymTRExqTQDRNpZLunqx1YZdji4W+\nL8Ott8bbYdiXAqhOVQGZjdbqQgjikMmqOrytjJBkTgMvsHoqo4WHwNLlVivM\nm4THCTrImJBMywv3OgTO6iVlD6HtGO2H/ZBItmcnUYNFnvfFjQm3dom3J6Tr\nRyWLx///yluRJ82NUlwMHTSoEsVvjfr4FUgC5BP7YQ5rwyFXjIdh89KW/NC9\nuUawhfhEkBw7MNr3vGQ3TvZIXV2J5O4ifIPtrs/bHaRiIgopgrUWalDgNlSm\nxp7/Dhfby8LIUKCoYJIQrfKT04hmXu3frrPwg05GlIAHRJvjuOilnpFE6Vl2\niakkRHXudH9sFxIOWq0j243CKJU2+XxeOPQ8gdf38RQb+lmW/17Pco7aPqTI\nnn3qAJVL+5Tm28lM5bXs7uDn0Jg7JRwjMxNT2wzAt7Dr2OGEMuSh6/8XTqZL\n6j79\r\n=sHai\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.0","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.2.1_1557894444639_0.28882416498219077","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"@hint/hint-no-html-only-headers","version":"2.2.2","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f8cd2a6978776ed30bcdf9800e2cd66e304a6bd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.2.2.tgz","fileCount":10,"integrity":"sha512-ABR9ga/OQn5kQGSMYtSfN8Ux8SCjbgJaHdUtqM7gkzGCrMKbdKRYUzA/EE+I+vPoEhvHGuApZ+lK9zTM1I6U0Q==","signatures":[{"sig":"MEYCIQDGdyEHBX3dd+Xhz7QT56z288ZnkM3WWiFq2MpUUb6DOwIhAJF8SduDPTpcL5nEABgcMAqTmUZVWL191J+KtcrPyZO2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sEuCRA9TVsSAnZWagAArU0P/iUAi+sgGP7k14AUHCL2\nTeo2MEuMZnVmswj4pjFbXlfEUIaQFhKdC22TOSldbVcsG6gDIbR2puSD13cV\n+5uWxSA0UJ0hpT/szgj6XeCxczRfz4eYpr5XFVdl36ig1w1Fl4MEivEXJMVO\nj/sy2vs3DDRHSnBrQ7JifdacXUlIGoVRM1PJgqPKKjHJnG7WPSqCW2IWYjzo\nCrUh0thyjcRGrttWnZKGfXPYVkl72vGgFH4WsduwZRR0QtY9KQ5IndIxWJzU\n+iFRYRd5J8Z3AgtlPk8PGzCVjtp4lJbC1SG7OQ1OzWN0C/vTCVtSm2Mrd1G9\nmScEcUF/uf37hk37L98WDNbi2tNXYXXc74InajlVf655OrCVYocLt7JqPbGV\nwtbfuKnKnfIupulDQnB0FNU/7U8rHtytV8O3VaLqmv3VPkm2fOqM76RolG9L\nvO8v9wZuA3OLK8qGXGHFSuLauUahhHbeGpmAAxCkpLMye8GUFX7M2QOfR2/Y\ngbGhSoOJkz8V8VMeYV3JM0d20mwhA9H8xZYj7hioO6ESjrZD2J+cIOn1quyd\nIFSn2UsOVsmUwp5FmHeLOTz/MW2kEwhBWMwOIqRGpISH0nc7bp8qyEjk7K7Y\neQe1I3ZLRBsbW7h7wuruwkB9vNftANjP5+Fi3UZEQUksxTybKTGBPvD7fQTl\nQoiU\r\n=y/5Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.15.1","dependencies":{"@hint/utils":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.0.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.4.5","@types/node":"^12.0.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.2.2_1558626605771_0.9869837291576511","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@hint/hint-no-html-only-headers","version":"2.3.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d75f71dea7a263af22818f7aa88d2e086405b7bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.0.tgz","fileCount":14,"integrity":"sha512-22EEDzdx8QXCrKDtHNNUM/S4ElX41IYAqI10bo9+LKu8UojepcFC9gvkqLO72STjSXl6oE4BWe5z8hh8lJRO5A==","signatures":[{"sig":"MEUCIHrJgYc45v56Xb98umDRGMyQtwnlS2ioGQaKJANPYOaiAiEAki8xDSKcQLJJepO0MUWWJtYhxHDr9jcIGCWiadL1zK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzawCRA9TVsSAnZWagAAvE8P/1LIg5+kzscOitKY9G7O\nyr1mwLRyCDjZ7gWh11cn35lHxDURrh6fWsEDqHAiWw5LWXFpJ7jaSPYP7BA+\norxvWPXhQiUzIjreppAX/HdYsa/XoFR4+0zf2nJokIQy68ggpe7nEDheLm7f\nFcFbaw/jDedIBJJfsOXkYc56lu0zmsuHmkeh5CnVjXP6mu/lMs0mNQfrpNCW\nbZPq2TBeyKoNhVmAkD0OqKn3d61FgmuBU6GIG2dPuBWb9xJPARQPlFU2/WAR\nt0Yu/FhPTA5UUnqdWaablUnrVRbML+87xUtRwnT9Xv2Zrn2HMhySyGB5ET/K\noBuHlFm7YMynOb2wRE9wuSXLMKv6B7BHTplOVk13+O9IXj2aBQK0/SUf/4Ux\nYuKMOa2EXNvygHjGRkkuwIjgfmgs9YWP4OquRLBjw1GGl/APIATaCpWaiouW\n8jwVRUXx5gAXs15u1+KzcF1U7NW49PwpIYucjA2OIAW4YNznHQ2+8zg6QSU+\nIrSpHGysKZ+h2+mL4XMmeRFmck63wirxJyniisSEhQt7DQ0aYH0IqH+WsisB\n6fSfTyyB03kq4tZF8hA/9cKRw0zNhKCsn0EfB2WA/W/wp5hgjwB9wA9V2IrP\n8kNz/5oty007iheF4qYFfC03s0P8R2Z1qvgT5AR9TR2at9Zxo88Fza2CUeL3\n5FaZ\r\n=qxAj\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.0_1563899567405_0.2056235799932622","host":"s3://npm-registry-packages"}},"2.3.1":{"name":"@hint/hint-no-html-only-headers","version":"2.3.1","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"4014b45a6dd3d05605a2ad815706c7a3c46ad849","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.1.tgz","fileCount":14,"integrity":"sha512-80VU8uFHWOILuLFzfWwLpoPfsJWU7tx0HOKpHxHgJBAWnASt5RtZ1DsA7sOMe9CwwBIxb5AgQ68heuEQZa9fxg==","signatures":[{"sig":"MEUCIQCTTUuhveU4C4A9c8Rx+75dcNt0vyM7qxxO6/dslT53BwIgQasy+P7QOYChQxEgoyJQRdjSUPt8/ZIl+yo94u42V2g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMuACRA9TVsSAnZWagAA644P/jiJDt7KUonXNIZquH3g\nT3mkwSFC8a9NmYPSdX92LWtqrS7Vfa167xxwg7fTuDxgX9Zo62hgP4TOP3XJ\nzmOI86QN1GotaQn57DM/OvljA7G5l6imlwZg4JwfpECRS4CBKhSfayLRbUt2\nerejs8cs1ll9cwuC8b5f7i4qVqitQbBoBtqiqgU02dGt1/2MWkHlBBOni03d\nX00xsDVnrFTXdVyAjuM7b/i8aG8LnPIMjB39Y9311p9W40mtRA2EHoTL6KGb\ndf2MQTEQZKyvhsNnT1R7A3mKksq5WjpN1w7gIaU7mQRtnyzPAyyszsClMDf2\nOUN1ueJ3XKQ6fksNCUk3z503CrZx0+9B7KQTJiu4dqazzxsVxjP5KEglHTnN\nVeKkOKfRQZQR9Fp9E57JewfIEQvR/XrJV+HcAK46xPPZn2q7OoJ3/RfdW5NN\nxC0HRRfExM5sQ+/cm5qw52Ui4+cS11aC7QejMxLCiFB1tLY/dV6jRT3dDCPg\nFZUInqLpCcLG7Xj2PaydK0x+sqhit2xS5PuIMthgWouDdJFDHH7P0R6WkUWN\nZWpSZcXd9y9q0JWGizvmqPSlK1JyQFqEqBAYMab50XTkyfdWTMEsNkNo6Lfi\nVTyAfmZEUBeIdNkkAP10iVA5aYIIY2LwZRmJzw/PbcqOFv0/4PpprTH9GVlj\ntk6k\r\n=SrUo\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.2","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.1_1564003200156_0.6553237817769779","host":"s3://npm-registry-packages"}},"2.3.2":{"name":"@hint/hint-no-html-only-headers","version":"2.3.2","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5bd607f605bac48d37e8036999f267035fd17c41","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.2.tgz","fileCount":14,"integrity":"sha512-CceQQps/bxOsm5cKbH9f7f9Mtu5mmbzGF4O972uaU6ywi5pojfH8PKtdfFV/b5KeEStE56aGJn+fdL2a20FUWQ==","signatures":[{"sig":"MEYCIQCgsgkjbL+fnQdmrtUHdDTdu/QowV/7WXuoCpyuJhMGVwIhALwsMmTUEsY9UQJNRfdqOj+evF6oAJp645J5x7JGxXTM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJr8CRA9TVsSAnZWagAAU4MP/i43yQQ1C8SOYm2oKPRW\nH7sQKU7YU5tVAx3v7NFAoRvSGcXRpujkujCzVVMSXcyes7v2z0nqyyEJXxve\n9gMaW7J85GDavxqGEvwvaxtIxReiWW7iY1kold4xRwDKDNeYaSEHSGujrGW+\nxmUgLk+Z4J+fjlVE0wszZ/va8uSGfsmWeMqkEQadkcDwaa61YWqSH/c1aArg\nkx4tznrz/Oa90twbsKBnZLJu8taJLafu/ofwoigo3AndtyAiLHi+NIIoP+CF\nZVJqDuD6fNw/JD3WbJZzq3VXTf/slmq3A162Ept0d0GShY52tuSWgciGDJvo\ngFR2WEOBuBndVo6QqRdpcKR/4qpomNINWOPsEEa7i8p0jAVcO77lOyXgB59a\n58EuKHJ0warx/nVoa+oaApD1QwoBKWOg2TpcYY4EtFye6gUHX8GHAkpDB14/\nsXWczx+LQdgGBns7iIHcRQ6gGpUhVP7Z/TFawo2qp13FeOOIXPj90e+LtBJq\n/6i8uF09MKEHx8RXjip2SnDSgbgudPhahEppnmi2hq9uiZkXVTQANmma2epO\nHliFmQRi80ndF69KYRnUA88UuFdX/a+OIYlDuDJ5Vu1Ng4To+JFwqSG/kNhc\nO3uOSxU8fpIfID7tXRgMbIL+uDgaOJSAhn1in0s3B/6xypxKTQ2rqiXRbEAB\n7C4k\r\n=6VWx\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.1.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.8","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.2_1564515067818_0.16132748811604314","host":"s3://npm-registry-packages"}},"2.3.3":{"name":"@hint/hint-no-html-only-headers","version":"2.3.3","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"56c51a7b8a924ef00faa157b23bd6519f506fc6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.3.tgz","fileCount":14,"integrity":"sha512-6G2o3Y3/gZ0nu55sq12z4Spu8k85NDTCoGdR2Hzh0ZAAwqraSYxr+kY68QGqqdMOxwKTpeQRwJ/A1knlfBJuzA==","signatures":[{"sig":"MEQCIDgSWCjees2NPH2S+Fz3o+ovX46f3U8UdtvHm2HiFLETAiBTvMe13/eYK4Kyi0DDC3G8CzNn4cTWyKUUtCJRd/FLcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeYzCRA9TVsSAnZWagAADjYP+wShzwFerMQpQop1ctIf\nCryj7iC8j9n/XXL3yqjp1ga1txfFkHA91X9US038QVNCMB3FYeFyO7sXLd04\nTvFT3AceQUEnEdNKGcmCxBdIJfB0YmgXrwrOMJ+INixOY3uwtoKsaFix6uYZ\nGJmaDTWTIChnhq5gAnTCV8gKs7eMgapIDjWp4H9CaWidEwaL77vh8eHSWMtJ\nGjHPWHVevKMT7ax07XdOv2VrlT3vZWDc5q7rSHBxVucfwPiLvhSmhx8OCENe\ncTNlDJnZ3QsOEtjU5P+9kLg2VygKpZvKw51P6fFRG71iTih67frAHI9ectw4\nPLxXcsZaA4HEkjJFg40cmQ3UqdkgI5GiHYGbz4Mee3uWpEvFpdreWYXVx2br\nR80e2dmRdryKFmBddOVeJTQR/Z4HVp1QOHbkMcEphUn/tZFwmZAJ7M/tTYAB\nvxri7bft7RQwYK8K3kYA3icaMooNPhNyf36mHpaPtjQ1S1tMLjQxqHN5XExP\nER53pq/lNuqbTz+QZpZNI6zFHPEbXHuIP6/pI7Xu/bNyhsTc1FyZRQbY5th+\nbFECUFeO7F9Wx13Ha11sbsTvGWB591N9Dzepa4V03KB7zMq1JUB+d0opmvU5\nYxYGfakVdplOMNTIN7oJCbpv3Jfy6HH+Ah7AcNS3/YvXXoHTL9iGlOtdVzQx\neMrl\r\n=X+N5\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^3.1.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.0","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.3_1565124146886_0.7803697155999871","host":"s3://npm-registry-packages"}},"2.3.4":{"name":"@hint/hint-no-html-only-headers","version":"2.3.4","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"54e459cf24a1b5c4bc46a6af5b80a68a0ba0f752","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.4.tgz","fileCount":14,"integrity":"sha512-pzUqwQiAjpjkKo5WpV2WejeUn4RALMYFUMn+jl44T8BxodzIPeSMaAfvIBwWN5E4bYLZVXSMKA6XljS7br/kAg==","signatures":[{"sig":"MEYCIQDvHtCcmNMeCZTZ+/zamcgTjp9igDXreyz+cgBRzmkoHAIhAKfNS2Mrl/gPox1Z23SENWOY4JHyaWdROkq6OVEsVIST","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhd6CRA9TVsSAnZWagAAe/sP/A0ztIeOGMNkMXQtubdH\nCg0rRYOdwFF+gRSj9a2g/Gb8l5c6R7lQvxiHeyRxtMLbh/I/2qFTRvgFSDiD\nXWMEtVDemi61WpMCcnwnBHC/vD5rZUS2auJt8u0JxxY9I8qYJQMtccFefCsR\nJqPw1HjWNnuX9Icel4JkWJ8vwXWNoqvItHl2CUr4rm8hOpImEavND76+sSY6\nl+bSWD5/2GnlgrL2yrLJQBKw/OLkYi8vu/dFyiVFtluGacHtjxbSZR638GQ+\nUYy7t9KGDua3yLF3qLfcQ8jNhxY+maqW5dq4X/nsoBnnjH8zRQN5tMtqJ1Pc\n2yyxstF/Lc8WjisHejWC0lQ/WfwiDo4a34hzNAQ8yg+W8iqy0P2yUolbpDY6\nrMsH5heJleYeFSIrKKhOEkI0FDPKCOp9vBUJiTWs8qFuGxh2Giy0lnkmgtyt\niBj2GKuTtIWiENiGMfnk5CxmkBTj5y5fOkWMjydhRozk1/LpIUjuLoVLmd0h\nYet7PgEQrW3NXQ1+hoeI8WE7Ddo8g0oPSJqXcF9JCJZhObrphc1L+bOEMCTx\n6TtZZHDLA/5ye301NRUkw7ogDy0KGcFzwbufHf55MRwgOe33Ni6I9uQuvqMw\nBsVilAlgMlEgUYUKFA5H3EwJU1arpbL2lg/paHScS2Bz5SCYD+qNVGqXLmcc\nd4ZS\r\n=cvPJ\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.1","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.4_1565923194216_0.5564687376331523","host":"s3://npm-registry-packages"}},"2.3.5":{"name":"@hint/hint-no-html-only-headers","version":"2.3.5","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"f5c294b92857c21d00e2e9ed4c1ac1b2ad653243","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.5.tgz","fileCount":14,"integrity":"sha512-8BNs5z6W0S7KN6RR6oVpxtsYWThgqf05df7xOCbojz++tglNywdCMSq/fhRPdejqjtNkLrLC6K1iZzQqpbCKUA==","signatures":[{"sig":"MEUCIQCQ+ROPXwuVC7nvPAxSmtGXPK9xOZbVlY2ZJIuYAOTXgAIgL3sytsXTEmlYo0t6QF9K+xmW0rBhcxDWIhCwZ1ZjQAg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/VECRA9TVsSAnZWagAATDIP/Rm0NgAIZgz9ZYwNTBQo\nn9rEj0jWO+/p9eaZKOX59wgssHMv3ZLPA0dRIaxcr9+mKUKPEgKksVb+pWEs\nsc/Xxxt5/U9UpMVL9KahJyL4l3xENOoDmkACbe2goMfRcxsyGqNdDt+sE7fN\n72YkUfKPBBt3R8+MmnBLRmCnTZIzItFyE6XW2b5ClqEtOqX05nl5yuXkjkp0\nqrALZ85VkhnwVY4Yt6A6GQJ9bRlTydJSdk4mZX9hv/CgqXVkMq/eG4NWoOOs\nUVqIlXThaCb4S8rFu3594GiA/7JdVNKh9d4dL9RAcyFxnEAoUXTcQyO1+i+8\nU8y7JqJtv3drb3PA/CqYdYoAEeUjKJKHQuv4e87pq6OK+3ICwFkdT+TVqLpH\n26skCtbpbV3u4iXU28fiT+vc/ui+KOB9zBd4vYZ9Cq2UXIx2WQZaoXzKoKoR\nuj+ZA8IvYntBvPDl3JQaEa6maUWtaau/tz91/n5gBjbQsXCKbdwyD6AXJxCe\ntkHgpM50FVdLjI5Ye92OBE+lGicZx4ngcrcSRYMFu9DhXJPg0MzWiDB88L1N\nIoWLJpjdYYCSwLEmAHNWQgUpaviZ+8FPY5O2YsCUgw1t6gSs++K1x/N/jmjq\njb6STfU8wryTk74hZWKOfbYYCmkC6lvtnOWIJMQrWpoU56pqYbqjMk8cXr/h\na0/U\r\n=DhUr\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 that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"8.16.0","dependencies":{"@hint/utils":"^4.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.2","eslint":"^5.15.1","rimraf":"^2.6.3","typescript":"^3.5.1","@types/node":"^12.6.9","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.5_1567094083347_0.33488453477677727","host":"s3://npm-registry-packages"}},"2.3.6":{"name":"@hint/hint-no-html-only-headers","version":"2.3.6","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"c3033702821cc8c4f34552e23b11c16732c72279","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.6.tgz","fileCount":14,"integrity":"sha512-Wt8Tv+vfPWgE371emMuwCBk8lCnFFdST5W8KTbhbVtbWrxFJy5q2jE1tTf62ofnzNgRIIwjz8bE2d8biR53rSg==","signatures":[{"sig":"MEUCIQCw5xSyibmU7leNrXKqy9F64V44HAV7DtMoLDvfekYXEAIgdbfTOlEvlmd1f0KpanVwaNNhudASE7MWEy7o1z8pcyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXXZCRA9TVsSAnZWagAAI84QAJFp63ciSgVlrhSaNEzY\nnRkYCTpl87GTncavcRPQjggqVE9aPEyhA3tPQI9uSWghZr1GwBMD5IXzDtWq\numO+p9sBUeG4IACFCsYgkSA7NfRbSq5Ur/BkbLOki9iQ8IFsBsdy06Ho7YDd\nXEzWZm24zwv5UfEttj0XMjIygPIBYCTgtsm4L0+i9GcheZ6ZN3gbtHcEynJZ\nuUZUPsI2C7nCnI7BRGQYNGRCx+FZyF1UeAol0j8lmy0PfeW+tJ3o3iHJkRLW\n3w3dSXjDtEmD8v2a3fCscr2j3f5PNyb4ZDh3qRw1ll4ausYvmy5v5o96YePV\nZZvaBw6MddfGU5QXoqv/cM56D7T7D02/qsMpX7XkZcqWdT2KTcjmd9sLkX9A\n2YmiRo1YyWS468dwHxR4eW9lkzTBr7CfoneoHiOlOpbt5xVPcRGAA+O0Dtd9\n5hGXen9B/u7UjQCfN4lNaFcNvXzAO0Gm13GH584k7TUgOqGzeq2gpTFnIGbZ\nVrfpIMvEftAk6/8pHPUweE23sNIUtBHsg+8PZqO9GYHG5dU+hjqN+IOIDe1A\naRhA79j6TrQWWWMDIKXIMrdMxQvvjiBkW8yxUAYfH3GLQYjY0RlGcJ8sdM2E\nft7RUwne1KUg9UYhzr7xTYyY4VJuKzz0Q7vVFImg7e9nwDEUhxfTUPdkvDSQ\nqfmm\r\n=V7af\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.3","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.2","@types/node":"^12.7.4","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","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-no-html-only-headers_2.3.6_1568241113368_0.7083554604092512","host":"s3://npm-registry-packages"}},"2.3.7":{"name":"@hint/hint-no-html-only-headers","version":"2.3.7","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"ce8423f856a66e38043688deda5e656f7250ebd9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.7.tgz","fileCount":14,"integrity":"sha512-YS5mKv/vTeyVtoH05wcKsUYMqP4G/r0/hxs8KRvRahiaaE+2u8TF61Rf/NtcXBQb8e9pxtksuOX7kI1BJiQULA==","signatures":[{"sig":"MEQCIAm6a/USs9IgtoSLP3m/TdML/4Q3eZLPkKq6KJr2E3+LAiA+DhKO6XcR2IQQiETnFZj+y3i9yAIOoqFLEXQSeCi7rg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8nZCRA9TVsSAnZWagAAzN0P/Rqz0C/IIRlEtNdEqQzD\nHc9J6r6NEUdTPAvzLBzVKQ4DeIwG96+OXK+4SqtdEvVqLM2xYNX4GgaBLNLH\nTBCaBNiZHqPhCB0jIVeZrnRgUA5oGPLG0zSV17cbeUdpjZdhNeY+st0djoWJ\nKwy+5Fpil7gDZ9Ijr36pQZmM9a8PC/DyiY3tav0Maw0FGlAVhNy9p+cP2M9H\niTutzqY8NNIkhxPtpDrRExdNZ++msnrk5pyNUXr0cy1T8YjTISKnGKsEE+7v\nUblkEroakIxorX7x/a0S/4aJHzZw8eWLlpEfkGzCNn8Wvz9TkTs91AScNrhV\nVwsTuB4936ymMW1H5NSv2sc2hC65wOCvYYiZqgLkvrxR4dd3Efm42Qjje5o9\noBu9eUY395q8mTkfn79XTAuFl0P7/mpn62GesobMhWT+Yieilya/IprT/3AS\n04aAqxKsTrG6LUJ0en6wMWQt4LcyufnxruRirNDHD//Nb3CFNYhKC8xaVSOA\nOFa30ZRGoq17n8FsWhaP4elqFYqsXxjf1fpGrdMnbJXngbu8JmCkvW8oQk9E\nehnaZ1NG2PnZtQ4hNQZnvY+PpPMYEvDSWmk0CGTTd5E/G0xZNUIHOQCXZCiO\nsz0C2oS2dCgLuA8IkICCzsfzI+KxBaPztqHDRVEI96qx9qkyKOu4bqoDVpw0\nwm6s\r\n=T96J\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","hint":"^5.2.4","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.4","npm-run-all":"^4.1.5","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-no-html-only-headers_2.3.7_1568917976501_0.5269644998267693","host":"s3://npm-registry-packages"}},"2.3.8":{"name":"@hint/hint-no-html-only-headers","version":"2.3.8","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"7653433f780d1cef9d62b2ed055f8496a37cc77c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.8.tgz","fileCount":14,"integrity":"sha512-64e1qVySB5DwexElhUT87TqbHVZUiKijOVYDs3VYk6fQ4VqzLIrE9Kyep7H3JzqzG56xmMIzmhjXK3crXZNDew==","signatures":[{"sig":"MEUCIQDLIkavNfiYnAcFuqdA1bCxTJD2zPyrONszdZAxGeXh6QIgHQPbkE5wmczGTv6XP7x6KcsvQM34/OP86qIMBnDE+hY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46868,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim8TCRA9TVsSAnZWagAAyn4P/0ZTLJ6m0OaoAzf10Y1I\nkdGDLdFNbP8mnMUK/GxRt+3hkdjYD/BNHkp4/n9RGHU9u2P5LFBjvHas7tZN\nPq25gtwca+ehZ7O32pDsnD0QvNkUHUEJScF6OCBPmsUU6BOXRIpEO39IJLM+\nBpE8fU6doy9JXVTRk8EFZ2ZhlaB3YebAjV7dUyS9cykJJIHRZcmxu/S6DE2H\nBEvD3a/OBoyLmXWjdcMYhrBM+KjqvmiWjKn+ncNETddHOZmwBJEDPO210I+E\nrtfMYx128kQSvtN5GauO/SyAK+qenya35+L0NItt9ZNgwMrPQDtAADaLz8h7\nlCLFNqYDfZ76LUSdSsiEW5oagyEnryx6Mz8uPgvs9bDMhXzKK/8aV2DyspL+\no0LYk/ZCbkSZas2Atsr+noX75hsBWIFFgzRa4WyU17zZCBbcpcgfJUxGI+ik\nGfRXpv9IJFwIl4nCD50Ni3/kEFJJ6HsmGa8WoxQ/MmGC02qJmrOvHmR/qLOk\nNJzNS5hwwvMQrOWSvOvZep0jA+Q3FdgycNRjqCqDCmhqPm5YdxRsf8m2QXpu\n4zvJa8ucFEanAgPgCDGpZmuzGge/6TK3lofSriaEXnmIpcgkM1WJ9pNzuVKD\nAXlCbTzzQrETDEH+vRsjNKp5StIraqdTihZGZGMGUAjemyadAx0yAG0n2ehp\n1g8c\r\n=0McE\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","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-no-html-only-headers_2.3.8_1569353490654_0.161599987749645","host":"s3://npm-registry-packages"}},"2.3.9":{"name":"@hint/hint-no-html-only-headers","version":"2.3.9","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"17655ba19a04934758886e9c3d6b996e002eb440","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.9.tgz","fileCount":14,"integrity":"sha512-7C9ItAbTwEioId/OXutLIk6N24lupibgFCHL065pixl+KnIsSRzaQlnSjNpf2q4W9gtcUuxRBoDEvS91A4z74A==","signatures":[{"sig":"MEUCIGiF4IbFOxcA4LUlHCirHGMfMgwZh9BIotlcJJ/AGVulAiEA+SQ39iYtlDeNdPSkWl7MBUZp9KXNAe3/AiXv9Kjmcsk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSuECRA9TVsSAnZWagAASEQP/1S/w3Bfy9pufyZsR3lZ\nGZ6+CEzQyXUrzRaOtta0ab5JmOeV78O7X7PA9x2ou60+4gK7R5FdL6ENiBuB\nrC2xfyT2hcusujlJcKW1VlffGT6fXGAKJ4fmhWKH8oaa/m0nmZsQSGYFOCnZ\nExaIbcalhKHG5a36LSxpTioGrxQIWN5dF+i6t3cEZwTHFkois0qTi0DOvKy8\nhhVX8sd8HVGbf+7LRC33n7jcL64fOK7C5knbeugEPdgrtpcCC6WGnCYJcwnA\nn4gqq71jyRZe17tHYE72ZvF54TOuFCFoA42AMXZUBYamI4Z5NCtcb76IrNXi\ncJNdkO0ffSLvjXNAYVFGiHXpphaZd2lGk9oSj0JHOBu4DllgT+7ROVuMZ66L\n7jxU3KK9Z/rgr57Hd5fHulcqL/8JaDn2Vqy1gbs0i45T5T6WgJwjKPZt+JRu\nrE95TC5C/B9fWnIW2KmDmveACjDhU6qrA3EPU1eo7STuZQtrq+SrKR228PIF\nYjSb2eJ/Aat+C4yEkdDrTVUCcp37W81r3H/TNLXsMXgpyn4dIKambNwekU3s\n3WjBlu7jBjUMq6k/UXc9f4hu/UwEZN6XS670uCt5H5bJuedS6bSAJX/JQnNc\nkAY7XaAajRgn02Ly9GdMaETjTDTmXC4BClPVxPURyv4YEA1zXrp3P2jRUADa\n98qm\r\n=2BVN\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^5.0.2"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^5.15.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","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-no-html-only-headers_2.3.9_1569532804049_0.5299396223952244","host":"s3://npm-registry-packages"}},"2.3.10":{"name":"@hint/hint-no-html-only-headers","version":"2.3.10","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"c7ff8cdb33ca49a19726149aa242072858c3e1f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.10.tgz","fileCount":14,"integrity":"sha512-OvTe4aBCTzImKO/+TxY3bNSFlE6q/xI5wkJwYuDpMZIDPOJTre19hTRvqV7H9+MdSe9WCAUJSpMwBnmkK2vzGg==","signatures":[{"sig":"MEQCIATYHI9mIiZMXwO6oc3nPA1n8NyxklIJ1FQeN2JINI4pAiBC3nbHvUcDsb2cio55JeFhcJZdMvMueLrrVPauu5uo2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47235,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3NRCRA9TVsSAnZWagAAwAIP/3/OoK2K8IhhDqQsI487\nwLRkUdz4jcTgz+t1EEQ8y55uE712VE5RQaNDCR4hirdXPbB8zXsQroQRw6JW\nCXNpKIipKa2x8MMhHeBeiBE+RY75q4XZwXD07FjM2oN/kI8akfiw8luADt+V\nszQdMPkJACqmpKFbvDEjCFe7RBg0A65Hl6AKSLXKhuQbJZWq+eN+I99ocjZ2\nbtOzs8WsnGVb1SwVwlDXBBqieSKIssnyyNBP30nwzeq6jbGddY4auUNoB/jD\nRhxepnVnMi4YVLS4yqVGDlXVX1RWnMQU7Ok59w5hYamSdqfBYqxEhUO7cRgp\nLimFjXKc3IwyrxIjuBcmmcdL/3vlj6EN2dwvPudsoTue0gWLQAT53F/g2w7n\nxYsZH9GDp68ed2Bjbo6tHRluEM4hyD4JkcD6s+6cSk1wc0q8SxezmvRUxzrq\ntofwwz9wImzJ40LKpOVWoWiMHdAEf1o9OcF0arTrdEZN/L3KSQgfpA9RFLXA\n6N9V4bRwyZtBxf90stGQOgmxKOXBOWfaDN6bH9epIbhONKEE5Q4kDpeftqPb\npzybRWjoR+5iKJpzgxkldeYPgw0OYzPe5XcRTyGFLRUs4JYw3GaTUg22CmoE\n2q45R+gFs9ZwmpAVFwuToQ/RiU2Z5L6uhEZyvi6RYQVYNO7H0yJWF3kg3AKI\nEDgM\r\n=thiH\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.4.1","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.3","@types/node":"^12.7.5","npm-run-all":"^4.1.5","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-no-html-only-headers_2.3.10_1571255121311_0.03897587275559089","host":"s3://npm-registry-packages"}},"2.3.11":{"name":"@hint/hint-no-html-only-headers","version":"2.3.11","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.3.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":"e7bd693e6ad7cae88cc2aee9db75306b671645e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.11.tgz","fileCount":14,"integrity":"sha512-ixEALS2OgjeqkGNZLAcq7JIEMY5m7wfsPuT1fT24+QGiCKMTO4MqWP3kKI8JusuMd7I1xmW8EOAfmk1oGAYWEw==","signatures":[{"sig":"MEUCIDCIKoNXFoqUI8+lMjy9KAIFkRS79cvXirUgDz6Rfhd8AiEAk8GicHTtgY+JbpjIK7nhVed4rFxn6qbT0oo53kkY2QA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL18CRA9TVsSAnZWagAArIsP/RDWNA1kWH99OeyLkzRl\nUNc0imEPcf9opedpSKyuJKc/juyiJT38p7YgTpdFt8K8vOnWhe2YQIk2m4E3\n3xs8fnYd3n9vLsPwRstjXIjva8S3B33sFO432y0LvZCcniwcM9ptgnhmn8yK\nqk3DuuKPg55fA2Pqc450HllAuOpvYJYWM4AAFCFvOAslIH7s2x678bZ0g7Ug\n7JE8z2FiA4gBOvGVdK8ewdmY2nYfediz3a7QvTlCxB7S+IdfgW0hJ6/R54NY\n2qtuVKMwWEZxyZQs3QYHhyaX9TFGaIufR6cSJveUjB/4ELYqIV/fOg3wXUNw\nJtE4YUE4aFuCXcTWSZH+mgnU8LH5+Sf48ASgyuVnnwDG0S6VSRJRq67IGTo8\nsbp0J7hRehaW8Kaumt8q80i4ZyCucxFOKniK4IG9pLR23gT5jb31XwRruh1u\nvjsJFR0yRtwTBiDTSlOl+AKpyjWdDjpuDrutCK2nLNDo0ZXDbJRrKnoJKyS3\npYd/ZL1vtXBg0caU6jPcPLkUD+v4KLD01Xd3Ys+CC3hrgmc+XTH3NUl+E06f\nl9OjkQW8XLJdLuN0DRssus5Xgu1yOXnroa+uwcnWp2xlpzVAM5Qf6t+TnXbr\nxBLRY46qi+ZFJQGmOz68A4n0gUfUxJCUCGerA83f9h7CZLcIHjOeomaP5K7p\nwN1m\r\n=zRu3\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","eslint":"^6.5.1","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","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-no-html-only-headers_2.3.11_1572388219870_0.22818638687850124","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"@hint/hint-no-html-only-headers","version":"2.4.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.4.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3e3aaa07ecbd0631996e8e684937f358885c8156","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.4.0.tgz","fileCount":14,"integrity":"sha512-Q9xk9c+2Gu3kS5NfhmxOWR4ZipD1j4Ohm5npLNYt+ct7LpGqcZviQ+s3S8qkcmflLLgM918k/eNz1GCw5eR38w==","signatures":[{"sig":"MEUCIE+cCHZNBjWDPaJhaD0GxbANPBVRIAlRcADVoQB3CmKXAiEA02Q7oh0qXEDa2CHcCAf8i7Px7PJFQV6PS2od/Arl5gw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bQ0CRA9TVsSAnZWagAAWQ8QAJcgS6jYy04JEhsd/FEA\nRbrlGmRM/zDNNrBiYk85k+7JfiAMN0/zQQuvpXhOBXl3jZNWbHPL94ctHSrk\nAr0JLccKNZjAcVdGiirQCAdfbO6vPcw9xYb3aE2bgdAh/8L6trFtO9Ayr+L8\nZ7hXzkG17oiREigmwHsO073BVmP4EujjyOnndrhRQlTDhs8w+lgd8n+oNvry\nW4R37gNGixKJNSPhwz8QV2J/BGlaIObtojgd0Z/RdL7RhMhWHRqErjc+5UNL\n2HjmlNWkxh80gotRY838/V3wquQ2sGWiPDlz0pT0WPGYUD772Pl3EZZvVyZP\nO4hGmp95InU90aozFfr88Yz9SSP/Qhw34gWv4K8QvT2L5Ejjz/GMY7xODd0f\n3GLANYD8LTkSirsNK2x3GPqG7Y8fiVGfWg70YZARLhN8xocgzxLmnTjS7gAe\n6XnmAYVhgU8eQFHJMaBfrX7QlUswNrx4C1T9aS4fAxtPMkpGuvKpz5ZYrNeJ\nwUMAN0QW0+aORyXxHA9S7Q9UdFpaWE2XTN7VPwDIjD9S+GJJYmuU2AXZlKxF\na86NL6h7pU5q6N72uGagYxUTVMFmYY4h7CWPsAg6ijFVUTmD01RVdmqvQv5z\nrZ9ADixLeBQiS28SCEopbNuPu+KcCh3Rz3WBESeoqXQQfjeLUVhZmgXA1fib\nqumK\r\n=30N6\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@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","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-no-html-only-headers_2.4.0_1575334963883_0.2621674558469729","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"@hint/hint-no-html-only-headers","version":"2.4.1","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.4.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5a8c1320241f3b0dcbb2b43ccbe0411bc25e257d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.4.1.tgz","fileCount":14,"integrity":"sha512-aSFg4UkPWH6kN8TAU1ZX1TYaCmrErIdq/wpSUIoYG23Xf+I2jMiJXCbMZa5sldHsZrljBErE2Kwwpdn8dmsvDQ==","signatures":[{"sig":"MEUCIQCVA9Lfw6+1g3ljMYYs27zXB8X9CodsS/RNSvJUJzqMZgIgFHNkgPHowmWC+ARcBGQaPRbfcBjW6+UHaCQpeg8ZPi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6FQeCRA9TVsSAnZWagAAFg8P/3F082t193gskG44y60m\ng7l7C9Sa1rPy28s7Eh0GrjKi7eZmSYvZBgiKVdUbn15gPjxU1CimiSqyJ5DD\nUi8ftNAaZI5uM/I/DT8a+8IFdwN/51DSHaP3Vs0rRj17mci3bIGTNycTvmmN\nh9KXOk8rvLvmBfpBm+2nDHpldp9iUBeh7umeUOcT2OdbxgbvIptge+BPlLyB\ntZAH08h+qcmpUU0WFhfai/GkTZ/XS2v7BSOxLFhgMrvRjJ6/cK3KEW1qilWV\nyzUR+66OcIeqKupgTU0vhLfHd+XtLdZihpd9YzfVQaiSgCIlBmWuei0rSxBm\ne7delFl51CFSFwkvWBUc2yBIjEuvTD3lSJ2f48uSnwcEKxoUJiiPzOdZ9B+a\nEWnhri8SdAAGt2PPuEi6bmxJC2QoLIZ5U7eJCaXFcRExcD4hkraG/XQilIAT\nzVqH7+ZirpAaz31nILrHg+LiEKsAsDZuyvbJXoRDf5zg22JhmNtqIfelgDmN\ngKsfpDX7leatLHwM9D6ENmZDjFyIU7qI3Mc7yxgOEaejgytOdkYMJSfzc94V\ngfEgcXMoBJGNHHHl1kzufgFCpCoKmYQ2YDGqqbI+/Fw/4es+LxRs41Z3SnAH\nE9wPABSnDDDb8JYQYuUeDUPj9HSvMWJmP39na38EGHnbPRzDEZidRXSgpWEw\n7GzI\r\n=LaWe\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-no-html-only-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@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","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-no-html-only-headers_2.4.1_1575506974342_0.45910861008402515","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"@hint/hint-no-html-only-headers","version":"2.4.2","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.4.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"aee8476a4b0edf5b88619a7265de2f1cc1deb181","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.4.2.tgz","fileCount":14,"integrity":"sha512-kUiDdY+Omme+KD2wiUyErsa9EN+ScnIIs4vmSK0np5WXm5y2X6+Q1OBszrQNyX4rvnwSnIURsVlGRXDecxPBUw==","signatures":[{"sig":"MEUCIHNCo5T5R61O0rjzmKHIz13JDSlAbEst3r4UOgKk4+TfAiEA0jB1fxyaUeGLqAUlBCAlnF9I/FSKxcyoaoIRQetTCVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpkUCRA9TVsSAnZWagAAoVoP/Rb4qN5FSeSj+ERBmkdl\n4UG2WLjG26x0WWAHZw4+yRkX2UNoLB5mcsBooqRoySEA7tXq/PFrYAckkMvM\ns4z3iRh4QVvl7W3B0tg3+hVVsVuZ2m5+3iH3NdQJ9sAZ6C3FqsOi9e8iRHCw\nf31gz1N1LZUytfJ+smNECupJKFOj8SC4U+R0N67UPoScw3M9jxrrSLb90nTP\nN2qySfIdZ6WTsO17vhQPhuGj/Es6XeyF1hFauDy9YWSXf7gYQxsxi/4RrTX4\ne1n0ip2wD3e9oLLrnwVP25KBUR09uRy48+7e9P6GiLSuKB9korPeAZpi36c3\nIUgJIRswU30OSYoTQPgGjZwC/xGrnYDxml16avJccN5h0l00ri1nhrdoLxcr\nwM6cl8AlLTSSljWyQZpPiSo9G97rE0yZZrOox09QvA3Ph9vpGR7V2jdcl4m+\nYWhDtSZWMA8/0GrYLpkVqwSjms2oYVYZFMtDWlxQ9cGNMgsac9DCS1xaR6vF\nmbEqanr7e+UTchoh138aiWOhGVPinhZOX4U9i2MyuG8e26O17GPckHgBJYBx\nU1jbY7PZ6QXZOiZHMXJ5+cqwFgJA6b2Z0qeUNoAS7pEk6AJokKq2lJbMiYwR\nzdXPHfj3+14BeonjoeuNmcea0lkbvOBaDX2TzJFmt7XcBAgeGrdnALV1TQSA\nlG7A\r\n=ZLGl\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-no-html-only-headers"},"_npmVersion":"6.13.4","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"12.16.1","dependencies":{"@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","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-no-html-only-headers_2.4.2_1584568596405_0.48078392436881967","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"@hint/hint-no-html-only-headers","version":"2.4.3","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@2.4.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f07c1cbb471c0ff43ff9d4b506d4981a356945b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.4.3.tgz","fileCount":14,"integrity":"sha512-X3RJTS2Est/SqLpvA2DuMnonOGxH5WrAQ/eroJieE0hdPww6O9xXktMXrj6uLPTm2M3LZRl1QT4xkTRLZvYqAQ==","signatures":[{"sig":"MEYCIQDfa2S6BIqlIoFeyIxRFMfwSK5wAyn+WEfS7CItuNIF4AIhAIyl1Dej/ZeawcAiHBRM3a0cw2hs9mqhUa1oTLDrAeJC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel15KCRA9TVsSAnZWagAAI/gP/30flfG7BXglW/hIImWD\n61LdOJZuthSQufYT6apbheDNhrC+RVbrfIbMxDa/c6g0Qo4ZnUlZ77oudGc8\neNnFvDgatmuk6WBX47bi0cLuPA47Xst++0Vee4s4ut2ccZ5U8MiuKnmCH7ZW\nDVQH/q16/0M9TUvaZKZUOrmVEAAUZOLH9bAKA9OK0G6jDn60t/+tuqN919tb\nwYLxIH5qDgb9G7fnXQYqYzOrAM8AWPAZy0Xf4oaJUgrVv6kiqxuzKnAUDZYL\nk/z0B3EFsKzdyQt9049rmsNMdaoSze9mBjM8reTNaRfaQ2qcGJ4c+WPzKs13\nuUxs4dEOC2G2cl+3zKgZh/DhACBSUL0fy8bOOXlqFgMM6BD+mWRP1kj68LHN\nEi9SP4NaOd7yHLwq3FsmTTldNqzOmqsRznfcmPdtktoIPCwxWGHNGWsN7aUO\nFOP7IseKsgJe01CISI0APr5zcHEvMXcH8GVxGOl1dLb8EEfcivG7Xh3F1TD/\nO0eLZ7P6yScKrzIaZJ5NAnjSSD4he+MFUy/bxHnukXvzOiHfrS6pUZztyVLA\nXJ2dhk4YSHETzWjyiziwHUXQdmZTI86H7hKFCMzNK3YJe71/Mg0h/Id87n0k\naBA0nJpua4JRjk3RqCpxlyUX4DO0veYVpWJupblZQgN7YVGHtqmka/5IPlIf\nbKFA\r\n=nV0X\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-no-html-only-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"12.16.2","dependencies":{"@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","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-no-html-only-headers_2.4.3_1586978378132_0.47674144429634","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-no-html-only-headers","version":"3.0.0","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"92e42a17d3aed7a8a987dc2524349acea78f591e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.0.tgz","fileCount":14,"integrity":"sha512-vTYzTE0qk5nXX35vmv/wlD5UZPPN+MdS/OnRH+52XQckvaGQi2jjZGrvrqkA8kQkQkxKX8Czqo3qBC3688fOVw==","signatures":[{"sig":"MEQCIDe87V6qNJbQ2orqunRh+58RUVFj+SCS2Q+HO8JAh8kIAiA7KFwlYbJiHH2/2JNfYsW8W9dF4uKZIU6vrf2hRLEODA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54032,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwlQCRA9TVsSAnZWagAAbYAP/1BbF/X5euE5Z+Gc4ukW\nWBMYLwZSA7UYdtZqGJC4f3TQ9sm0VpW4Blxgx2xgDtZ/dT/3obL/kAwtohf2\nlBLmzpJat0518R9AJ6zG/VP2Z00kTwzi9BqD+TImPuNAVSPFxfYgvMA6Yi1o\ntGbBKScFJZQSI61rGbMuWEV/PE95X1G7NojAVgUVcR9vJmuzTLRsR4qL6q0k\nu5ecmPWeTjis+LORBcsPNF3VghxUjX/avX8xlSL2teBKuKdpUzg72iQjrouL\nQVunLw2qQLuyPsB8eDQIrMbJQPuFBuQqinRY5yPMYYlcl7y6HCjxcYZrPBS2\nAQLhIfJII/CIvTcn2yhyIJ/2BidFN5+sVBbbum6KnG7qAVtIXo40DUcM96S7\ni28B+E1/GsYfu9d436TiGnE9vBN5JuNltRrQyF/iN9l6B/g5VtxumlVHGA9Z\nMZyiu1xf3FT+am0Dg/CXIOADMljV6ZqMb6yFdN7oC7SQJAYZJL5tT2XcTSsW\n2s5ye1vrmNShY6oqVSuX2bMeVNwn1jMnP9pd9plihDHSnEehb1Ukurqtu+dI\nGOG8FCZYmcOTV/pL+MQQuwCq2D43uhXPwTnviWFNQiA04+Gm6GZWYULJNhlk\nCLDQRTR4qerziUz9IT6c9BRhhKAnyIHJlDK9bw82EmQhZ8pbZqfZO6+Ys8+a\nytRj\r\n=YpMU\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-no-html-only-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@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","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-no-html-only-headers_3.0.0_1589840207494_0.13349694750467678","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-no-html-only-headers","version":"3.0.1","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f46e93815ff01bfe4d2794b1be1ee6512b96c770","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.1.tgz","fileCount":14,"integrity":"sha512-SYgHjEyOXTk6xH4PGhA0VcDlRTlZliQsZTRSKdz4oY10+dwne2T0gJfQmY0WX8wR1V7/PsbC9LRgZ21EP+5Fcg==","signatures":[{"sig":"MEQCIF/VjLcSmvCII3baD2g2WXijKWAwt6a1rAA1FZ59wtcLAiAyjnLNMVQ9Kq9O5cYJLgtbxGmABeLir+7tvDVyXL0f0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54360,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzs0CRA9TVsSAnZWagAAmXYP/1fzdyGQj0JDbtdBT4+f\n17IADs9TDucS7fqoVCp9iXb4pHzFE2LWDkPzAWhS3Z5NVAnPYNmUm1jwBaAa\ntAXNvTFP9Nc/wix8Z6POKiuPqtm44s8+PSMT1h7idP7OJ0CRCjd9DD+kWWH6\naGWeC9xNddjDty1zMb8ZI8iqck0KKA7hfaNobAdQsZI64lP7hRL9Rz0z2B8G\n/DxHjGGJZngsMhmqHyxyV0ZuYtNvlxDwyBjKSQnG9amX+bsVWEfwgoCeUxzT\ntP9X0FO0DJ6oL0RC+g7nTWr61pe1P5/1I/gP/i8izYsCZyZF5qQM0DB6mYgO\n+wePUbdYym+ghAgClIj4aYQV6tcEm6+XfEcqh0f24kyfysJ4FAF8x9+VQSnM\n+jz7kvZ03kT4DgbGPnnkAJ9AJF7kTjK8ADtiQHt5b4NC2s7t8Kor9xgllwMu\nxD+LFb3MJlgLf19NsVY7kgBfdaGNGNecE/Z3G6bMxrfCgH6VeXyqzmvJaD6P\nSOCjr+tMKyo61QmSU09Oy0MSou5Acs/NqdsIWO2cqokvzw259r4KgWlU12UQ\nHH94aXJBqPdmLv7YrOdDuWfKOgxBizgX/UFUNVPSTVT/zGvQN70zhrga4vEV\nfjbiEpw9dp9mF9BF6ej67SqjEwRl+6405zzihlu4M5S7WOknRiPv08srHGHt\ndnv/\r\n=z5KR\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-no-html-only-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@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","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-no-html-only-headers_3.0.1_1595882292516_0.9624136014759985","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"@hint/hint-no-html-only-headers","version":"3.0.2","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b25590c514997727f6c042d5771ba92da412d562","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.2.tgz","fileCount":14,"integrity":"sha512-HnIUGdMJ92Kjv7c/zpCM93mKCL1HY1ApPJaoCEE8dR9Wunodr34GIXgFLCjUd22sLT/HtaQaRPZ38ao90sIfgw==","signatures":[{"sig":"MEUCIGR+Aq4QZPapwJqrbYclEhZdMGcst11BsA7NQZgPIyklAiEAzN1LxuX4KLPmnqnupjlWFv0CMCaoLYZoz5v79gSwPA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDeUCRA9TVsSAnZWagAAtbkP/iqJlQvgKEiWG3gT46cX\nv0ezyqJWbctTrTIk8d46U6qoVBNOIBktIObVUWpXUPMFSNeY8tm+zrSy6TR+\nMii6NLKlhX8FHSs30UwovAJ0Gbw4I/fTTj5QAZIoQBq6cSQQDYB9GmYS07nV\ndwb6OOI8wRPFEknDIv+aCWbDpDv20okjMXT361R5ur1MiHB291+wRspkWu1v\nsNg0HlvvE0faKum9bmto3ZWb9q+l/r7PSMWIufLubsv1/4ofPhwsrT5GJaZ3\n2zSRXSR5Kye/N9aKUdTfLmVvrY8qmu6NnjcPmlxZHF5XL0UWQbtlM7G1zMnD\nlX8G/grg8+Ws4ir6p/cHsK+0j0eEnnKpT0XVHkzIURlCGjfTadvDfPH7S+4R\nYfUBWnGSY2zBA/y5WnD0GA+pn0N6feM/aCXzBFWdPRQnQknY+Bd5HtJd3rRF\nyC/6JLpZDvRaRzH5nW7CcFDe6Dyd7OkTbLmnKeMbm5xOCm55Unewk0PeRK65\n1gxDX1roavZTsdApmGs+wQ5sfH7b3a7FEIuDtfzFXtAMO6tupoh8Kx46ju5a\nSfrdWW/Rkhf37rm/Sg8dtOVnYUTKlHWjLg0NMSMjcv1fDmMRnybjRduC4+GU\nqdAj9Fs+F+q3OGzrfbc3qJZIXZdeJlVHZDfe5spr+Oic+B+PnEwFXkIkauxS\n52lZ\r\n=JxEa\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-no-html-only-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@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","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-no-html-only-headers_3.0.2_1598306195874_0.1617898419915489","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"@hint/hint-no-html-only-headers","version":"3.0.3","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.3","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"39a804517aaae47f80dc19fb740d6b1359457ecc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.3.tgz","fileCount":14,"integrity":"sha512-bDk7Cbo+JjowEw3lCQ32K+QjvKvYg5H4AwNeCT6nM1jDW1BJopa+NIUCX5EqmgacnyDlsWw1aJ8F1bvcMyxxDQ==","signatures":[{"sig":"MEQCIGB8Ja8Vz0qlgeL1OTDT0WajloZcsKXMneDxJJG8i3YjAiAUTrGOVsZ7W2QDuhAsl+a6AYkZTQRJg9fdWSH1jK23LA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEzUCRA9TVsSAnZWagAAwOgP/i7NzG33I/LqpuY+Oqut\nKNIr2vsKEPh7cKcbD3cJnn8ml1esQ3NMFoJVvEYXlgxv1doELV/5jeP4hSNX\nr7Q3S9lHwbRyFGu+9zdaTQ9Lo4HmlNmax9E/dGMnHXmsd/zutKC5H8wggNpB\nud3CbiTF9xzyYP9ivAMrRRlcutGQI+nT1CICgvszCfF4pDxgPpvSyLl2iZGX\nJaFULXloUyjMWZBtAG9SRrkzm9YDGUFb7IkxBzD6ZVIZqnjuRQwuoHCgWtn/\nb5WiZoxpRxutEkdj0pLgNd+GHFhWgC9AJVSK5cfVVei0DfFH5XvEBMmv/eN0\nAhH7ZozquIRVeL/1fhqzBf8Wc4ZHdSx5Vd0L4XqkhC4+/wCcsHmbNnTNE54e\nmQml+D7Beq8NbeQYctT39o+12tnmVklCJb0/fzgQuKlL+5RY3QZP/2eD6wMU\noZuqq2/ZtvWeZXVqUz0pfSgTdYoSk6ftYUSSigIYhByBflHuHlQGiwiW5Sqo\n/y0bidmA5uYe9lKIn2vZv04+Nn62Yjy/+vO9MVj2E8oUeeyMQ+rHUAGGWign\n+5ybVAsJ85118a7Ah/CNJN6vKoyq8tgd71VC0hKIilkP38pJ/w0IxmvTd778\nb5r8ELTCGcGNibfKP1Oc3x1yXmMiCO28oANjpHCE0+M8Vp3Xopa2BkDbUp9W\nw/ct\r\n=t7+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,.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-no-html-only-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@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","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-no-html-only-headers_3.0.3_1605127379987_0.591307787048762","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"@hint/hint-no-html-only-headers","version":"3.0.4","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.4","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"fd5b3e96e37681d2d2ed6f070f28b420a83f6271","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.4.tgz","fileCount":14,"integrity":"sha512-5MqQrSzenxD11Y+4rMQBiKSPjzAtBOUx0Ja9hqf08oTLI0uTTj0a8kq5AlRovvuTvYxWyp2l4spqntZLn6xlIg==","signatures":[{"sig":"MEYCIQDTVpvYdXNE8mjMotYJBecNe8ToEbYykZcnZSunxJlV9QIhAMgasT1VKzx26v3KCJpViWrluLatVprqJXBIgnfzPD7X","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEt6CRA9TVsSAnZWagAAN04P+QFL75+NW+s9EmVrJWy9\nrw9Dy+puIV6lyD8NmWqzNzZwjdqmSNe+52G/frjXHcvYqFLe9FFyF4plJqZI\nV+ZsaWxiVgPZnpytfZyDOROAPidUmT7wINoN2ZnYbpz6NmvPYEGvyibvOmCW\n5TUte33zr9spTnTe9ycZMt7fHWauNsbIH1QA1PHoci7Ft8U+0tCeDRXFJuEV\nxViuYbWYKHGbOtH4AmuX3YbEUY//TklZaTBVNgUg8cPpa3NChUaq9uDTrwK9\nAxaHO/sGgBAIAa22oU+CnDxymA8N9uRWmYSxYgB3ApEDO2zSL2NM9cpy5Fa2\nJd4Btn95mlKNGtMGSDZEB5EbCqHplcWtA0R/qOd+E+Txf9j8cb/AWFPzWZXg\nr0QWqY3/Z2TrkKb02UyX8BFx0yOKEuG9fib7rbKaSxLBsEIIKFPppZ8ylrlz\nJcKTBk6VIhSvZ/8Sag07vQx+b/F7GL/UuacSUR/QsdC6+m2/Puw5a0KhWZCM\npXXei/vd099/l+r5ZRdi5O8DCkkhFvIAZhFylRFhfmMZpFsFpKVER4SYFN34\ntEHIlLFd0aRAnQ4tQZWuRwJqr3mABDhHatlHA3HdiPGijBM20gJVC2YnyugX\npIoC6xipboXDJi1NyKvk8y0UQlxWPTgZuxEYpBI4tpWjc1WROPdbPdYx6Ht+\ng1Ug\r\n=1Wts\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-no-html-only-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@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","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-no-html-only-headers_3.0.4_1612467066017_0.23562520384238073","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"@hint/hint-no-html-only-headers","version":"3.0.5","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.5","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9e0d0c408f32ab1f3d5aa1bfccc9868c7c676a27","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.5.tgz","fileCount":14,"integrity":"sha512-hP6fKj08txIIyessgViQy0XACUt2O/i3Vby9vPj48mHmPrKOBaviH2d9ze6izhowE53Xk0fgH/+IqT7TLLTfVQ==","signatures":[{"sig":"MEUCIDXPVAKiy3pLT26iR3H/GTDB1df++i/TcAJpRqWXysjzAiEAswDlFI6QsyFWejHa8Zt6yRYYTXaDGjR3NJhRzEHvV9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeYWCRA9TVsSAnZWagAARtcP/1G1rRN1hSIIzNg6+hFG\nPw+K3AoflB2TpvnRru+kKgvM8ndyjVyTiSqfxvJvvRgJzhCFp6ZbA4W1PWCd\n5inbWfTjiQ0t0fH7Rbg6cwS0UCn4XJBhfzpg5G9wMRjSl6AmAbdcjuXW2u73\naIqEIg3O79+FyMBNrmRx8OKP05XpS3SuzeKjwlOARyoEI8bqDiuOVeS96spz\ncy4Wl8jFhOYj8t4RIjfgII+uX826HzO+iyFbo4967V6eP68s2EZAdFACpLkv\nz3OZIUVrqRlXLuw6qpcAklXVKCXejNY2sRkJImfS+76z6aSVt5UUssE870RY\nHBWYvyurV8zlsQpH1GzIgum/SPXYm92R66NcfiJWFPc4sbWSaJfDm6XpQFX/\n3iq8D65a00RvnJSZSI9IPU8vwN/YV3sViOZjM4QXb9kAbW1VL1V8KBOnrgav\nwKbV4WWm1vStpsZugpEfU5Cnhfpp5BRUu1jFMGOt/Xnez5+/v4YNJeO8+FLt\n1opQW8rFL6byeRLA7OxdgurB/BXUafu0jZUusb1h2vrFHMepdOBFyBTAYeix\nNDCk72/tW9mx3nwERsW2hWuMwYpyIdaj4CRuIzLcnQa5qB5m7y19gXZ6W0Nk\nqNUmcENyl0QoyLUDrjDY3XIEbtEe/4DipCcLWYxBmfjWcRA8r8OaoogCa221\nKupE\r\n=BEho\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-no-html-only-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@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","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-no-html-only-headers_3.0.5_1612572182278_0.5488948174557493","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"@hint/hint-no-html-only-headers","version":"3.0.6","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.6","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3cc2fea6fa350b8308c4dec689e4191b009bd24e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.6.tgz","fileCount":14,"integrity":"sha512-pSbdDmNPBQHUvT4owSnCgPohA169G11JNGP12TnBKeVVLGHAZQrUDKtK1nLcOextSoPJU6V7MztnnwN6iTlavg==","signatures":[{"sig":"MEYCIQCUjM9nKeLW0UVRP5gI7ZqCue1fKLfTYiFYsbJ/7IzRiwIhAPqCWjPieNDS0WjrmKcEMJVrJkSsm2qSG5KxLPbIPTCb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRJfCRA9TVsSAnZWagAAvVAP/3StKczs72VEeCQpOpDs\nGhs0qSu5vuRfJsZ45FVDYndjqVOJVmWJQu72bClr2o44zOISrtIEk4vbQeO3\nPdrn9kbg5WNVh0Q3rvaeoqMj26/dPTnr8p+VqdzZCZzWWExgtuxaBqHkxn+q\nFAj8nEcSLa18zsZjD7Op+eUmwaMQVAqNziOLQy3XGcDK8eAXCKA0+jWNSVjS\nIKiBlqzSp1ytKf51Jkb8Fff/O+pssKL4bfGKhPmLoTLhmP1e2tWaJTUyZ5OE\nKZzZpIOBYpwgN2oK/JSvkeqIEJPQzgp5esWxUKXLDlU8E+BnofmkrZFdZJIF\n0A3A+ZJ486dy+rXjgiMC97O1Z2fMIFqw1umKOhQq2uXS3iuJFXE1vfMNyRk6\nWrmuEhvMEt3PedF1Kpzjly5/LNh2IvS1f5pdnCxTcSdTw8waTLjKFDN0glC6\naK9Og6IixbCPY1MZdU6753hdM9tGm0ZNRakiPeT484ZsgCbAoWpl43e13TxF\nB3Yp/mFP5N1zrrFQRhT5wLuHsolBjqaQ6Sw3dCRbBClx3NU29K1zrG8rMrqe\nAoOFDT7M/nOwywciaDVTWjz+gmXKHYAbwvjDDK//jENEgOdUAdDPe/TDeR4D\ntTjUfYvTgWcboRS8qkukAtFVv6vQzmrZXdRQ7NDaf81hwPvhZ2jD0xY5nizF\nGXKz\r\n=qTlB\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-no-html-only-headers"},"_npmVersion":"6.14.12","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"12.22.1","dependencies":{"@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","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-no-html-only-headers_3.0.6_1623265887268_0.3662479272299184","host":"s3://npm-registry-packages"}},"3.0.7":{"name":"@hint/hint-no-html-only-headers","version":"3.0.7","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.7","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"990755f3e1d5fe0598142af0f6632a511353734c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.7.tgz","fileCount":14,"integrity":"sha512-N4wa5Ik7IHUOVEZeCtDgK0EXxVB88YQ+89j0pt8SsghYLclE5PLqxAIyGrz5/UitNcfByaQlFC83sFfVifkS4Q==","signatures":[{"sig":"MEYCIQDc2Nc6roCOTKhPnT+qu2QW6PCwauUsjL8hM0iuQBxv0AIhAK30H5ea9fOfyx0Ke1dUSkqe+upgCAXI2dZyA77jCsYO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68261},"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-no-html-only-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@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","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-no-html-only-headers_3.0.7_1634833203963_0.9294222653090671","host":"s3://npm-registry-packages"}},"3.0.8":{"name":"@hint/hint-no-html-only-headers","version":"3.0.8","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.8","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"77d3b1ff53e664c7f75647da08486af3054616ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.8.tgz","fileCount":14,"integrity":"sha512-Db01v1ap5NJ/ztWuxRQjoESdsPUlzpD7jdHF3R7fQw5LRvhsKDNLaP6/sUitJN0oamcMBbUJFPD9ZLZhxn8HJw==","signatures":[{"sig":"MEYCIQDvz3UBhT8lGSx3afQ4thiIkykq+K9qlaPzL7KDZ4NXLAIhAIXRHDeckMzmzVGFrG02fZM1dwinZTeM5ZULU2z6hQbT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68261},"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-no-html-only-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@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","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-no-html-only-headers_3.0.8_1635537419638_0.06047294382550095","host":"s3://npm-registry-packages"}},"3.0.9":{"name":"@hint/hint-no-html-only-headers","version":"3.0.9","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.9","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"69849525c4e17962ac612c954093a552e6b4d143","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.9.tgz","fileCount":14,"integrity":"sha512-+/IJ/G86BNd3lfNoMzHeT8xkcw43y0Tma3SF00qbD57kO888tuOBCtc0e0PzqI+8aBHM9pbVFHRgmwb3tIw/zQ==","signatures":[{"sig":"MEYCIQDK7zJCiEQdgcC619HFATgea+vIO3bA0AVcuvNHRXxD4AIhAIVsoXNIVQ/GzS4+Lpy1jegMgZkru6b40Q+i9e/p1GUw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68527},"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-no-html-only-headers"},"_npmVersion":"7.5.2","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.18.0","dependencies":{"@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","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-no-html-only-headers_3.0.9_1636050594050_0.14133799736052843","host":"s3://npm-registry-packages"}},"3.0.10":{"name":"@hint/hint-no-html-only-headers","version":"3.0.10","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"40d0dcb38cc79a82446e3a0c3bd993515854d264","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.10.tgz","fileCount":14,"integrity":"sha512-DUEHqtsmqNic9g1s6Mzd1unD+SYsg9UfOkaWoUsizGuIdFqPvMclHBACqNT4Y7SZCP18G4EtYaUoFLnihGm9uQ==","signatures":[{"sig":"MEYCIQDTZoQnl4V+KR2M1ynA7wTfql1nId11f59yDrj9QKuX7AIhAIdHksKpi4CIjEydiMBED6yNVDJZVbMpu8N2Jzm18r4Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KSiCRA9TVsSAnZWagAA3UMP/iBNjFg3AnhA6RSZ6YaZ\nDn408A4zhK0pLMlWurrcbrwNM+xM8L9QA1jNRlV0yNknVENR5oWjTaUMxJ1a\ndgS+QJopDv2G9X4CHNfUSTgGvSbHf4NdjGbvHrn51tiGOXA3WnfX1dS8dJ8g\nd7312/UgY1p7T9tqrF/84zrJsJJrGEl4KdjFP8B0jxYRULjk4e25F0RUYZ2g\ngwokSxBcUa0NXaB9Y3omhGNkrcVzYnMT/pmPzJ3zxYbfOFxJWitJlyV6BxA6\nOcoo0a8nVosN9cra/sMUjUY95aWRV0uJgXxPzHy31ppywJGQv8s1CwAhBsc8\nJ+Z58oSGe0RkAIdFvQjnXJx0P6e10hCmvM4AwHNSUeBkYV8dLFsT/Dsj3PKD\n5NKO8W0xs5nHmkY6UIbksDAcXrpMaH9wfFM0i3gJnMDaPWzf/3UGGMcFFShl\nt2PXXeyJsavG7srkd6GquQYeL0ZaldgCSRE58a2Oexa5TQ/1E3EGZVAd6aJz\nPk7PRSWnAhZUm2VljEABZsLahcvYIEBxa0mimCahCheLgrYBI5wKSHCX4+d4\n79pUdCwG07H+Cioj6CJcaxh/tre2+DuLJDvS0rYHS27rhU/YV+Wc/pSkwPCp\nNrunpmegOyY2oh+c6JKDnvEPWpBcf6x1VCsAcGNICMwqzbuN6I/DiCBzfdeQ\n4Nti\r\n=y7qT\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-no-html-only-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@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","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-no-html-only-headers_3.0.10_1637007008485_0.483909126026572","host":"s3://npm-registry-packages"}},"3.0.11":{"name":"@hint/hint-no-html-only-headers","version":"3.0.11","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.11","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1bd52b4e978a8605bb134cf3124713ae5924e17d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.11.tgz","fileCount":13,"integrity":"sha512-ZYcwuzu7AMoIIZ1Dzj2UgbwxIjQuPvGKx1nQad6dsCRpcYtR4UPJMySQkxdL3vOPvrsfVvn40ttmrgFzVG1KWw==","signatures":[{"sig":"MEQCIBm0cd9v7fjh4sw++mF06HgE6ZhstCPcj0xC1ezFGmqdAiA3pwktfWxZt/Lxg1pm3ixZeJ/BpMNK+oTMMt1HgAXYIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkh6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpagxAAh3OzK+vBs+4BUzlF8+NYUZOmkJ0SR2rIMpEd0f2GuJdRwkoK\r\nOjASfETS2+nVsrezq+9KMIlnR6TJYLe88W8Hcu9dc6aOBP19M2Q2psAs+W89\r\n+kFUX0j4QuOxnAbQWaPX1WzGsRDhRAjyFsGQn/45cX2OB5cmAFpUF3TpLEoO\r\nopV//x08juIIQhby+q4V4Bxe6+LlUU5T5mhIKWzO8RCw6a4PY5gZvmtS8Vog\r\nJHlKM+SSSIOk50DudlxtFzmmcvrVJN2ATjDHEp4VspfzkDXBGgMHmZc4Pcib\r\niNrBkETBthgVPdhfa1aygwYlmhmjtc/F6gounzIsTPyU5Hd+bV+OkWHEw15x\r\ntZNnvD3p3GBLXiVMpQyDbdc0Qk0hlPUfLhnFvj7Xt2aAa7uVFRI9cUvRz1Qn\r\nycZdb7tsVKBu7PQJstETIzZhJ/qLMtJqqIwo1JQJHTfSvXsVh00xMlEuXVfm\r\nIJAMVw6q1cxFbmr5xS8baXSRdiQyBxJNzjkSxasDCHlRRSVBV6kntZJgYDCy\r\n2S2gOqCo6cnMN7kYS+6EAfuLQj/Q1kiJWd+U08Ma2piOxZ16w0J3PgIQWAXM\r\nkkoWz5ez4p6GJ0QjIk2mQrX0Ci/HmF5kgTpdtG6R46ntEdFa3l17MYScAcZl\r\nYmhvILTkNCdEfwyozCbBhFcjzYJbLh7f9Ag=\r\n=Q1NM\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-no-html-only-headers"},"_npmVersion":"8.3.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"16.14.0","dependencies":{"@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","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-no-html-only-headers_3.0.11_1646938234165_0.7618197264068884","host":"s3://npm-registry-packages"}},"3.0.12":{"name":"@hint/hint-no-html-only-headers","version":"3.0.12","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.12","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d759214d5389185c7c671eac5cb0dfd705577a65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.12.tgz","fileCount":13,"integrity":"sha512-VsqZxb004DzQgrMjOxxf+L0zUA6plbMY/3lb1zBg3/O9ofdYNGWhNynIwpPCLQRsEm48it71RBQoU+B/RdxbgA==","signatures":[{"sig":"MEQCIGvH87RQnMuUzk6RTch1zZLMZjCrsgmkKd8LNsL1wZAHAiAPPv5rVVCiLJKeqIghFy6NU14w1g/GsuWIx0kcBCVqew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG4KACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNGg//TP6lrVvxTw0sBr/QVyKDe6VRumr74xQfkugEg+D4Lyd6BjG3\r\njeWUOLSBDvyxkBlrtvQimjREI+Tmyw0/8rzYA+KdpEMBx0wdxVcyTrZWJUzd\r\np7W//PM5UGJNjXX+OhHXsTnmBZlPlJQxtoop8rveH8qH7nsqsHHd166E5Qxg\r\neyFxjVgvLIoeZl2uCdcwVsSwTi6Yv8TPcDDDuirh4uuRdYGhhcZtxytkvLn9\r\nSWAnK2CWVaXzl9qK+gv5OVPcedejk0BDP2MfNG+E94d6R3w4QzrUqsFTXNjy\r\n6tA8XGL+x/ClPUj04CkwEnH1qSYL3rGEo64BcX/jw1cJtww5LV4otwMia3TY\r\nTrX2/wZtycMbIDan/T4ypDlPS9ML6cWkUFBeQ0tt5Dth9rA/PO6U3vnwn/WV\r\nqqPjc26a+az1evMoCP7/Obg27/5R1iKPTspNQgsRkhMlO3v+Yp/XzWbhggol\r\njQREhRYDwWVTfIHEJQ/+vuknwjI/2joKVzxyhfVY3jvKqMLeWAj4fwoSFjaO\r\n0Yb4FwuG4R8feTn+YOwH3wGrv2gxwuXCK7ha0gjVG3mrQBR/j+ANOymDH0Tl\r\nKvCmsjkwtx7AKKn9YBN27iy/z1/jxB/5W08YVA9oj2D9YE4Fu/wRvj5VNzGy\r\nAzMQ1vJ2TxLSR+v+y5yRcNRoPFR6g8msAX0=\r\n=LkxP\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-no-html-only-headers"},"_npmVersion":"8.5.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@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","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-no-html-only-headers_3.0.12_1651011082210_0.51987207350801","host":"s3://npm-registry-packages"}},"3.0.13":{"name":"@hint/hint-no-html-only-headers","version":"3.0.13","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.13","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"20560c68812e8278d2f6b497ea90a03504ab998f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.13.tgz","fileCount":13,"integrity":"sha512-w5YQb0JsY0BTDJRpobCcV6ry75SXLrIyRqmvaW6jLkENRnKZCfaPbGxBEMVzDpYo0yBwtRz5asnF9d6DWyQXVA==","signatures":[{"sig":"MEUCIDPjD/S04Sgr/dHY54Pp84yMGFN6unpWoQKJ8AEn9kwkAiEAkAU5BCDQfB6gZfXHI4PybtFS0QZePQVJEP1/ULlF7sk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdpdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2xxAAjc3QcPOqy7uXd381gL6aRPAbJacDacljPO7Qkvnx0JcWeJtF\r\nFK3qvnqUzEDwedhRaXZ0/YzMR/aNlB7Rz4DAFoorcqBunF58bjivdWYYKblc\r\ndJxjIfvUMm6lABbyMx9b39g2twX6GmDsQ7SiXVriZmvmgySCT5faeWCFYs0G\r\nviYZtR6WU64bJwJ/p/wDTW5Aq+Y4M4JqkY96uuk68NHIT3MJbL7Sn/8CTDVP\r\nao1XtrqPSCR3fRgjtds0x8LEeHTArapT/HYvqOC4KvwGYCs5Z3oZcO9kyOvZ\r\nCySNesXzTB6wV36ZCSV3dKUETMfbvxcJC1Qkza4cNmW/kF26fMeYZczB75q/\r\nxA4sJqbLJT6Y6SnAjKlBcaDJVVB6EniRO7g/I0qPpHHnqTQ70ndPd2F3QMkC\r\nAqYnAlbKrS9N2uSQWxdudV+/c0ubZKzDHh57yv7u87QBk1BJxVr1V0q/ws8v\r\nHwMT0XR8YylkMhtIzhlDzA9Cwu+J6uE8V3rqafppFUPrsFpx/dpl9RW/inFv\r\n7+V5yn71R4x6ilkPPUD59wNQKRe8x1FIs8E61UAnP0gATuVKmDiRXEHBp0OG\r\nGP9GhNLYoFgWGRuhg09ESKM98iW5zxUE01dsdrqLG6KHHT83BKzrWjn7Wnwv\r\nnYXiSFWKWqOH9bfgnDha/W8BQ/yhmiT5gWE=\r\n=xiam\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-no-html-only-headers"},"_npmVersion":"8.5.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@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","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-no-html-only-headers_3.0.13_1651628637288_0.8139059149335994","host":"s3://npm-registry-packages"}},"3.0.15":{"name":"@hint/hint-no-html-only-headers","version":"3.0.15","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.15","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"482fa7293352c604db7d0d78cd148cf45763cc10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.15.tgz","fileCount":13,"integrity":"sha512-n5l0Ry5oQojLMuRTtilgB/2aHb2MvLj7dYpnJwLdGvUawg16J3/JX7MqkZTNMiosdPya2WAXcOttHY+VlEDCkQ==","signatures":[{"sig":"MEUCIQCIwCWb4FWEWk73WBLk2XNXD0H20ZkiISQA+2yS30NSxQIgXCLgfsqChxYkC2s+b+FQ8abN8NnHJosC+WZrjjGtha8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6CTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDQw//f0FFPFQpsLeCF4/rVIHsvy3+Sn9BDWb+QwSk30c4VMJsc0td\r\n/JX4GsdKK9xx/iN3VhK1gn8Bn540StbkqgKE0fVJJK+m9nmxS38g6oFPjx0F\r\nbjlP/a2qziHIFBX7rax0wZZFvgaseJ5pUEw/bQD9U9Rp8JJb6lyhnwd9wktX\r\nZ2hJ3GYCnbxzfqlosH8mAVyHFteDiC1OBqwOqfrdH8WlBbqta6qh4I7Vt7Fx\r\nGUUcTXiA8vAAghmR1yRoNr1vOiXv6qJLB8NIUbQbj5NyxY6bUH9sPUf+MuLc\r\nJJjMzf5JMDzv9NXVFP6QtaQ5v5dtoU8L86v9qZ8Hmfc6VXsO1yeIdZ1j17jn\r\ns84/HtjaPOASkz6VrnHQh7aODft3a0BQdjIgiE42eXR8sZR2PMt1kx4u1Dt2\r\netawH2/HyIOYL946cSVlH4g/twqLOwDTHl8paeXO7saguqWfiHeF4peV5oNW\r\nTl8HFw2Y13UejnGLnltZBIxFzMkvfjxCjoGlZ0y8SWWEhDXb9cen++mnJY/K\r\nAYAuPuRLUBoTnfGNUVeM4/OBDR2ZeM+bVaP+v3YIn888AEYFvVVLgnSU4m0G\r\n0o4LKX9Gu1/99ophAU8CTUXJnYdyjXYENFZKoDjs2d3C93LxOtPt6M8eVof3\r\nAywiEwo2RoHBrzSPldo9RCp5CnVr1d7Sgyo=\r\n=x9xD\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-no-html-only-headers"},"_npmVersion":"8.12.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@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","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-no-html-only-headers_3.0.15_1655152787530_0.24630266443188242","host":"s3://npm-registry-packages"}},"3.0.16":{"name":"@hint/hint-no-html-only-headers","version":"3.0.16","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.16","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"7c9f43782f42e802c087cbc5c351af96beae729e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.16.tgz","fileCount":13,"integrity":"sha512-usyONgSHtyTjx2aVDqZLPN1a2c2oCgy3cICD9mKuT+DEAxQn0IeQ+9NHUl3CSohwNZHBhnFFYEsCrARphmQU+A==","signatures":[{"sig":"MEUCIGY++GXYzTS/qNN3pkRP3EzBaeBVOlbBponplcNATF/aAiEA7JjQnkND6P75XHNmYYjK+kN237SawEScmVI1zxR7Gso=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFRWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmot7BAAjL+y0F17TFUaF4hZl0v0xxSpPPGHp3jtVCVM9APP0gozm+vT\r\n8sf1lU0mdyPyLsDVCWf5JjrEGUYu3Q1Ned5o1OP85tAdQJmjgtAC7hMlA+Np\r\nIyo1cRvtxREyQao7rounSMmrIwYBfK23xnAl7ZOLYRM9Ibh/33GpylpDBjN3\r\nbE2+qkeyFATTCVpe7tNZHFVWEZc84txVYPCco/kpot+Mv3kr7jrKvxj7ZivL\r\n10nJLLWjU9Sv2nj4T+pq2eLyxhazu4Vf9OK5X5gSROyv+eZAkAownqGfVxeJ\r\nDF4yqlQsvFztx3wBWRYtma0I9bYpq3AzosME9uJglpkD3YC+1XTUIxKWuCl4\r\nd315ecQZFEms4bkBJzMHy16DfUXLF2xu3bGUHhz6LlRB1iF3s+vlZHtR1AJQ\r\n+1hniOllvMkL2JuwMsVLGn5h5+2KRGwxbCCEy2nlDJjL7mUpTq+1k+R6wzV1\r\ndISDYVoJn8pKWwc1vLv+3/TxmaLlNymAzrT9xoWk2DX5qMWyrY6deo1BQdrK\r\nzgatt6bPDIXBkPRr0ltqCQF1VirOAe4m1o8BqdmTaqYq1rKycxkiol+PB7ti\r\nSiLkK3/DhqQE+RM8Dt0N20opOOwhT5UU3W5vIsbsZzEr2Cu0Axw15itvHgSB\r\nO7XcYTbLwvKOZ7KaTGBgoI4xK1Ff2UrwPq0=\r\n=pnku\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-no-html-only-headers"},"_npmVersion":"8.12.1","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@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","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-no-html-only-headers_3.0.16_1657295958733_0.2571368523024389","host":"s3://npm-registry-packages"}},"3.0.17":{"name":"@hint/hint-no-html-only-headers","version":"3.0.17","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.17","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8fbf39b0c9581b72110389fd13a8f6f2495d58c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.17.tgz","fileCount":13,"integrity":"sha512-H5Ao8LXew32cgO8nkhTabmNcY9ZKm/vaQReeiZHmTCvdzO5GRC6vuzxJS/r78pjDB4LpljSSGZjfRVj2G9WKqg==","signatures":[{"sig":"MEYCIQDfcN+gzP6/IBehbVP0ClltCYtosnfrWdu23QCGpsvsTwIhAIMk3rkoZmyPOKpZ6g+iz8BElHcizrfq3MEwCqxgl4Lw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+Gw//XC932kLiRkU7+rsdJhEscw62uZGdjDlShR3O5Itl8madKyJN\r\nMU2lZ/Ky/feMosw25P8R3jBVoZhQV0vnaUg6iuGCKQ9CQ9ak4u0dOa1EIGxb\r\np0SvzMWvlPGgbaZbjLnArOoDvxU70sleLNFu8RAU0anL6Qr/GuLUZ2M1oZAx\r\nwFm/s+6M/e7p1WZ085YRuKv7KnY+e0aJseEEVMt2A1GdhJbe/fAVDkfK3OAY\r\njqZrtfmCVUAwV3junY5nXa3eSNY7xUrDwkYT3mpQtgF0cUun2jRsQsIX6a2k\r\n1u8JaWcOeUgbXGTSHt/HwbqtK6V6kLUE0TsytL/8fHV6cjeV4jI1vQFQH1uT\r\ndKg/tUjpYaO2DfDEpV84huo0endksyCI8BKCw1wsGJXODdktnDswVGGoLiSW\r\nEdxeE1wlKdeYfcFlu2gLaSrSROtrAjZZpOQhOkPuUn+U2GLofkZ6pE6tqieB\r\n7X37CCx9lGnagpAXM0bpXIs2B/s3Er+nSHbgWGxiXjGgBWwynJRSJytSLBzB\r\ndUCzd/1pjkb+3L5aAlI7v0uV2RoGPpi0ykpXAQvrRJBeBMEfEhS4QQneTfxh\r\nPih5GbCBcRYOxWtrmLCYIKsA7t2UPOapp92P8r10PNWnsEPT1dvvw9JRRKoC\r\n2mekkTfooZFood5/oEFJM0K7raUkc1Z81mU=\r\n=4OV/\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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.17_1658530792925_0.6744678106017863","host":"s3://npm-registry-packages"}},"3.0.18":{"name":"@hint/hint-no-html-only-headers","version":"3.0.18","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.18","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f08f71916bb47436c1ee94f71ca695b5050c1c06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.18.tgz","fileCount":13,"integrity":"sha512-tnIBbTNTYB1WLMJ8EeTEIEcwC31GbHw8uruovPAJZBDxg4HTVxG+9tMvRkDmd6zJa+v9YhJ/BvQTfO2nzqnzpQ==","signatures":[{"sig":"MEQCIDxzF3dxa3uLvt7K+F8q54nvWnU3T7GUZcloVzTGgRATAiBvWZerzuOVgG0ICH400+landtNePgi29JB66Jf+CEcMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3giACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUbg//TXKvzHtlH83jsa29aMUVycjLDTM29qCrY0VCgv3cNOxwexa0\r\n/UzUlphO7vSWVL4VmWbeFX+UMCPSqcCOeOmVut/TRxYSmerN8JSKz5mv+YSE\r\nIo0eaezg1jQlhaRRyBD/WaaTdPa3Egk9Nkmr3CHSBXW/wN+gMiBwgDdXLP5y\r\nKKtkYpRYaqagetvnEVA7rz29udac4acdIOudEnbTfJ+m+Isz3R4Gg6PZYrgi\r\nVU+fi24/X9vL0FD8+eQnyW15/Oleb/a1FnZfrXru2Bm7z56UmDpS20A7WkA2\r\ndB3W7Z/qatzIwxyggZVJjRr2U4eTYPbE7mGmyleLBvAUzp6YfmakEghfdeMJ\r\nt/C6qsLuimotuxdhdi4SOuXTPsoPszuIQOuBddZC/9K8GXGBHoWOdf6FizWO\r\n02FNBQxJ3KOWGDdbHb3Tppgr6QNnYikiwCWEOiYDs9XTkqNGQAEqDCijKUDG\r\n7m41j26blpAZreC5bk+ja2D+o1nfXVzM1kM/4C1hlj9F1omt/B4ziKVeGoWY\r\n2ctBTcYMuPdtfCpqD5URBLsXznVZhJBl8y5sMH3vNnSSqny1bAwqFyqvxVFs\r\npbYB5aanuIIw44aSSriztQ794+u0fEItovaoMwLlwR8mdas43HvgPKR+o0W2\r\ndzF+lI0Z7SXuHSjrREx/+N7Nn4VwiFKghQw=\r\n=pNex\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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.18_1662482466310_0.85969263035877","host":"s3://npm-registry-packages"}},"3.0.19":{"name":"@hint/hint-no-html-only-headers","version":"3.0.19","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.19","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"5a37d1694147882e7d105481bc1ac10d8b2a7605","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.19.tgz","fileCount":13,"integrity":"sha512-pYP/RK95zAwj7SWDAUXmL+WMWGxdsuWPj95qFrSAKQpBJQ8DhjPqwo7EYialO6BEKVtchUGaqEoCtsDZS9fQ9w==","signatures":[{"sig":"MEQCIH5QFJlF2u43pqcsFFmLVvVWiUXBkPqvMA8aoUWTDSwMAiBG8AwBkc5rp0Ld31z++62Iih4+yajlXILIhD4UI6GZTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzAYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4Vw/+IWAQ1RQj5SANVo2HLSRVwQmk3o6tXUry8r1Fb5IjHZtNeaDt\r\nklL8p9f5RZE5i+Qslnb56QT56YTi9oSRq5fKlljGfJeD7k+OzvK3WG81fgb+\r\ndL4somjhdbmVkUPTFXUCP2/9rNCQu/y4gfsvxMyJRDKmYJl+gtS94NoiuYBC\r\n2DLD1w7BvMnOHJJOm/IkloqafD5ryj/ew2XVZn6+kRFFA2qvTObDV5bvA7+J\r\n50fIDDSuWta8SlwvBnrtHtqJQ83KOA1FnQdpp8gmdPoZmM5950vmJlc++Nut\r\nJi5iBEImLixAt2KFppgRAfcJwKAHhtgjofAaZhTInk8IenWnzNcOw+hN23gL\r\nkKjuOAugzk6L1FHc2z9WbZfvKMo66NCGhrnCFCfbOuhkt53Pjd0e3FQMZ0An\r\n9+MHdcD1sgsDc3RgqPOVeNt4n+xWv0JjWZIhT/LbLGiYUrbBIyqNRi23hcMT\r\n+/76kgF53l5oYI9T9jfOLf3i3Kh2sfN+VudxacXwXgLZe2eS3NDCM4qJkKC/\r\nINyvfiTiM/nugbvt23W9wh+OWpcPlSqOwL1nr09A7qv3TOdxW6eKY+i0gjVu\r\nMRXqSOeIoQsyhIQSeWVMuMIyMKXq+oZM3SSm6nE+fQQGwmYDe+4sxEpc7M9A\r\nTbAwnfUy7NZC7SvKeh+8kOC4Yy+aVeAJk4Y=\r\n=d8Yz\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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.19_1665085464582_0.4352765912349539","host":"s3://npm-registry-packages"}},"3.0.20":{"name":"@hint/hint-no-html-only-headers","version":"3.0.20","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"086373c8e95d9fa7a4e4dea2b67953af71c2bed2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.20.tgz","fileCount":13,"integrity":"sha512-zgvphYWGuvW9HpZWPwt7MGc1nCrRnnv3p6+jI0QL2K6EV9uhKPuvtqGot87kTTbI6hLWINZT9vQhHxaOfFCHpQ==","signatures":[{"sig":"MEYCIQCTc10XmE9vVXlHFo5XIXbHTX9OoxqSNblePeTYi66CtQIhAMbC9/h9KtDB0k5BSG2Dv9lcPV8lvjMCg8gJfZ18UEWC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE502ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4GxAAh0zBJ5xomsPp5M12NvNiq1asvUbA2u5/Nx71gLIIKyy3ivws\r\nSIdMc3TBymJNQhWjVtLJ6nrDJs8YewZ5ESARwZmfJycSqC9QDU+woPgIll3R\r\nqhjRGUf7iu7t7EIDxvaFAMykhjfpBOAnka2KH3NEaHXhb8zFt41czkt3F+5h\r\n2un0Czl05qBGkHMGKXGI4tyNKIOvoSpBEnbA2/5zASMADI984ZQE9U8w/iFx\r\n6UoE/QOcGY79eHzbl7Re5qjPA+u1eH5hNA/6x2ol898euraNlh/MTB3IcnUJ\r\n5pJL0fmBVl0p4FIRYiiwB/QuGYsuBvY/u7tBG5t66zgeAy+re+7TYCeE33JK\r\n+RYPU5mmHJifTYf1Rr5I26FdXH/UakQTeB5tkLmD/oLheLpBllgIfhLkHP4D\r\n4Sc2WO6iFMCiBlK56zbX7ROhhSNZvTNyQLLcnSNZbM50qSqDpOjdM7zr56Fx\r\nYJ/m4sNk9HGQ2/QUikBfVfT/9Iext4lmTtb5zqAiXJy8bF3/GP3s82MuWE3M\r\n3XnIAwjiJEj921S6QR1e6Z3ACoVXwQ4zygP5FXYhLpIUmqb2gmtKNs0ziaXg\r\naBRLSbc09ayyVjDJDyq0f1ZAWP/I3p3xuywiXseLHcPCAm+WQQ3T+6oFnJbn\r\nADoN1Un4qMqDMPjZoT+3ds9dcDOKpC9ioMw=\r\n=TRL6\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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.20_1679007030726_0.07572824746020901","host":"s3://npm-registry-packages"}},"3.0.21":{"name":"@hint/hint-no-html-only-headers","version":"3.0.21","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"56a8cb487409afbb1e7fa10c29889752cc79f278","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.21.tgz","fileCount":13,"integrity":"sha512-Rxr+sxRJJSgTwqXYshUcJhXbibPkjuBvY0uHQwujZ6RsUbXCPcp3cTgUYw+zjWLqZx90eg9QQFRXhN+GM8VBhg==","signatures":[{"sig":"MEYCIQCvAogpc0kiQexVrdePuqfGcWGtg9Dxz3JVGa6btZcYigIhAJqmiDy8abD1hrloOpS8ODn0V57+0FS5vFC+WH4qmuEk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29983},"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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.21_1686328191668_0.7841255986766384","host":"s3://npm-registry-packages"}},"3.0.22":{"name":"@hint/hint-no-html-only-headers","version":"3.0.22","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-html-only-headers@3.0.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a0a656bc82c69aeb1a01b951cf806d229e64ea1d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.22.tgz","fileCount":13,"integrity":"sha512-l2v2Hx/bhXEBkq8JNODONlI+EYe3kbIL9dcIetYZxoO5GplZnR4Z5uR60feYEhrxLgpWmnMUEwng16oHNAXNbw==","signatures":[{"sig":"MEUCIQCLMCobBoqpw5nt4tGAJEoMG4BQUMkuIoS2XOi7Nl4BMQIgK61AOwl7Pv4c8MyOSIqwYrV5EbBVSvO9LyHtcSUpVRI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29983},"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-no-html-only-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if HTML document only response headers are sent for other resources","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@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","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-no-html-only-headers_3.0.22_1687907361065_0.39546437746336105","host":"s3://npm-registry-packages"}},"3.0.23":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-debug":"^1.0.11","@hint/utils-i18n":"^1.0.15","@hint/utils-network":"^1.0.27","@hint/utils-string":"^1.0.14","@hint/utils-types":"^1.2.1"},"description":"hint that that checks if HTML document only response headers are sent for other resources","devDependencies":{"@hint/utils-create-server":"^3.4.27","@hint/utils-tests-helpers":"^6.5.7","@types/node":"^20.1.1","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","copyfiles":"^2.4.1","eslint":"^7.32.0","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","npm-run-all":"^4.1.5","nyc":"^15.1.0","rimraf":"^5.0.0","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["no-html-only-headers","no-html-only-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-no-html-only-headers","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-no-html-only-headers","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":"3.0.23","_id":"@hint/hint-no-html-only-headers@3.0.23","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/hint.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-/fFm0s6mg9DHZ6CKxxhj1KUIi78GrxLHzJ30Hvly/YHLvQWLRrIO9HsJj7u+mSLikqxDwYIvyAFdajdL09rofA==","shasum":"6120cdcaa86ae0f52bce525a4f7048ca9b51d3a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.23.tgz","fileCount":13,"unpackedSize":29983,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA67kSbL71/7Rvpl8u1Rqyy8a5bb9OlFC+YglbFOBY6UAiAlw+PyyTDt2BYryZ6m2fIGS7Iexy6EvKmcY6avSJoKBA=="}]},"_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-no-html-only-headers_3.0.23_1724949392147_0.09693490960282136"},"_hasShrinkwrap":false}},"name":"@hint/hint-no-html-only-headers","time":{"created":"2018-07-17T20:52:37.520Z","modified":"2024-08-29T16:36:32.553Z","1.0.0-beta.0":"2018-07-17T20:52:38.895Z","1.0.0":"2018-08-06T22:56:11.828Z","1.0.1":"2018-08-10T23:11:27.594Z","1.0.2":"2018-08-14T18:17:07.661Z","1.0.3":"2018-09-06T23:08:12.892Z","1.0.4":"2018-11-01T00:04:01.790Z","2.0.0":"2018-11-06T00:22:50.848Z","2.1.0":"2018-11-28T07:38:43.322Z","2.1.1":"2019-01-02T21:23:07.147Z","2.1.2":"2019-02-22T17:57:59.243Z","2.2.0":"2019-05-15T02:56:06.473Z","2.2.1":"2019-05-15T04:27:24.788Z","2.2.2":"2019-05-23T15:50:05.922Z","2.3.0":"2019-07-23T16:32:47.545Z","2.3.1":"2019-07-24T21:20:00.267Z","2.3.2":"2019-07-30T19:31:08.011Z","2.3.3":"2019-08-06T20:42:27.058Z","2.3.4":"2019-08-16T02:39:54.377Z","2.3.5":"2019-08-29T15:54:43.492Z","2.3.6":"2019-09-11T22:31:53.498Z","2.3.7":"2019-09-19T18:32:56.678Z","2.3.8":"2019-09-24T19:31:30.844Z","2.3.9":"2019-09-26T21:20:04.158Z","2.3.10":"2019-10-16T19:45:21.455Z","2.3.11":"2019-10-29T22:30:20.045Z","2.4.0":"2019-12-03T01:02:44.117Z","2.4.1":"2019-12-05T00:49:34.485Z","2.4.2":"2020-03-18T21:56:36.552Z","2.4.3":"2020-04-15T19:19:38.286Z","3.0.0":"2020-05-18T22:16:47.706Z","3.0.1":"2020-07-27T20:38:12.649Z","3.0.2":"2020-08-24T21:56:35.987Z","3.0.3":"2020-11-11T20:43:00.344Z","3.0.4":"2021-02-04T19:31:06.186Z","3.0.5":"2021-02-06T00:43:02.412Z","3.0.6":"2021-06-09T19:11:27.408Z","3.0.7":"2021-10-21T16:20:04.125Z","3.0.8":"2021-10-29T19:56:59.825Z","3.0.9":"2021-11-04T18:29:54.269Z","3.0.10":"2021-11-15T20:10:08.641Z","3.0.11":"2022-03-10T18:50:34.392Z","3.0.12":"2022-04-26T22:11:22.360Z","3.0.13":"2022-05-04T01:43:57.464Z","3.0.15":"2022-06-13T20:39:47.718Z","3.0.16":"2022-07-08T15:59:18.908Z","3.0.17":"2022-07-22T22:59:53.149Z","3.0.18":"2022-09-06T16:41:06.494Z","3.0.19":"2022-10-06T19:44:24.789Z","3.0.20":"2023-03-16T22:50:30.919Z","3.0.21":"2023-06-09T16:29:51.833Z","3.0.22":"2023-06-27T23:09:21.242Z","3.0.23":"2024-08-29T16:36:32.308Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}