{"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-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"3.1.22"},"description":"hint that that checks if disallowed response headers are sent","readme":"# Disallowed HTTP headers (`no-disallowed-headers`)\n\n`no-disallowed-headers` warns against responding with certain HTTP\nheaders.\n\n## Why is this important?\n\nThere are certain HTTP headers that should not be sent:\n\n1) Headers that are often set by servers, frameworks, and server-side\n   languages (e.g.: ASP.NET, PHP), that by default have values that\n   contain information about the technology that set them: its name,\n   version number, etc.\n\nSending these types of HTTP headers:\n\n* does not provide any value to the user experience\n* contributes to header bloat\n* exposes information to potential attackers about\n  the technology stack being used\n\n2) Uncommon or esoteric headers that have limited support, require\n   a lot of knowledge to use correctly, and can create more problems\n   than they solve.\n\n   One example here is the `Public-Key-Pins` header. It has [limited\n   support and usage, it’s being deprecated (along with the related\n   `Public-Key-Pins-Report-Only` header) and can easily create a lot\n   of problems if not done correctly][hpkp deprecation].\n\n## What does the hint check?\n\nBy default, the hint checks if responses include one of the following\nHTTP headers:\n\n* `Expires`\n* `Host`\n* `P3P`\n* `Pragma`\n* `Public-Key-Pins`\n* `Public-Key-Pins-Report-Only`\n* `X-AspNet-Version`\n* `X-AspNetMvc-version`\n* `X-Frame-Options`\n* `X-Powered-By`\n* `X-Runtime`\n* `X-Version`\n\nor the `Server` header with a value that provides a lot of information\nand is not limited to the server name.\n\n### Examples that **trigger** the hint\n\n```text\nHTTP/... 200 OK\n\n...\nServer: Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4\nX-Powered-By: PHP/5.3.28\n```\n\n```text\nHTTP/... 200 OK\n\n...\nPublic-Key-Pins-Report-Only:\n  pin-sha256=\"MoScTAZWKaASuYWhhneDttWpY3oBAkE3h2+soZS7sWs=\";\n  pin-sha256=\"C5HTzCzM3elUxkcjR2S5P4hhyBNf6lHkmjAHKhpGPWE=\";\n  includeSubDomains;\n  report-uri=\"https://www.example.com/hpkp-report\"\n```\n\n### Examples that **pass** the hint\n\n```text\nHTTP/... 200 OK\n\n...\nServer: apache\n```\n\n```text\nHTTP/... 200 OK\n\n...\n```\n\n## How to configure the server to pass this hint\n\n<details><summary>How to configure Apache</summary>\n\nIf the headers are sent, in most cases, to make Apache stop sending\nthem requires removing the configurations that tells Apache to add\nthem (e.g. for the `X-UA-Compatible` header, that would be mean\nremoving something such as `Header set X-UA-Compatible \"IE=edge\"`).\nHowever, if the headers are added from somewhere in the stack (e.g.:\nthe framework level, language level such as PHP, etc.), and that cannot\nbe changed, you can try to remove them at the `Apache` level, using\nthe following:\n\n```apache\n<IfModule mod_headers.c>\n    Header unset Expires\n    Header unset Host\n    Header unset P3P\n    Header unset Pragma\n    Header unset Public-Key-Pins\n    Header unset Public-Key-Pins-Report-Only\n    Header unset Via\n    Header unset X-AspNet-Version\n    Header unset X-AspNetMvc-version\n    Header unset X-Frame-Options\n    Header unset X-Powered-By\n    Header unset X-Runtime\n    Header unset X-Version\n</IfModule>\n```\n\nWhen it comes to the `Server` header, by default, [Apache does not\nallow removing it][apache issue 40026] (the only way to do that is\nby using an external module). However, Apache can be configured using\nthe [`ServerTokens` directive][servertokens] to provide less\ninformation thought the `Server` header.\n\nNote: The following snippet will only work in the main Apache\nconfiguration file, so don't try to include it in a `.htaccess` file!\n\n```apache\n# Prevent Apache from sending in the `Server` response header its\n# exact version number, the description of the generic OS-type or\n# information about its compiled-in modules.\n#\n# https://httpd.apache.org/docs/current/mod/core.html#servertokens\n\nServerTokens Prod\n```\n\nNote that:\n\n* The above snippets work with Apache `v2.2.0+`, but you need to have\n  [`mod_headers`][mod_headers] [enabled][how to enable apache modules]\n  for them 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 first snippets in a\n  `.htaccess` file in the root of the web site/app.\n\n</details>\n<details><summary>How to configure IIS</summary>\n\nTo add or remove headers on IIS, you can use the\n[`<customHeader> element`][customheader] and `<remove>/<add>`\ndepending on what you need.\n\nThe following snippet will remove the headers from all responses:\n\n```xml\n<configuration>\n     <system.webServer>\n        <httpProtocol>\n             <customHeaders>\n                <remove name=\"Expires\"/>\n                <remove name=\"Host\"/>\n                <remove name=\"P3P\"/>\n                <remove name=\"Pragma\"/>\n                <remove name=\"Public-Key-Pins\"/>\n                <remove name=\"Public-Key-Pins-Report-Only\"/>\n                <remove name=\"Via\"/>\n                <remove name=\"X-Frame-Options\"/>\n                <remove name=\"X-Powered-By\"/>\n                <remove name=\"X-Runtime\"/>\n                <remove name=\"X-Version\"/>\n             </customHeaders>\n         </httpProtocol>\n    </system.webServer>\n    <system.web>\n        <!-- X-AspNet-Version, only needed if running an AspNet app -->\n        <httpRuntime enableVersionHeader=\"false\" />\n    </system.web>\n</configuration>\n```\n\nTo remove the header `X-AspNetMvc-version`, open your `Global.asax`\nfile and add the following to your `Application_Start` event:\n\n```c#\nMvcHandler.DisableMvcResponseHeader = true;\n```\n\nRemoving the `Server` header is a bit more complicated and changes\ndepending on the version.\n\nIn IIS 10.0 you can remove it using the [`removeServerHeader` attribute\nof `requestFiltering`][request filtering]:\n\n```xml\n<configuration>\n     <system.webServer>\n        <security>\n            <requestFiltering removeServerHeader =\"true\" />\n        </security>\n    </system.webServer>\n</configuration>\n```\n\nFor previous versions of IIS (7.0-8.5) you can use the following:\n\n```xml\n<configuration>\n     <system.webServer>\n        <rewrite>\n            <outboundRules rewriteBeforeCache=\"true\">\n                <rule name=\"Remove Server header\">\n                    <match serverVariable=\"RESPONSE_Server\" pattern=\".+\" />\n                    <action type=\"Rewrite\" value=\"\" />\n                </rule>\n            </outboundRules>\n        </rewrite>\n    </system.webServer>\n</configuration>\n```\n\nThe above snippet will use a [`URL rewrite`][url rewrite] rule to\nremove the `Server` header from any request that contains it.\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\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 responses to be served with the `Server`\nHTTP header, but not with `Custom-Header`.\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"no-disallowed-headers\": [ \"warning\", {\n            \"ignore\": [\"Server\"],\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-disallowed-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<!-- Link labels: -->\n\n[hpkp deprecation]: https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/he9tr7p3rZ8/eNMwKPmUBAAJ\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n\n<!-- Apache links -->\n\n[apache directory]: https://httpd.apache.org/docs/current/mod/core.html#directory\n[apache issue 40026]: https://bz.apache.org/bugzilla/show_bug.cgi?id=40026\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[servertokens]: https://httpd.apache.org/docs/current/mod/core.html#servertokens\n\n<!-- IIS links -->\n\n[customheader]: https://docs.microsoft.com/en-us/iis/configuration/system.webserver/httpprotocol/customheaders/\n[request filtering]: https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/requestfiltering/#new-in-iis-100\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-disallowed-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-disallowed-headers","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","no-disallowed-headers","no-disallowed-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"86e8e5e1ab5ca8bdcf327711219429a3d0e283ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-xfIayqWKaEpMbPo4b3EWc/621Cf+zoWuy0aSarbygDYkRjEDWxfGMuM+fCJV1CWe3rgT9SPBD5sBsZeZ2Rbo0A==","signatures":[{"sig":"MEUCIGflC4ZIAMNwuIYA8HD+KHzMnvF4xrmT5snIBbWCnaOrAiEA4eGdiZX+v7eIlmgkzcd4gsk8IItedQgKku1guJQymkI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTlZTCRA9TVsSAnZWagAAgQ4P/iLB+X7ILSgAz+fred1u\ny+IqSvJV5Fh+bX/Ps4TWG6WM55RWad9uVreVwuetPRT2aL1W3h5xZLiAD/qv\nYpKpnVpWktJ/SxwrFoRpOuCk+Y/3FsobhsQG0441r+gFMe3Ig5y3WurJYAeL\nuOzcQ0z0qRk02FjtXc1PC8G0ITKz77RIPusnsG4xqX9GVl4beRV8qdJlzY2J\nrK88CmUhyEsD8Q9h2KTpIBy274C+Wo5Yo55Pf22uXSQ+c2BmqFbSYZNca4Rm\nbpPU0GislQOKOwjjFLqliPN67TYwJJAcGDsxnenyIHi7TmpaineQmyacoemP\nz7a78l6sD7/owWRZMyNR/QRzjEt+KHPrNS9VE2wT1ihJ4crGgkDsbpxZstqO\nyq71NjNpKhInqAH0K/VZnJdnSvHwNKpHdnBVODlv94ry5LVayDCVtY+iVnZ2\nUfQOAEHWtZhRlW1N77J950d63wodTjEjwBFcaoDQvSkSLqsZmgZ/N8YBR0LC\n5AkDL6GCvYeNjW9mFEQDvxuY6RRX7OYtMIk4R8aKa1pywlulgeAU9xy4zyFM\ntDfUDTVdwVB7nc/a0DEN2v7JnK/skYXCL3GNAA6QSl8ry4L0MJOnAQZzkGlH\nLpCGcgH0loS0QvUrfN/n2adHo15ns0e8DhwZ6mPQooksfGLCk6oPhdPlKBYY\ng5p3\r\n=FaM3\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 disallowed response headers are sent","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-disallowed-headers_1.0.0-beta.0_1531860563146_0.36876414915307665","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-no-disallowed-headers","version":"1.0.0","keywords":["webhint","webhint-hint","no-disallowed-headers","no-disallowed-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"317d4bd420e7c31a9aa3bb4b109e8d12bf7c3875","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.0.tgz","fileCount":7,"integrity":"sha512-VR4n4Fg8cP8+ohV3eOZxWnZcl1sV9c0fVg+plsyx9xvv3ldksUIFa4X8zwlv48CoaL2JTpLqyNOqmVzzvbNU2w==","signatures":[{"sig":"MEUCIQDjgc3Uou89RN5HV2cebyPc5qT8xEDX9OpdR7RQYcpIdAIgXdp6qlXpnyLlPaVYQstG7NioKnLu4XFL+ZjXrLvMfz4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaM/dCRA9TVsSAnZWagAAjbkP/0hcOtujOBEungabCspJ\n1id4KrdtejJD7Dbll1cajPifhmNF2XsmoPiv9ZXbnoVMca5b3fOlUlw5p28+\nlbcJskv0h6CosOcBQwKJjJDNRLmknt97+jl5GMe2NRQWIW0RZw1h8dhSB8T8\nlWvKnlKG6khgC4NkxzmSXklJKbPlXZEoVxZnaMHyoeUh3IpBmD52DKopIZTN\n6kp6fuBgz2uMyJdw+JlTV/HoGwBEp1gNIuUbyJuc5Q31cGtRcRSTOTKkEGBy\nHQ6fQQzRZKaFP/Y/bgUmrIKSOBReb/2pj884Ybabuf9Ma3fh8bW0IIczqY6W\neSmdEjxkERFnbSsKzMyZrWdBGnTYOyuV0tj2WR4A9JJgH6BMU+7jJsXvEpwM\na/kTVy15hEUa8c48xlGAFGgg7a+5YP62TVKWetqBo34vXbBEdhRha7NDF/kG\nH21zrHWOqLWtw0TOo/IMlSfmhcSZ9mxAy+mVpCvQ2UpA5ImuY43Lcw6NUUsm\nGU7wQe2baWGhi75TjGDEZm6YTjUeq7RcVgQbuJvI/+Rq01cGxr0DNROaZRzd\nUaGDWD+rE5fBubRP8jFuEz9GC3waeHO+qk5ViG8XA7iFQ6kE2uKYhAOD+uuf\nmaQKmPc3aLr+rslcUPWFUO/E2yq+27BmeKHvT91LbeG2FRI5TO0p9Hw+YXCB\nn0iB\r\n=IpLQ\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 disallowed response headers are sent","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-disallowed-headers_1.0.0_1533595613018_0.49841989041725787","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-no-disallowed-headers","version":"1.0.1","keywords":["webhint","webhint-hint","no-disallowed-headers","no-disallowed-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"b84a998ceded6ccc4405571579c33e14df0780f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.1.tgz","fileCount":7,"integrity":"sha512-CplWX7/RyZ1ftEeQy7utV/5r692AYYHEig5S840WZeI2UvwE8pAPmJTcMgjNEvi/0OOGR9oP2NbbeD5ZzkhWsg==","signatures":[{"sig":"MEQCIG5YDfug0YMrsjCRn3KDe06qJ7+FlpQ2iWaXaZXHPGnuAiAiDfF3aplvL8sHrcn+7Dk3CVBLkTDYyG9mATRyJDaeKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbhpsCRA9TVsSAnZWagAAjIoP/jRmL8SPBUpYpDt13d+c\nlYXBuS+wK29PI6WrXCMK0+JU7nKpw9+R6iccSHIQ67kaweBDn23+2VgO89VW\nL6vF1xFROzwZZaXil0cnpjW2x5UUpvBJhzHk0aKINtpptoNakd9yTWdxbYbS\nKSN7y+upZOBj0B0Ue8Zoc6Ijj6o62atbwEh5rvTKc0fbP83r1yuHjz5v4ltw\n2QotqSll7xbaCgbWDruU769N55ByoE1oNmjWdKtIFLjnK1nBLrZ6Ihgq+MOd\n5eaZhG1TwnpzG/0dNFD0//75X4TPI395lFudSgVEQ34vDkqDDbC1mRzspa+T\nD//d3J4q/53YsX129aY45W9vojYs76aaEfDNpUqmZghg9EDe9wIta+Ttm4HH\ngPh7b3xyh+CC8wkiN3KYizd+iFvQs2BDMB5rdH3e626huy/UVRGvHUoAM+Dc\nx9UTUgkBxuyl+0dGU93wBqYcHlA5KxxQZU1EFqKEWbGmS66CZK1wIQ1K2PEp\ni/G7A6d6gX+2P0ZEbID1cWvkPwtmXy4KWJwLy+Ojriq8RPpm4xJYsyAlJp7d\n4YqSffyoAJChxnSVmEFObuwQd6+Bu4kxKiuDmYIoCG6YtiyAHVGu7euAKrmu\ny03dThrAOKeztrJU+TT57jSz/kqTBEBwdnYdUcf0TVscvm2TJnGKGT1aEjyC\nMfAb\r\n=S/ct\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 disallowed response headers are sent","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-disallowed-headers_1.0.1_1533942379882_0.11596760237000137","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-no-disallowed-headers","version":"1.0.2","keywords":["webhint","webhint-hint","no-disallowed-headers","no-disallowed-headers-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"c06fa4484cce1eca6344ca75c433445e828a401e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.2.tgz","fileCount":7,"integrity":"sha512-C21WyCP3e6rLghwMlmYuKj1wUny98TncHVi7rmDyqhHL2WcRQ6ayz5XhN6/Vz2mYdCTkz1VcY2+2s14r2k/hTQ==","signatures":[{"sig":"MEUCIQCgdh7Yxj5yrGHeS+QbFXG6wtZAVcqXXVCa9UVeQdNSUgIgWKGNdwgAIDPPfw9Hd5BcdFcAi9dHznDTTp0s5/47wSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcxv9CRA9TVsSAnZWagAAQXoP/1qnLhvOkIiP491iV+Q5\nZcwL3EVoP5daN353ZXkaKG5tPCNAC59lksPfOY9qLE5ViDPnCa6ojuHb55cq\n5XUi3D9GwpU+sw5ncWbCVFalzV2QdbQD3UJV6Yd5NPF6PJx4fjOtqUC9H11v\naIbDv3cXv3kTeeAjk2+/60Q6IwmUJsFocBcRi+1c0Cge3cJdjtPhQsIOTFjw\nETGsACb2E8jCUlyoZbVG/Xuo8WFoXa9VwYwajjQIpZfRIICiYjCLf4Op4vvB\nvN0Inh5A78uS412zSvq+9IfxxT1Bq/z+CTZ8MsIjEm3P7UEiFFYd0aDnIQs0\nZdU+5llQs6eyeVUGW9xBoSHoYdN6oO4OTMJiodaLmDKbvh8PVs0ZQR0nb2k8\n3eyarrfxmuIZnOf5fCiIfVWklTlrwaVQh3t9ySi8rzAtwcy4E26CkoYEzTSz\np9pEXSgRaAm7Wno25jtONRCTXHQD4gEQmPqjMBz4fGYqIMNbB0KcsJK2Wogs\nEpjRM/GaEvIiSGunNJ1SZls8YBzosin1tVrx2J/3mPAbPFrPn+SqgqnKjgos\n5IaW4v89WjcS3csCgqC4q5h4YeIcKFeOxOxp/GgW55r392mh3cAIeQssdFf+\n8j+3qhnWxDycDZjy4wk4/n0iXlXmycYzkk99RE6sIUuX/dKvpavMF39PHE0m\nwp9k\r\n=0nZm\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 disallowed response headers are sent","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-disallowed-headers_1.0.2_1534270461149_0.730593261234981","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-no-disallowed-headers","version":"1.0.3","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"8edff7184dff2aed81710071a4963c658b0db05c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.3.tgz","fileCount":6,"integrity":"sha512-O6x0cB0ibpGLeYO9WTycZ85OSb5JGI0GE9wIzoD5+6hE51YOr8D5JGWGPH/CtUWI2ZKv0VhLoGgRwafrO0I6KQ==","signatures":[{"sig":"MEUCIQDxdf3/nUMZ58BjR9NEApy6cMfJRI6KxQem1S9yeCDhsgIgFZPg+wNNjLE6pnUPsJQfSBQ1+99k09S8yX7PNDM/spQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkbFYCRA9TVsSAnZWagAAY/4P+gMgrRkgeXy/FUBazn2R\nxRReIe5u5clC0FUstph+qnMqDVST7bSotdDA6ONpVe+5wV4biHLkiUfLDedt\nCqUekr3uiui8A7gtknHD66aZlqWta0cBf9m/4q7xbiNmfu6irtPhDRcZ97lh\nXzSjcPuJarmAK2alkt+OMLe3ztAz6j1CJUoTtHDMrHfncyOjcnmFHx/IKXsb\nAZJwEmxdcfCeKOHOOyh2hsKnuXri/P4F/esIN6j2O0/nkSVUbiesHS9KyykJ\nqSfswnOKe60H/cRUIAtGDYEFeBiNuehkcL7qvomVez4hW7WezgG0DYdsQy9f\nYBAvithZvPGxHwfLG8M0cg6pkO5+hlJLcVlUczAuBri3TsFbfLLcJx1LXo0S\nr4/GDL67UR4LQorjy8hmZREViOZuvEBOIKBd2zaWPfhdogDqdexTKoEU5OpA\n4E40zDroZIjaANykB/SC6/QkrN2mzaVD6tkCMjsFVHNrVsotClmd3GyEsoLE\nAq47RYupBSklX2gBXXNp5qQrWIUKdL3ggTmmljs+e2rUKMFtyUw9hDj8AxFs\nBzdG0kLddPcOz8asEFcR5Ju+KUkcsRvOIIQCkYeMrwpcPvAr7gn6d4LTPkHV\nFpL7nPvTyiJvsM7Mncba9fnwO+WY+wN3FggPryurd+De9oljJClCos3O4giN\nJ8wt\r\n=V4nS\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 disallowed response headers are sent","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-disallowed-headers_1.0.3_1536274776078_0.4884632004539651","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-no-disallowed-headers","version":"1.0.4","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"982757743b3445a9584f4a02695d21bb5d6af982","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-1.0.4.tgz","fileCount":6,"integrity":"sha512-J6Kl1S4KD8vl1n4d2SXOiCNWdFhYqKq5P1Eoy7kCPVkqO6BUjyqkxYkFfSiYgkLhRj9zfmlIvLRvGFW10XQ5gw==","signatures":[{"sig":"MEYCIQCttJfPFk0KK2crcdHkfrWL7hla5sP65kOZEYUzfGihSAIhANnEeZcmheqwnWojA5GqEjs7QjtRCAMD6QJ7wzz2YVLs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2kHVCRA9TVsSAnZWagAAe4MQAIzzve6YPyDaqF/b3KEZ\nbZgMO7wv8jrWa8AtUaWHG87cVOXp4s6VaYE1OPkvwe2d4qXTkOAEk3YkIu3L\nMI8+g0rQaIOr6wiCBd4f+5oZBSKdOhHYZbVuMIbmu8HL7xJKbIMz8d6S5pPe\nKjjVLYT5AFbQ3DCGHSrWxq3nf2PjLaGTzDRP4FTRmk+rJAR4+zC3bXnGQm+P\nDC1zhoypjRg+yZf7PwWN7mSkA1ktUqmb1c8BA2NE0GEH7+npiYk9xub75fp9\nwwD+TicOBwt5y2FSHxgB+9KghlAJoe24DkziTu8EBGVOOyET2t0NZxRmG4T6\nGq8HLEKWA4Ru+FgkxMCQ0R83LPXFMgfSN80+/y+rfJ5ELY1cBwhEsGDDfwC1\n/Mo1lH/QyCMKCZow8c4W3glAadds8+tmw878FtDxEjcSc3mmdFfmyKlLHagk\nUdLAXzTCxZgF9fqebcoon52apQliqpvUWg+dxYubeTh1doieM0UADUnyC1og\nvCv+eE7vISFhffxQsZOPUyZYxEIgugMC7NFRrZCpuDKxXWPOOa0uo/u2i19Y\nmlgkMszOMYJjWUKdK3/cAak7LP5Ac9icwbOi2wMMRGoTu6n2XpRs9SCPmMGb\nqvgO0DWlaNh3B0+Q+141hZhabqCWuEyWAbFsbL4M3OF1Kh9pDf07GOngyYzS\ni8sg\r\n=kbXq\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 disallowed response headers are sent","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-disallowed-headers_1.0.4_1541030356746_0.49393355782082127","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-no-disallowed-headers","version":"2.0.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"51eb652d765512e0f97ca1a9aefa0804bf90a392","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.0.0.tgz","fileCount":6,"integrity":"sha512-RB3gEAl0YsAfkEMcv5qWNjxvhnlmFGRR8Qj3umZYK+0BaBqiukpGuhZDITmKk/iDRYNXeh//4E8qGg5ecwoL9g==","signatures":[{"sig":"MEUCIQDk7XpcE1mFCj8D6tELoRuFPFUFG+yjwfEX1YdPR/rp8AIgFqZ5RXHXu4qcbVnQ90rojOXiKvo4PRW5MOSWps2nOkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4N4KCRA9TVsSAnZWagAA0FsP/1+qYHTETmEO6638yyRb\ndbpFvNvZbpCB7Vl0kKefp07TCXqt1geunAPKec9T1/Plge9HkN2tVpWvHSE6\nG4T5weRvP4vDUIOz9/mNqehspUVTSB2/+qIxAH97VSQNkj6jJ8Ae8O1ewFwy\nkYQPgpDRv5pq0jD1HAWJcu5wCk01ntMnbG8RQ+J9apkWPAm8v7yGCZ95zMqm\niH6gQmSACmVJR6nMybt1F44/Q+YoSidLr0UrbnevNs2mgWCO7vCl6BRKLnb1\n+qrMNNJAlsCP7Ne2pe7rfWCJpKLusMSW85DhnPmW52sY2Sg+sF5hdBsHNmI1\nL6toOoL+9u4fLwAkzKsC8r8sFI6IUnLET9sIyWcwLZNqP8u3GsHiqzYnNtwF\nxbZn1oGc2KgfmNT7JTWLY7NoyCRc5Je3zWaHozm19bttpThsYhqKfeA0Sfwf\nHVj9U/JiK6FHoWkHtUEY05PkgayJJ0wf+9GlIZWkOa4vKll5Yd/IS4g1gYK8\nAR9TZHZm5vaZ40GUm4zSn2990pR5BHi6vps+JVhBnmxMZQjl/vOrm1sPL4aJ\nTHn+1FG19FYAaTezR5Urq8uDF8nu2VKDXRXrtwKy1hjyzGAvwFwEz5Shp997\n54KmZmfFbbrDy/FGcTadcxS8BKJqgI6zYsrqIaLajN2WaXuQbdNKSRGrIZld\nrpuY\r\n=m9bc\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 disallowed response headers are sent","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-disallowed-headers_2.0.0_1541463561232_0.8194408020396406","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-no-disallowed-headers","version":"2.1.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"4baad3c71bc4eb70ba5ab9c5f28663fe35b7ee90","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.1.0.tgz","fileCount":8,"integrity":"sha512-idGPSB9TuScYUG6DifRjWx4YqzKatf5+EggbzaH4e/ZZcf3W9YjGmXactDzAI6WF+wMx6dYDaYZwIanm7wlh0Q==","signatures":[{"sig":"MEQCIGbgm+pyI1AFivO8guT8IbHP74O43LEQFZWGqCPpTGPyAiAFefNab7R2BgKpSgP73EHPLb8z9vIMOjzyracK6o4YXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/kSnCRA9TVsSAnZWagAAg10P/RI3v8lZp9jnNjjmsnuj\nt2FVj4m/um03sUsIQlaMHaGYsnhNKAg/KoZNgrR7TkhodyPzs9X50b74PIB3\nWHXyp/fhf6tGsrcO+bo9h3aVphTy46lAv8gJnvVy+KboPXlMC/EEYy5WjT9Y\nCe4uWPQYKru/osbrzA0SWu1jbRKwdoqR43G8J8oPrpMK3xzS55NTN0bu2vmk\nxuXK9QpsVij/rJnJ6v8Txn9WDZNsYJxw3M70wzkRQM9g9V/PzxDOa8nL4cv5\nwP3Rols53kggJId/53f0ddvc++Xv6y/peSHukrSXuMjVK8AgMaUtTJ6RrCZ1\nuvCT/QfuMCiKJ65bDlU8GndezzHcCcq8qjnUbwBhQzBaShTUf2TMOp8XgVbQ\ni5J0/F8IERVCVH9w4nn5o2QQh6XqsXInLdFwSliph7XRvBmDC1928KJNNawo\n1I40LZInxUETvfHeJMerhpF4lLEcS9sy36h0WvF6w8wLL4K5BEsNGk0gTrCX\nockHvqB5SldFaLxW+7PNyRrgWdHNaQ5xe6Gc0ODxLeHtDnc3VAonuETrmRDT\nupikZ6NNKqV4iNBLH6HmsKOfePZb/3sqLb9C/3roLaaqkOjer5vRvyXrW7Rs\nd+vW8uwWdszvAvFLYeW8nxCX0XDQ22EdbIwrsA60S6/1843WXhsYf1zURc99\nBGPH\r\n=SD6Z\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 disallowed response headers are sent","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-disallowed-headers_2.1.0_1543390374854_0.5434061497431644","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-no-disallowed-headers","version":"2.1.1","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"0b10f839dfc8dbde69be3e18338f706c65249249","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.1.1.tgz","fileCount":8,"integrity":"sha512-BpT+eSnhExP6nrKYm6p+vrZjIqclwAUbMKJHxZRWxKCLNGbtwIPCft6FTl7kSay/Uiqq3wjkspiyDj4ggqoScw==","signatures":[{"sig":"MEUCIQDsndT1k88JFe8q7+TaciIydK7SxNT4x+ySwmIrjsiifQIge8vOfUBC+o60hUVMDWwxZ7EbP4bYJUlxyzyrEFbVKgc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLSqvCRA9TVsSAnZWagAAOHoQAIRkpIY5vGMIlVEnTsJk\nlIqFApH90zxZ6T4TkAfVbEh0hOl0gQXciPYjpixZ0MT3vBwJHnFBRImfcwUm\nEJDf6+iFiQUn8qzpl4rcITGhb/aoK98z9o4vnw81ncJMZnKjyeyWM+BekpCL\nYusEE5wyBRcDnsVKF1BnOMrtrGoUqTfx5zjRcXc7YVSQfxND/l8tDXi99TOG\n5Ei6W1viLzcyJOnc6qALDpXURF8FfEGyS3IUqmd1nq+rf702Fxx2kShcCfQA\n8DFx15afTdQLeLWHRV8CX7aOXDXnF0xISvdnXnUJ/TJYErY5qILKp+QjT8wo\nyOB+y+WgJ08gI9uhpNZkOHK0UKESf861+FTqCQGY4wBr7ypmERZJEjJmw8Qz\nqZAlBz7uOD9V490Ag3k0WqzvWNGNh/gg95fyIirP4Oc4UnBH8K1evUT/qpdt\nNqBIxs++uxFxQVyKEu7+obn+vlWOGv7khf33fROh+Kc9nBRz18qhoSycKBZF\nFSIg/t2Ixzz0oNv8drgrzrYckOnAxUHvhUo2x1djHvHLhjVkKJ/0zmIyi/4U\nZwhWZUs3KY5/dM2sX/ppMlpZqZEsmo6IL1fz5A56jhO28irPqBraYtKpj+EQ\nT25AGfq8gJttHsCWwMw7HlwylnrnrthtZUCcSV64+mA9hasijL9BXZrV//Vw\nY8bw\r\n=OYvM\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 disallowed response headers are sent","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-disallowed-headers_2.1.1_1546463918970_0.02737317333429945","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@hint/hint-no-disallowed-headers","version":"2.1.2","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"d6f3a394c1426d71015e9e0266a8d585dc110c2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.1.2.tgz","fileCount":10,"integrity":"sha512-MR+DHDI5EiAnchjcxCk0JoP0T80avC24AfODMN7kYAnA4kS0dlikUpD4tA0rX0EbxMltCKmBvVUvOv5gZuV7Fg==","signatures":[{"sig":"MEQCIC+1Uoz1YdNiWIq50EjQQMFfLv6IPHfWon1MmT9sc4ysAiAaPk7zt4AXGCHO0jsmxtLlCbClguv6CUaAC+E2cGwlRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccDY1CRA9TVsSAnZWagAAr2wP+wXXUUu/kHn2osGEFJP+\n3oAzNTS5NcLylBnhQRzJLfd+Jmnp3YUzhMfHULcNJvPnk3sfQmtiA1TJGe45\nv9vNxNmbwILXcZz3op1ugf1Nvf7uQUzjzpDs3G59A//KzODtu/f946e3jvn3\nABomRdejj6ZOHX0bxebo1VKVKvo3K6EfMMs2etbIGKfCaRE+XxzQi/+099uU\nzu9H/HXxjo1nNbm/YPD6FR4KzpZUoZvHF7i5t6l6/PDQRG2AVlof4L3oddDe\nlIACiibK5gmfUg+Ju1ecxmz9+HAtWiLE4hRUHn6CgFJ5jYFHIjc61aphcXQH\nFf8FV8TfHFpXMv+/mWXxlE3ZfKXUuhjDdTNy3rvIGe+GRTWohv0vdMyERWDQ\n5Fode/B1kEA83/+asdS6F0jx9ZtMr5RjfdaI6DktOGnmYHEhVuSgJDuU5+vk\ndQrskH17D1qG47HbD37yA8AssrWgt/sL1+RS5kxpzlqm69wGI2je9etyQC6l\na8Ya7wdEuVtaRNV09QGhVwVwlCHN5q2DkvqKfDYXHegUWGCZrllM4tQpI0xf\npSYavlYK9kQByHTXpEKkeQagz51zRHPLglmyGdXODBIL/qeeegLP6JLDIass\n0498fjnCK1t8SGKM1llIVC+VMixIvOfqzHYwGzaieyHLmofwouMAfsvX6rWE\ncMGz\r\n=4nGd\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 disallowed response headers are sent","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-disallowed-headers_2.1.2_1550857780552_0.6169009778463099","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"@hint/hint-no-disallowed-headers","version":"2.2.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"40b3e91ef2e2c78fac1c1aa58c8f316ccc076d16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.2.0.tgz","fileCount":10,"integrity":"sha512-LqK5SYfyS9vkCNzBEUNEhUXnBE1XleBUzv8szPY4+0dEzs+w+h4xcBR66tyLXxm8SGjGFOfPAqe6xwyACnJpFw==","signatures":[{"sig":"MEUCIQDRT+BP0qGF/yYhSuwz90adW/xEUI7VG0RTNmSLEcrqZQIgGsxGsOHXPLebv/ryyvFjIlq25s3+reuw/WKQGD6qQfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc23+kCRA9TVsSAnZWagAAv+cQAJ9YrQnsTzVDr0CNQlJE\n7eUx3fYyt8S8Fvi0NaURV5cPx8xY9St85Hpxy1H8vDFRqK/sX52Cy9fGU2dn\nraj0hNqP1bTnq30JXwdpEThRaeKMM70lAPeV/15gnwdCU7v9TH4/8wsABRk9\nrNU2TzpOHzdhPZ6KF8MyZF/aqgmL9lBmAwJ8FBaUyOxVV4YrlZTVMk6uc4fx\nDelen37XDWeqsMr/GuUq5kzMSAVJ1iZVA9nKqfp1UluB8jbVMx/OyDbAOlQ5\nRCZNeP7S+u1GrWwLnrlGoxhT3y+a4DVrLKPY6ApkxVS4U/bNz5yDLRLn9TYh\ng6o3IuYcBevhVwXdG/O25nv/WT5VpNf2W9MLJduBfAQ0kgbfWHprf8YMgnkc\n4/UCw/mUlfQY5pBnu4RIjdkbbMPqpRr0rOrvGBLP3BlMr34wY8Daz0B1BZp4\nx6LqRA3ikFAedCnKArVOa0Om1QUkAfl5UDMFFwmHlEhaFVE2bSe5qPUqO6tV\nZ0gs7KH2a+VCED859qmNcB5wVkhC82rXwbD50nIagGN9LQ/5rc1gVoCAA428\nw/i71nmn6RYNC4HMjajrl8Q8gTe1EFjt2NA6LKaKS+r1mrLOMTVEA1IWEylC\ntQeKigDl8FZL04wErLKE0e9LYhj5/FtHWooGCdoLXEHpU+K45H66QVN8RxPF\n7Oee\r\n=MAyg\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 disallowed response headers are sent","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-disallowed-headers_2.2.0_1557888931742_0.730030626778303","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"@hint/hint-no-disallowed-headers","version":"2.2.1","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"14e61595fbce329ea6ddc7995137db9a93b409e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.2.1.tgz","fileCount":10,"integrity":"sha512-WgohyZIJwaACdFWbHpMbCTDXAJRLXjLApZHOS2N2edrKKE6EirPMwEEPKQUiJnUlrYv13Cd3F+4FUg7S/Yn9Nw==","signatures":[{"sig":"MEQCICPPmgHZ6lkW22K7AVdPLF3PRT0eprr16OnFR5X3NmaOAiBHHNbPRKnEz9T2loq1GqlflxULWi9KUDvNQXtHmGTaPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25THCRA9TVsSAnZWagAABzAP/3oe/Zz8AIOft9Y2uUTt\nzMtYabHEIP9ueaQKCPoXepMb+E1FFjKxab0jE3w/jKQfhbp1Q/6Fni1lfT1q\nj4+uN+3znAPYCqCVBL6oEmyaf0rMJ9S0cnSJS4BJpw2ml0TZ6lciI2x+6jLG\n8+Y9vrP5mvJQO5xoxMmgaks8yFLQfME3rTNHcethbWCZfhzwa6bc0AwYkjNU\n5FmT0elhTgUOv7LL9waohFhezf/biyzFgVrbWe+vz4tnxzcq79IeFVI+IvtG\nXByhxAN4yqJw7l7jNCsAc58NLRNDl/oH8rrvI/CnCxjgPiBc1nXFMf+lad6K\n83+qm6NkRrMjhEFWTUr8y/PrUq/nLL2xMVvBndc7TMPmSm9mp6EU0/pzf8T5\nYBEEJ2MgdtT6HGeHwI4co4ZfXSAr7g3fMBCjpekDzwv5MiBSdWLwDNDJmmI8\nJNY/c7BJqbiu6fozCTl5LMSgaSCMDwkDtbxDRjk4zdAb4pVRC0uvxDlumol4\n5z1p6DTsq03C9RI1NhrUKe+tu/HmmifZ2ZS8j7vRabhqTuYdvKgb0QkLjOdb\nHwoO2ksrrbb48YTS5DtlBV+TQtxB45d/DgoLfN65kJf2rF8xZOjyqhjI/Puw\nBxRbcBLyHS2PO4PFUmBMb/pbuSJsn7JUO7EH5PlVQ4QOfzCiTAQX9Gykg82B\ngVVi\r\n=RdKf\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 disallowed response headers are sent","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-disallowed-headers_2.2.1_1557894343229_0.7555034935565641","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"@hint/hint-no-disallowed-headers","version":"2.2.2","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"8d74800255c1a3ee0dde628b618c9002802bff12","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.2.2.tgz","fileCount":10,"integrity":"sha512-S6kdkFuoN6S4GJ4KRULKAMHhAVoNvIcvDCINRD5vJmgozH3oO11ZWkbRHyZ4Z/raScAEOOLVda/6eQOnQhSEaw==","signatures":[{"sig":"MEYCIQCv6SMlFYB++VC/SYFeD9THHRil8k212w8XZT2zsIVptAIhAIhKGxFFLtmj2YUUdJmsUHvq5JrM7QnTla79Cu6uyRBa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sEzCRA9TVsSAnZWagAAF2IP/1jAPk6S5bB9km4dAw0t\nEa4BYa2uES3mjjFK6wlhiDDUChITE62Oa6eDzfeb3DnWQVfFmoiH2wKlz1qs\nT6MUcdzq728vB5fXNG5qr23+UdGOqGncllYkn4Xu1DGci8g/bbD08CovvUei\n5FMDVIxkPLJJ8SvuHsPgvV5BsrGcIiXbVDmFyi7qRqpo11OZGPNF4r9bt511\nBPCRXgzvG164vtZwCZjlm28oMwejvg7NuFsOj/CK5J1CVHddulK76nmYoL+g\n1HAQc4gWSMdfTZKwD6Ci0wmqozWal2iWila2U3O7QBg7E0zE1Z6/GDGxqO47\nLlbj1tAZWwnJ6yGGsgT2XgBSoYuNSo5lhpo+VJMaw4EiDZW+kzsgPnIrJetQ\nB3/etGlapuZK/yKRukn/jI7eI58UziMwLy64nOM7ivolTsN2egFIuFyPA4O0\nX97UuvfRZkK8SzXbvIXrfKqeum9Wpaqut9j0BTyMLuTtZK84EsfT2JJNrELk\nIzpDK5YPRmio8dII00lvdhu1BqXXwksMBjRfeCNlG77q1cIieIS5TJ1/mcKj\nOvCY8glirghwO4M+lh+AYqWZDzPGW3tmYYpGq3ousn0ujiMyXaJ13/kEF8H5\nVjmnNhQtVpHsLoXYKX7gxopEEpNcwd/ln6I5lik7XqU+/WZnjk71XtQ53WIR\nrTO4\r\n=4R16\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 disallowed response headers are sent","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-disallowed-headers_2.2.2_1558626610768_0.7713057353575963","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"f051c78a3a797d13558938fa5f35445a5d502243","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.0.tgz","fileCount":14,"integrity":"sha512-3oN3B/Y0KS+qtXZjCFh6xAZFcxReoFSfPwuzsC+JXwFsVWh2QG8V9hN4J92xgThswYdxj/PhaztDBc1Vl8ZsgA==","signatures":[{"sig":"MEQCIBm/zokzyZhHZEVuwiDoAJGmOlpbCRj0gU3KDlUOQ3G9AiBu3VXa/A4zyKGNa3fThUS40umvEfSaGVuZCvk4WVNEew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzapCRA9TVsSAnZWagAA0dsQAJ+4f9xo1vxjrBuDzUwD\nYUu7jzEeNrlmgoFG5GK9SwYMLkJOWGuN9Jy39V4alaXgBsS6+FBWerBu13c1\nUiFTCqAVHh38uGldDxIx85u6Ln11lmzkr7unn+PAYncSssgcbBjtSIo2dPyl\nq2UgiBBE8Xc6clhMfsXjlg1NnKu91puTwPfUxP3OXwfUFgDatqGF3e1RMyKY\nmFAmErQpdFouPHwTaeFiIqIL/PUNmIf+L2v2ofC/QAKrvNFEslbKWyqu4mAj\nhF1YTnYARrcHpIUbzeJ3vZeGffzNi4pDczXUxbSvF/+c86PHNIvl2Bog/Qum\n72SttSQS07s9XXKSaiF3H5yuPu7SZ8xve7/t95/E7Dd6ss5YQ7n3R8bTp/qQ\nqS/mPA1ON7UKOYcNl4JsGRaZeuDAwikPnBsPZFkDm5/fY2qmcccm8ujXr0nh\nwhdJptzt84KqU8v3bw8UzxR2bsQzoKKaMnBeYBcjwjgUueqOzafAzckavF9y\n8E4D+af5K+Gfxmp8CJmtyNM64HUrgVFsb+e/c1x3yBjXJdEwpZ4EYV+c6N31\n8fvApjdMHWfMh3inLX8NwlPVBssbXIMak6ebhuoV+/e7LuRAF/ATTJ7MQ71g\noJ1IV+sMHLVwWNMweKqIaAsyRJvO9DR9JQBonb/71m9zEkqNaUHoQB2bZEi2\n4ey2\r\n=W391\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 disallowed response headers are sent","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-disallowed-headers_2.3.0_1563899560936_0.037499140708819656","host":"s3://npm-registry-packages"}},"2.3.1":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.1","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"b4864db370c8c42d0ac9dcd0f13baf30b10dc4fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.1.tgz","fileCount":14,"integrity":"sha512-TPHwizxNOeYpS5mYA8l4ZDgV290FO3m2q3n5cxh+YelfuGYJaHZmLauXJdJxz9YfwGLBesQQ6AKQmdsQ6ncdDQ==","signatures":[{"sig":"MEQCICiv/QFdD3XTfV8+LzGgMXGW/oxoV7Y/j9pIu3TZme8zAiBE5Bn4NU8eXsut7rt3EjdsXKf+5MjU7vYWduuuj5E7kA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMt8CRA9TVsSAnZWagAAo0cP/1YMuGPv+frWwH/dSvlr\nEN6iRwdm7vwf5Zjwiii15Mu7hBeOVr+yB8oSLeOG7fmOcQMTGYZbFQfEFC7F\n6wEsQ9cXhC6Byh9SFW7lKWLWPnWQpbBsbWqPUB3Viu2ESrZoW7m9JYUL0hXO\nwsr2S5FHIQRuuCetZvfFX5kT0074rmJz3Oh7HLhMNyjQYVteVdTAfSXVghtY\n/cPTM1hBKrVRucNr94dzZAtPj2VZAn7IU8cLjExljoB3DaBzOgEPEynnY/FW\n+1741WWzoUw1gSwWM7/WB+65UkjrwyLYN/lkanSFCtqdK8koU8GPFDNl7ofR\nGgxvaRh2H70BiY1NT8zmo4KGLi+0TYQRYk+yIEFMqIfVvG7yRq99el4RsDHc\n9RscZtOErVzDXjn0T7UxIVk0n7/1gutmD6BsyKVYLxQZdNJiqcIXyNkufDe/\ndKazdssAToC7FPrzcPbVTWGJz7bS3/g4SiTNk9Yu070G3Idn+zQVbtjnQph+\nAXqKlwynKGs9vrFmSrMhqtV6CcrkpP/BJvFujATAOdjxk8OvSQb2qB74x4E7\n6RxzqiZQHRBVts2wRnT9wg0pU0p0q5B0xJskTAqKjMfjtSxSZFyFrjehDeTA\na1K8UT5Fp5uyEHs7veM3X7+a0bWGgIv5owL2zxLLj78Yz4g1sRsyBmgZIYdH\nhxDm\r\n=Xo1y\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 disallowed response headers are sent","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-disallowed-headers_2.3.1_1564003195593_0.3493956662344988","host":"s3://npm-registry-packages"}},"2.3.2":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.2","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"9bfaa7dc481adaca055a7ab9b9379febad0b3b4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.2.tgz","fileCount":14,"integrity":"sha512-K+kG92a3N4f9pgAr1oZJn2zdYBY8f1G+i9SOvXrklZxbzaWJtM5+aBxAGjRgoxcomsnw0KknnGXS4cEWeefjHA==","signatures":[{"sig":"MEQCIHJSW8QpTqDCpiM8S2ubVAw94PB60FyRSBj32Mp1cYoVAiA2/6pq0f7hqn5snbsRkAT4F4dnZGVG06PYjKTBMldwNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJryCRA9TVsSAnZWagAAjy0P/1mNhL9RjAiAlGG5M7n2\n2eCLPs/shvv11xQWO6bSq/r35HjBnceAvzsl7Kkh5oxHk2Dms1LXG1iaXj3n\nduBvqoygUJKMLkOQYPP1GXWFnFX2YRs1pViwxgVXsLDu2bZ47tZ3+Y8xXMcg\nAwNwJii3QPs4O97AqbTmrAS7UwjTrbAa7kk9lqvbwfTuROuHNXBRKoPP5UrM\nGclx0kULPqXXdobz8B/1+//DJ4rH+FwdKKBhktDVt0FKpcv/iy6xC+cr0g2/\nj5qf/RztzLkIPGujx/DIDOfLQtklZFNw/9MNQHvhKlOXZnKVw7bAYioJRAGV\nmKNszfeVVJ0vZKVvM488yiWcvMql+f7OOusFhh49zZMlT7M/r6+uOLHpPeSE\n0NAhgLDKqGld0WLaw0iJVblP5HdH4KMnTV1bSe9mZyWv4jAVHiKRNVYNjtxV\nSPgS/NpZQUPlVT66E7Yb3Q19EnqmqfHjsvg80RXSdjl/Cl/DLHiK2lw5hhjD\nii+GqsF8XH7EVxrdSVlf1DB7XATDDRfeUiOxkF849XcnHsPy8N6nELDm1FVB\n6l3NKb+y93Y8qkqOR6/2wrZfFF3oNG+PiYhMfdsvqGNSKthMF/m1kfQ4cvu0\nBLgIkWuBLrbKNggNrKs+6qRkuu1QORZGKw23vBuNzz7PgiDklFDWbSsp2lYY\nPRIm\r\n=WNSS\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 disallowed response headers are sent","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-disallowed-headers_2.3.2_1564515058022_0.7972723709998741","host":"s3://npm-registry-packages"}},"2.3.3":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.3","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"1ef74c94b965b3ed212fe394130314674ef54402","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.3.tgz","fileCount":14,"integrity":"sha512-lRHUqsRLoQTykOct+DXHR/riyAJGvmVYUydVQ7gH6b33xwhypRyEoZjAohmG3W2jAvhEGNePp/DsMy4anUvj8g==","signatures":[{"sig":"MEYCIQCTlDiXaN4mWdiVnsIvXhxDkmvGGV0e6kfLEmtc5vU7SQIhAJvZFWHlH89iCiv1aBypblz9jv1CQ3WzOpjv5sOnqZ9A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44356,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeYoCRA9TVsSAnZWagAAlXsP/AzXwRpjH6dVfGs7Qd2W\n86MBRaDstGQXjCOnFpVQey6BQ2LcGSyfshXdk+jqg5/At1eArdwaGVDQehCu\n5BboA2KY6kEyJj4cf/iq1cTCb5CR7ic/TXY6vEiN/8DHEBJR++2eDa8qiqef\nuUgOxaV7IQCD6L8eR73au9CVwuvPVF5+Eg4k5tofo65e2mnfE+aeWjZrjkev\nxO0iJdxpQ9Cp0Vmg/a8/iWNG9rMPWkhODRSZDhD4X/NH9cMxxF4nYspOFPt5\ncAdrLkRthZ9XSosU+3jxno/D/2lNBj0bXVOfYi6+4XDe+RX1GU9evI/Sz9tW\noUEoW+fwxZuBIsySTRsEtXxmmyU1O+JbCbLifxFXqvRILAFGQSq9k1dN3VYz\nubvbLR/w01A897BtjWIYSI2RM6X99Set8aXj0QiS48VidZGDWVWfPZ7YYkEq\nFZ9/QyLYnvua32V6P6Cev7jRe8NcEiXV/GtXOL1XFNBacbEP2xiWOIN6dWUB\nSMZJlqMWllw9R27gqHNOqiFdR/Ufkwk9C11WutPx2X+FhzOIahTzit3Kwm3K\n1AVjchzM3whmK1fumZQT9rGFkwrEj761wuef55Xem37ZlYDpflIb1CQam7mb\nYqlyO+Uxgk1xPmqM0AhXFAkld1/tKboCgWWXGAedjlYyW3Cx+Yq24USh70e1\nEJmc\r\n=9yVW\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 disallowed response headers are sent","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-disallowed-headers_2.3.3_1565124136043_0.9910408085879829","host":"s3://npm-registry-packages"}},"2.3.4":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.4","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"1f829bb8d8898b65aa018683b89badd2075a0183","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.4.tgz","fileCount":14,"integrity":"sha512-7QUREEsFEKWrzVvdyB0NtBdv1agZB9SU6W8o/74UQT3qSyS7uqYjtY2WRiGh2o8UcWUCBt3FnOFaBdayc2g5wQ==","signatures":[{"sig":"MEUCIQCj1FsLfGQo+hduo8ozoqAmWTg28uRXCgCEgG7++vDMUQIgW56yOqcJlBnuNerAXU0scFRpI9v3kWOnJosr9zO3pt8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhdxCRA9TVsSAnZWagAAYEsQAJntgyzXDl0JZ1JN7U7J\nDGc6p8xc/VDrr+kIEH9YpiTEq5wKdE/JvAdveW+jz76+OBCt3L925OZ+8aNr\nD9JzWzPJkkRG6gR6vTEByo1JfS2svhEiyp1yVlrQawCnAqcwv892DsOpanBb\nUHu8wLSdZt/MPmgIySbL/mCW89atynYQo5hGIqc/ukwPJFqR6UHRiqD+ii7S\nk0CZZfKLnxBuwTw+dJX/GTr3TWNkHAN/pGszMiYIbYxQSRm4+WRF98K7nofQ\n5tqc8IbDDtz2sVJZiI0wUmgVGjLRmUERWJr5HzscKZTITQuE2j29jklsy/75\nZUo+I1tPSUro5bl5DBksA5tRK2uj8rNWroLE8L8YzJc5mzdAnZsoCQYTcmuW\nyAEN7ttVUGTYC7TQOKr/BZZK/QhR0qC0uBBPQ2ncTnSEg9NnS0egnpalF51k\nYKZKvQLfrVe/Me54paPKPt+SdfX0w1b6Fbkr/V8qTHaqn8qDr/3ZHXAsIC/u\nQrVYU1Ks45h2L2wGxNgM+yYZKBSob+Dl+oa1CUUc3CMklzIcLGloFAc7Dmt7\nZ7mqIVS4KcENzxkLH5SEn8UIPjkeO6S6+90lmgTIGHtCvIWOzJTSgV4qUJF1\nxs73qxlAFVnl1610L4E6BePcBtycq/JJ6eQ6/IDDSlGNPBd7XGwisveUmfSy\nW+8A\r\n=zKu3\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 disallowed response headers are sent","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-disallowed-headers_2.3.4_1565923185195_0.34782906432824356","host":"s3://npm-registry-packages"}},"2.3.5":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.5","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"2c2017818c63967967fda812edc3bf4d023dc9f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.5.tgz","fileCount":14,"integrity":"sha512-ao6RHgLq8vwS3j0QK5bmOx8sYd74JEU8lqxoJ6lThYdsZC8ByVkrAPAookrCy5pGYmDyw+3g9JtEETZrMApPvg==","signatures":[{"sig":"MEUCIQCDRcSPcAHqiekInq1+dXPIJGLtNmahIwTXPemqW5aMYwIgAiT2wJYjML0NUCr+SLfp24ohe94ap0XB/IjFwc+FzZE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/U7CRA9TVsSAnZWagAARZQQAIsbZeRahF06q5MmI3bG\ni41ShjFVlcTVOUCDnLyhy9lgVDrw9Bp0wzLf5akHfTRXhzBGTGI5nCVhzhZR\nSkihOYoOg9WWt9wjJS5EVPlU3AeTIfV/6vPawlrc0NytWZfE3/Ul4yIAVuAt\npbMYPDbZw3nvYeuGf5Z9gtrkPiuwlhEofBo3bHoA5f5/W/mvwfJD4F5/00zx\n5X2Zlv37kZHUKNcwCI33pmk8XnlMzCRr/zYixNjyiijiXMZiEKFARurrdfy0\nrE3DeyKLMvI5g8JsBl0CQgKWXmi+WoUM0Kh+/xD18qgVXHGgYW38eMO/KwQ5\nxZ0C7wFbWdgTK3SNIllbN/lQY4PyXM7gSoG/JAU5gGOSkobkwHqoQ9RXROJq\nvTh9h7W55YiXPk7cjuAfH+euCQwfjM8bEl+tnZRStW3Jk/g4rgtZmJjhML45\n7/0k/E2ycl2nDXpZ2wkNN+lxZhMNIYJdpX297IzWO5YY4e134+WLdTMmnsl3\nRBwgfMSOTsP7wafJNs/Wpbnj3KdMK4FIbnAYVr6frFwZkpCdEE5lxoWGhjYw\nY77j32LtT7DPqGLlTB8Oq4l9q9m3ebMyHJ7UeiT2LjkkDMD0jx2E+3/rPyLW\nDA7o/l04UkSOpGSoBru1AC1zkaHUZwcvvTvPMyRZnS7su046bT6GeRzyBmhE\nFLuO\r\n=PHcn\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 disallowed response headers are sent","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-disallowed-headers_2.3.5_1567094074451_0.2606951467366425","host":"s3://npm-registry-packages"}},"2.3.6":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.6","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"13f59392c637b595ac34f99c1974f9fa44d6880a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.6.tgz","fileCount":14,"integrity":"sha512-dELpaw+LiVo+QinztJX28OLrSBX7hGgi/7mSS7yLhsZd3P76oIYLT3fB6vvSyFJ9K/XKtwvvf/oQb2xiecIEHw==","signatures":[{"sig":"MEUCIFLU1Q/ISmXXQ8UhOidvxxu1rVQ8mc7eoOWBPKvsNAimAiEA49n8BAa9p1ESM2JMUEysaZcIDz9YD88J+faox/FW9fo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45759,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXXRCRA9TVsSAnZWagAA/qYP/0HoCA3fQFEUmUmxdLSu\nB+I/FIAYNuUtC6c+MAqa4hlUlyFazJIgmwisVaAiJI8wMSaNvXFSR0pW2edo\n0oVRDEoisUXabNmlf57Zv2TOpiadIJK65+w5RR85/VJxR/0/Mi6SZLDBEpCY\n0UbJjcRQx6AcMPp0rDf71dE1g0SQZ/pftzS5m5kOKLauCoQw4j2WKUCTHVvi\nQdtGQmR79QLOXNCIErwEh/FkO4f3Xfk3my+bobCgrds4qVzA0DKv7RVhKDp2\nNYXDq9XkpYlrHQ33NgjK9fr4h1UT2u5Ngguxb8H68bv+ZTl4aDZhLQ97G/TG\npQ/qFlseQh0KiPKkn3g/LFI0y+i3isFkFcRt6NFC0dP8/NQwV+zgsf9thiFR\nEc7aWs/rwpgNope5GEu+VJfG0rqBvWem+aE7SUtUIcUS1TZbWaA1N3GJAvxT\nZ7+heabmXLkerawpkFSbMO9fGHV019Icsbq0ktmcbhkXAwzNSXFRcpS08qwg\n9D4tsDrNXJRB+eliLTY6x2qVEXJ2Qm+R858x32ZjSWltNw9EJmto49uxoMB3\nej0vVxxw/g7arJULnINiZlH+LDUtHXOjJdaQ/BvmE5WuKiT6j2icxGK+rDDE\ndkXjiLguZVPxsvieAlq027FVRWVjtVwwpETHEFkNwzdy6Gn8JN5naCDHluW8\nq6Nt\r\n=DsUO\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.6_1568241104396_0.5581476033458099","host":"s3://npm-registry-packages"}},"2.3.7":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.7","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"cfb278c0ad6c46c133eb5ff64dead64e013ca7ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.7.tgz","fileCount":14,"integrity":"sha512-xShApdl7d0xPMDLvphL767sYQuqoVrBHSM+lVx4ILRkAmcrILAKTeWPGEWSR7PvkK6AbTK/grBXpYBb93TYPIg==","signatures":[{"sig":"MEUCIQDeARCGJ6mzSHKVnA+DX4ovr2sKrH2X5SgO4EO9trLilAIgYLo+aUlUIO75NHo27YyvyePFZ2dQ7XmTlfKfKoX7yaM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46216,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8nQCRA9TVsSAnZWagAAE8gQAJ2+HYJuDhLhq0sipWC6\nTNI5TZYIT75O92ot1MGTkFf+cuDnB9fZtyYPAMHUZQZZRRJIjXF0NUuWVdy3\nR1H9qdW8sOlVAHBqWC900ej0pdSP1QW6fjMqm8F16Hm/lD4aoJhVp+amVCQ9\nbkJ4WE1uQUAh6Vp6xnsllpCdGNV3wlKIVkOIqsUsokJycoQr0hSCvhsoafVz\nZp6jr+NUpsRZwEXk0nOB+IkHL3ciPgYa/uFDt2BgOCjxia8vnkNMUYt3ngXC\nMbSi307uekWZiCtSryVCjb82TFqwcuwt2OWGjp0ve6AarbrYZW4IGQ2UqqAj\nfOoihON5y/8wv8e+BoWRNXm3QtR4SJzRyjtgViHI9Te7QWx0H7P5w13P2yOG\n+Oqd8+7csyW43BnJEw72MZ+pTHUb9vT4rk9aJ+4jDIbRfiEDXiBs9CN1LMGD\nTVdMSur6KnqC2ENprXs7KoEf7otClrB+Dgi+V7PznDOery3Z4NEe0wrHcnVT\nc1IvCYRJi3F/0SwmhJEEVP6Vi8ec/oOU6/17zyQyQ0v1ftsK4Bl2FAo0Y75Z\nw0FwE2yn8Hecpr306mkO5on36SY60d6hnuvjcS+UcR6aJKHxR5KSxTWREUg9\nVWnt/E9s19Y4KXRsLc/6U14nRUTMtNlhubHASgztBCBpAtgjkRmPF4HTN+ZN\nUy6x\r\n=N1jv\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.7_1568917967517_0.06411687076732586","host":"s3://npm-registry-packages"}},"2.3.8":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.8","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"d373acabb69ddc1cbf3da7f3001b76dd78916219","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.8.tgz","fileCount":14,"integrity":"sha512-XC7G/00cB0VmwRSqgP+w/gZ6BYRfcEs6/O9QGvQAcyUYgmXtqOvoawWpeFe+czd+/GHITx6vkoIx5CNfHn3wuQ==","signatures":[{"sig":"MEYCIQCRYLKy+n02+bY6Yr3pb3rEpDQq5M8Rulz2VjMCYkpAlgIhAMsY1yuvfMZIsjxpxREC++emQkziZH0pkpG327DuEmbH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim8ICRA9TVsSAnZWagAA+yEQAJstTrLD2huKqbhe5f4f\npH1Y/eqKQz1tF3uSx/f9M989ZtnjJ6wo1YXQL750zlteMNdC4pDjhjMcAbOs\nev9ZWMYGbujlQgca4vC2AwAYVAFWPTtV3HK+/EO7MwLwPhXzkKATNdgCMJ78\nhG6dhX/2SoTmNIeDlNq0FyHSj29YIqtQ9HHkvpWHVKp13yYHVJG8eiD65U0t\ns4aji8X6yidw44XoOgiglMQfbsna+xrbccmBho8WYP4CVFqa7OWH3v25AnXP\ne3J1V+A1O9oDnSMaNZdu+eWQCKMpLm+ZvfmOOu2hdzwXC1acu06zjQN/oo7s\n0TrFme6C5hxlFuzuoy6hj/WL6hpJ2Mk1Z3asTyhpbogZ/i4rUk8BwgSIY6CZ\n+lNJ/5KGp0tl57BCmFdw+YX/u/WV5+SYp0WdM2JwuVCZfrwP09yaxr08Dxik\nxNvLqXdmLRt57M6pZpd7Zy+qtBG003ZFQH/RhTx7zI6XsCu4mktolzEiYS2Y\nM6XkYi8HRaRpUWWO/UDkVCRbPZOAvZ6/uSjKHyaNy0pNHWOREDG9qXC3Dljh\nJ4zPiLaxMD2IV154pvotWZxy90LibTAxYHHgWPghw3ruGa5+36oO6ff/UMWR\nAQiBb5zXHvBjebHvZWYESFjguom3LNEVLm4bcHAoL7Oqz5VIHlxcVZPON5Hi\n8dsF\r\n=Socf\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.8_1569353479824_0.9608932764118954","host":"s3://npm-registry-packages"}},"2.3.9":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.9","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"bff706b1f5e58b1b8661504d99e11afb868c33d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.9.tgz","fileCount":14,"integrity":"sha512-41LH8hIIrqf0KNSH3Y4gF5yLmqavvb0Ny0UCLGx1fgy2WL+meFZ8eS/sIqt7Kvr1IhkHk+h7RK00FBe/ecirnQ==","signatures":[{"sig":"MEUCIQCMM2G/vU7ccnTtbZlfe+hla98EHHjR1Vr41HQ32WI7MgIgNCXPItwi8Eiye8F3iNsgYX8gxmw0kX4MhFUN0DmB4QE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSt8CRA9TVsSAnZWagAA+DUQAJFQrF9ipfeFV9LpA1U6\nFVor3o1UKSPey96UeCt6EV1rXH5iunIudIWeOTbpJklkTfVVH4p0sYGVt58B\nSMVm2skny8ww03PRJF+8Uxb3QPjByBYmu/FnNws+jjDA03I6awEnkYjyUNpK\nieRN5582AjfrO/VVpnFJM/dF88PydSlU0Z+kNEjnbXwEgIKZeSWONff3/NnC\n1rDCG4db17OUAOlASVux13/XmBnqk17sXAHP2Wq1d4AeUDBr5/ef9mMnUa4M\nI75ITzrzbVb1v5B47F8ON9Ynvn5xjIOTEqOoHUpBMEC8OD10D/ABlnTuxrjm\nhn6T3PzfM9jujisI+q1hresr9PlU6lP06UsXCYmdJ4a69XephCCPe9cg/3FV\nzmsduLzHaq9g5qNxY4jcK3CiY2m1XlRDtF9EAMLh6EcqX5eltZSDVxpeiLCe\n/ARVak1c1H/tgI8Gg1XcQydwYXiKNSU5/u+ES4Xp8dYMcxRPuV954MRx/CPd\nhokGi4i06DKZZO2+wuSmR5FmRyIyGwrbHNDV3eBF+o9201K3ImN0+L94D+oW\n1i8UZnf2PeKDDNr7gJ5xNFswEs333lmMfJI4VsMl48Zp66qxwJfTpoIShgaS\n40w2D8LgMv8rI/aZ4m0afmHn5NN/teZgBYcQfJ5HTjfVpa5z0Rk4owZ/A02w\nNRUa\r\n=+B0M\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.9_1569532796326_0.0317875225112354","host":"s3://npm-registry-packages"}},"2.3.10":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.10","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"01286a4598b04877d768723b6e858392d511c475","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.10.tgz","fileCount":14,"integrity":"sha512-qGABMkJgCVj9OBCloJ9Ee70Awz9WF37jDYB1jvLcZTWhKxhmYLh6/ittQVvbIMpKzXynzhqEvwivGlyCYs85qg==","signatures":[{"sig":"MEQCIBD7r+yHCnyr007UWN/Oo0H2JT+8MNRWomQN5m40Hs8IAiB9or0Xvn4NyGKi51euUZY54ueUS4ZmshZJw+6GmC4pBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3NJCRA9TVsSAnZWagAAbcEP+gIpkK5OoFjOyBBY3YI9\nTnpmlOpaXCYq9wIIkDshXimvbzmbXlDd7XINz/Cthxr8WSEWkc1uMGz4v0nk\npSZ5r/ZbU8b4UMicjl+2nROY0HbCsAPkHgFkcydx3Fh+iKxtM1sJn0Y71HSj\n+HzBYIiwb11OyUBMGLwli679BVMPbSwUdhmvpCMpMNt494x5uHLMWU8O4uoA\nHwUTj5XgtMMYT1cAdBISGmHcQ1w7iQeNurvT6pPGr21/KvUZv11x9GqHYyej\nGgjIcc9fZuhnPaAFHYEor5Q3HBtMBmMFPDec3gYuXuw2tBGX5kFffIotnFZ9\nHyO95p/9Wv3ojxXJGRQPjNR3rP+Bxga9m1VUmbKx5153aMiwXIMca4HCbVQ6\nZ8xf/U+6yGNZoGS1VYReiauY9ECD3hq/qcVdHj88dCPmgen4DF7P1iQfS+R5\nG62iZLVot4q1G53zHTxMfVZjB2L3oEaGVweJ15BtKx1aPvbqC2ELGmSTYzc4\nylhZnB1p9lLJK6dQ+m79l2ewHBFiOj+UWveF1cHG6rYOuNHfST7ZZFUaC9VO\nIo4sR6W2n/Fl0CO8k+VHQel4n560mxqZ8UmW0PveWn1BIP6eRuIfeo8T3s5J\ncEkSe/Ar8wclxHuQPERapIs0ovI/3ehiYv7GlW5E/U3sf0zZG+GmiiGM2Za/\nW2Jn\r\n=eG+S\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.10_1571255112909_0.462663117365649","host":"s3://npm-registry-packages"}},"2.3.11":{"name":"@hint/hint-no-disallowed-headers","version":"2.3.11","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"8a17b089a493c7b8177b53af05fb3a42eee081af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.11.tgz","fileCount":14,"integrity":"sha512-1Hbhbk8WiH68XbS0dUsbv+OBFmOHJ5UjonaEYnQSIhDsHRWqACKOARz/CNOvMShHxMOj+DHCI/9juME9xG/RIQ==","signatures":[{"sig":"MEUCIBnLTWIn7zvlhKfXYjvaPD7zeAVtCqPtPPATVo4hEIxXAiEA4eHf+l4jiuZOMKBGupiw5fyCud8RuCX9n4Bc4Ce4VTI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47574,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL10CRA9TVsSAnZWagAA1yIP/j3LDbT0eTuknvKnjdWI\nrpXaPv6bIae01oMKorUnGXSONIrnbdKdG/4RLbcMLC/WsGE5j26i0MSa6vaS\nV77Oq47PcXTCRekF1C8AnjYwCokCmU6Xuk8C9wW+3ynEcqpehnfMvqfj6ywm\nM325o8SMI6YFFVYA+XpV1QjwxmWqrva5F4IgJKqR9FZJFrEDjH0gVpW/unJt\n+0psOYLy1Px4vbrixMuxpLGUAI+aMxVnsqq8Wby7FEIwZDfssTGMGaP/vRkb\nSyDciHkulbUg70giVnV6qqMTq7OlnMXdzH54Blu7rzMjSVNyPctzHDMJWgy6\nAMtgqcbBPxjrr3sxqOXmQ54Y0NlOjhJiUl3pROcSMAUmJ4tFmbcrND0yF5h3\nrMlErj7uFVekkUOAO6TKpo7SLJvVDPwMJB8G4aZd7h6rRxfQVb31oVt84rxs\n9PxlHC51piloHwgn6ZV1Z8puP5RFPXA6fs7Gihau2IlMAxG68XDPCeZRqgrL\n7nojf3csqYZz+qm9XdC8317WlR9MoGqXo1Ab1wQoC91sWOE9kLyGIbMF8RD+\np0KOnGooN7z71fZgOETHZmACrrBg/aER48alZ2Rfx38XBsa1BTRLvF0oDaH5\noTqau7uGsA99gL2B/UpA3VeQYfhlDdsRL5bvwyp6Nx0COn+OV9rmuD4uQprC\nUDhS\r\n=ktpc\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.3.11_1572388212367_0.8446393439888975","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"@hint/hint-no-disallowed-headers","version":"2.4.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"26fdebc502e7252ad18e6483a8cb94e0497c788e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.4.0.tgz","fileCount":14,"integrity":"sha512-HF0igvixBhcKVu8TPvYPxOAX2qYvK1ttfzWQlPFayr3ckVv3j1zV825JajdJ+fs1Yj1kAmya+odWwOWqjJkHyg==","signatures":[{"sig":"MEUCIHIKk3EEy1OvxsUk0bARlcCiZlvfp7OuvCY3AjKzgL9EAiEAsDxmmu+ophnS8x37MPyg3qNq5PX1zlETBBj+vAYOHW4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bQqCRA9TVsSAnZWagAAe1cQAI5TViJ10E+YzOyavSgk\nanjWvir1MuUjIhYGKaW9HLqUJHKs9ja3nvt6RMN4zxRWJViYIn7/2ak0dBvi\n+P2hUgzxAOHQ4sjOmdgu2qkO/Z5agqA/OWcmiJRM0Izuqe+Hzrt56/Fngzuc\nthNoA/5P1zDnsaaf00XObAWbhy80GX4fIYV5sDreLU2p/G44laArxkOAmPZl\nArtq7oNPa8uZFNXGGTUo9B+jATvvT5OA70sNLNTezRxuyug1jkMUliWaqnfR\nuTOdbQRCjagSa3BdjvQmQlzdn18ebkwIif+ujTAB92rvv4Y+5sElZuMSamDj\nCVCv7wtaibAPkYdyR7m82nOxC7l+IbPNT7pEwp2aOBL2Wn0OE/OaFuEs7AVt\nFKJcM1Jpk7WGhDBk1/IBCNWSJQZg6WQ+JgBNhPRK+ORywk+83YGl4zcXgU9S\nd3Ulq7YL1efc2rrG+f14SmIS4FV2Rbyv+yNA8ZY/75/HX9erga8Zp/5WwOwF\ndUfc0nZVp3sO+GC3WX0SeHJ1RzFlEJ6JWMDLI2RBPLr36MK3VZBe9iOJkp9c\nIxw0Ly8ECefq0NW0/JsrHew0OvIP6iLMbPWzSIxsUIJ4IvYjiJlc0S9leixh\n8HdwKdHPkmr3l+OBhmV+H5A9ZYSN42UtiXz525QQsajAEAON6nKo1sWqLHo6\nCwqs\r\n=s1sX\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.4.0_1575334953588_0.5844599311057224","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"@hint/hint-no-disallowed-headers","version":"2.4.1","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"bf4a334f40303f8bb56948fb70b4529dfe7f6b35","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.4.1.tgz","fileCount":14,"integrity":"sha512-26BXHbimPT0Sn+3ArrT7OlDgXaS8WY22GiXWlsIvsGuhnmgFLP6laCuHuPV7+KQT0hLNS35QmxT7csbCf6F7nw==","signatures":[{"sig":"MEUCIQDCLSadNsBsoqXtyu/YIXuiqzovvmAKnZRL7nETwiZGsQIgVZ9H3QkE+IKpIB3NMayYc9KT02uqjkYnZJRABc1hX3Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E9ECRA9TVsSAnZWagAA7R4P/1ZA8QM316XY3uMirVou\njZAqTbG5gBbjw1fyWtEaNw7z/ROd9kLGtQ2XWdmI6AEqBHgl/QXQBRF7KcWw\n34Z0CYlXE5NeLEHaQc2aNWnU8lkWj5FUZKvYhyzTNzVVB2vgUjfu3VGxlZeO\nGbtjBrgu/eTSAnOrpvm64PfV2YF77+CCXrXeDwfZo0q4dHDNv6reCFUD+YKL\nHkfBTMz7CdeoOEUCMJqyHJo9ZPac+cVQ66ULjnu0sXbu2fpZJA8GD8CLgghV\ng57jsqOBC+lDzGntMwP98AF82t1theFlzUZIYj527IS5gT8tRaiB8w2Bi65L\nYRBEQ/e2v5TDZLX+3tOKJWPrlm/LpmcG3OZbTyVFchk8obsj5lbO8rV5EQP9\nPSRKAwV7+6ebjw8z5MRmZ/My1vnwC+TbBQWa5i53VY4PJJwh805JKcqK3xFy\nnsnofNqWs+AnjfmGd3urd1H3NUivPsHUSSn1lSNzj/x1WmI2YMgDEOAhTNSJ\n3I/GW9J/wDJnCHNs339jc/nF83KEbBmM4I18O4I01cXW8hT0a2Gj5OWwgh4p\nJ4uFPdwHgLOcY9FKA4lRAVI2X5HkqWCArpgIlWqHeosg15QuR3qDmt79z5TF\nBNc7WpDLPp3RsJzvZYsudY90uAK7itcQ+aDCjdy61O2ksstc3IW/Z2JY8cWg\nDmoI\r\n=vxX9\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-disallowed-headers"},"_npmVersion":"6.9.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.4.1_1575505731759_0.2625016725133982","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"@hint/hint-no-disallowed-headers","version":"2.4.2","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"c72c3ee75d853b39608237e1e7c4dea349670bb8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.4.2.tgz","fileCount":14,"integrity":"sha512-E5W+X7pIUwSkUx+52Crm0fO+oEgbbM/a5C93ftv9jSIUJImBPGBm+bjWUtRmphozWgMXL+mJ+Q7HcOa5dHaSyg==","signatures":[{"sig":"MEQCIGfN+PidY8gQvQsZxBjy07t7qmwSblaoT21VYtZSaAYrAiAeB0mQ5DTUGX/XpftuS25hZp5j9ND5fDzvr4cpe3zjgw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52545,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpkMCRA9TVsSAnZWagAAbEMP+weR2zzdmgWxHhSyg2u6\nyG14bfsB9rieoO9+tUlJFeroGqu/C93FUlYUe2uqD+9rn7NKOTo/xEyfgqP3\nJ5OIr8AGl/wBgpNM4QkbfBQeeeGmQtQUywiJ3M3WE674KS8HOTJol97AmDEF\nRqV4dMfIr0ePBad5YPyG6igRd+b5tBeaLVty/fT8M9CohXZX66UE/02ETWk9\nNVMBDCKUj9i1rnpKn73idbOUbDLUnraXLa+dvIQujPD+V+MS3Lk0eewXDKNW\nMt4gjLsjx4Jal9tmz5XryuY343G9TTxR2wfw9l5XhoQV9duYuEd4t88VapOM\nEaK4DJLEHYjgylyz+4kON9AP1Ip/YZYgbGnukJcJ0fPOCi832lud+HVjI1ju\nvC8thHEwHO3c8VOu3J9rAI8kHwDJ/tPxpzyFh3vaT8i87eytCBvOadgS/xUN\nOZxdtd4LzFFFD3R/rTgjoMrZ/xhxoXibufwFHFnx1Otlp5wbPYwTBZ11Vjny\nnGAO0U2c4rDBHbQ5FFomTzFOX+JInz5ig4zqpUchYS3978WlD0uhfj0VA5Sh\nl78R/OgcAuCDyK4eLVc95AdhxgpuNGHdjdvx/BvS1a9/6zRkkdIn7Vn+XZUW\niWAo4L7HtUdCo9i5KpHH5T+36jRjIEWuPfGceBjVizgkAucaVYwSTL40MIPn\nsj/0\r\n=RcYV\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-disallowed-headers"},"_npmVersion":"6.13.4","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.4.2_1584568588367_0.8751352304114348","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"@hint/hint-no-disallowed-headers","version":"2.4.3","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"febf806786a8ba8adacef3032eb94c78e90ff3c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.4.3.tgz","fileCount":14,"integrity":"sha512-q4CrQA7+Z6HvDsBR+2F/2LkkIIw1XFsST7J3ARLSB4qYYo6FwVASd5RuwjgTD2YY7WypHgJrEBSOmB4xIyPOcA==","signatures":[{"sig":"MEUCIDggFEVsYBuRxEidB4pRDGPvt3iRtgQlmRO8gKDYwyAaAiEAlSek/X9Ru5gseH8ah8pWYPFExR3BWibz2bIMVstwk34=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel15CCRA9TVsSAnZWagAATTwQAIFy40luGvMI9JvMKFbC\nqxBzooov/w/BDZVWVF9hhTZjryDIBPIMs+WiYDTpEhpjnwzIwcEZ1lQVBaOK\nQmclEdAJH/LW69xEy0VXNMn6li8mUa/fRMmKmd75XHgV8Ziz4fuIOKx8k5/E\nf7OyZmnU6BMWaJ9aIjiI0AVSCfw1qJKGKoGJiAG49kIRMtQHWXYfXDs3LBdD\nlfGQBITSuX0LRGL0aO/2KpS5DS2RB/mCKl9B9vBFFQ10KdRbcbarI0IPALpn\nOK3D6rtW5vOUwSkM8qpj+/puw6uHuPe1PS2gcpYcb0A/opESMhUu0YxZuCpN\n35G5gnAwwHVtH+ZkU/Ivxnu5ZWdvDVqfda2n2+iMGbdD47F5kpOx4DUtuzCz\nSn2oOdcjxSBnUk69GIeXIDxRxCihEQGASWo68z5S6uuSWuyDlOuepTQ6UylY\nELpc7uvA2Q2joS1qdAXHucL096MRoQKJGkpXbOeRssD7eH4A9eWFpX3AX+Zn\n+Wz6k76zGLGDuJ2JXiyQ/bvAr8QHPi3r+Vo6tPYAY8IGaa35bDvOnpnctn1C\n7HF1LI3zn9r/p0/9ZNk6vDvXmp+DhHHMAQLfaJxD2YjMGC2lo33iuOJpo2Rv\n/8++7XDxN7c+80InmsLKoUXP0D1qU4NquUO4kdULa7mY7700As1wl9ZVpY9G\n5ufa\r\n=A8F5\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-disallowed-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_2.4.3_1586978370033_0.6130785028167636","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-no-disallowed-headers","version":"3.0.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-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":"3278dcc349fc8578664a0353c4d1969e63ffc1c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.0.0.tgz","fileCount":14,"integrity":"sha512-OJ2uDpxy+YLedLMXZ6g9D/Zg8ZITLViscxeox37S8DP4MTS1o0f65Bxo8/4b8Ds9tTBAAI9j/jdG6kBJGv4Ubg==","signatures":[{"sig":"MEUCIQCeCJ6Hsys6PuZ0oIeCUD7+CTk+/RZr/UIYHskPvQ6pzAIgDDmTB6tteSiBLeMWBn3QZEsYXJcHiVDuWaAbkLgNov8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwlHCRA9TVsSAnZWagAAuuMQAJ7ywAyZCV8IZ8YTTDVO\ngjjycK8ko7+wuJl2NeW9XEx0FiJv8jIiIZ7rMYjnyxvnpHhsiz3cEaS0x310\naBpoZprwuJLTXIzknWQcVsaSLajn9CCJ1nai7dYDShfx4FlpogIPx/5f3ZGo\nku52w5d5kBiPtbsBkHWh8Exjvygp3zTQIJPjjDckxvBNNN3RjlGzHiwmAwoG\nxzEi1DEVkDvG3oLpAXZ8u80dO4L/s4aCOZY9b323vO3yT420WY53/QOMToLT\nXsXqD2TMUJOR8h8qZjErlb0QcBAxPDls8Uo3O5Bo5gHu77dV0VFVFVFgBpzK\nc5dktzAkoUFmrH/CJUonTPVFb+i6WUPZWeUA9slt7ugGqFfi5Q5VhZTG1MMt\nCouMWWMYzh+2LyiBgbuk7oHlyIs1uHvTcwzMu94oBdxoV4mcizrWE37NydIB\nb2ZKIFpZFVTwuWscTWF1zmC48Rni1QtdvxRaYm/gOoxcGDE866qoYVWUkz+1\n97h6wA47zf4ysKOCgOnpA7YlV+MGudaJSMU7bY70iQnxGllNHqLxzNQIpeez\nUOmZu8qDcArK2eCoWUHr3pS5yUrlA5NQj1WRYOheqO5PnyiLGmBcgYhQZtWp\nudSAeVXwgmh9B5C99D10IMKJt/sbgvtqHvMzmdpUWZn2fDFcQO8PElg65uZz\nmPTd\r\n=k5Go\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-disallowed-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.0.0_1589840198719_0.7105947406172044","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.0","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"7013d6ca1618812868a37ec4047afc41cb8cf530","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.0.tgz","fileCount":14,"integrity":"sha512-sq4iKf+cTJM0dRlDE2YYz6Q1GjGo+Op5OOgo0BL1okrH0RATKT8F2gZcBCN3ilS0RDIo6XnuT2QgIxStmlo1Eg==","signatures":[{"sig":"MEUCIFepfyYGnuwSUvo2+kWMGVRMroP9quh7fGCl3CQHMFROAiEA2s/A3FaQxlgNvndZ1w1tjqYpodWd/VZvNJoVTMtOXPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzsrCRA9TVsSAnZWagAA3n8P/RI+ughpYqThwPZCvCIG\nk25jSLDou6mCNJrmVN6FChKTl6kHozM8S78SGgPNdHohxGpSV3CU/rXVfJqk\nMSnXz7/imfXbN1rc9aooi3u+whWJ0ms81zOYE8T/Ue3qLDyqmMAMec9sQX6a\n6SvhnG2AEpxTEwAgeI/WsA4MZPa7KZbdphIW4a91NdlWdzckvyrn/DjnGnl9\nw7KcICsqlg59NFg4R7DDgcIerl8nxBptqnVWhDXHJO/cn1UPg/qccc+eXFj0\nB7MaqRh5TcYy6ZW4v4x+v7WmHJ04YLeiI9JR0hYvbPxplsqq7JMAL41Jd9eO\nCD+wihN2FpJyE6/Jx1zLojGMT/PYunYHPjeEjAsV9EIyViygZRUraTnLGNA2\nIhF1cnG5/vDDUHwDxg1aYHhix+xEGXWID/KomEfU2PJVQqx3kb1NNKfW40bT\nghXUhjzCupkOhZ2Aljb3aFOHSAO2+S2s/xs925vsFMUwS0MNoHNlSDobNmF+\n6izygvcFdUyjL+r7oRdDUsduydm7pOAymPGi7i6Uf5I8K/eTGyj4Z+WOZhk1\nZb5H4oTf0rHzSkMxvILE1HlOY2SOu33RzoZ3pRUCpubox0z6QfiWDbXJNqvc\n0uNjp46NaH8HLN5ka/lPrJT3qzp7g0g5nnLdFPjYc3rGq3tC5KCYK79yDy/I\n21Lj\r\n=RptJ\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-disallowed-headers"},"_npmVersion":"6.14.4","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.0_1595882283582_0.6425230123163017","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.1","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"f703446432d8dc71f63932c07c74a61755cba6f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.1.tgz","fileCount":14,"integrity":"sha512-9efl76QTk+eLDCzyUuK/fqU3lPKDa3blqevufirPCgsFdl2yXT43nw73CZyCi08spolnVuX3KZcqAVclf/0q7w==","signatures":[{"sig":"MEQCIGRcVcphj0JC5lcr4bVRo/tTMQtsfe8gH5r4N3r5b0GeAiAtNc73lp+F86nyWXKiTAOZKL98HvEaZF083bhauqg15Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59098,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDeMCRA9TVsSAnZWagAAxhAP/R2QkZtMoepzosty19JD\nKGT57fa8nBVerM44c2WTLpMTbi2PUwoH29AlFQzeNmYaI0s2PToO5hB0UQF6\nekFPQd5Zkci+O3W5WAYkeP5FsOtmx/p7vBrrGnfV7XGTEEpwxEUFwtV0vs+K\nwjoReGHwlap2lxn9NREAfbmFK44FjaT5rXeKDgAfofsJ/NP5p/ERdIB6t+pf\n6zE+VoIVXb5+rjxfyN/zXqgZeChiLPq3OipxOtJRlxMv1we7wNSScjKQ9vf1\nt0OsM0de3ScQLitUTgCISricPsKEDojVYrqpyovuWKCesgGn3WnHtxUlhDrr\n7bVZTS0JaLEG96aa5BKHRO1jlxgjGXXrEpbk1IlAm/4lqs07UMg6a0yn/yDi\nAXKSXQ+OdEb7Gjt02HdJKGq0wNHRrM3TnUp91LoLejeZnPoscKinaXRXITwD\n8Imz89mLuwMinynBx6iacCeYOlh0DeCr8MVckEaCoAdBTGUDmjOh2wQ78+dg\n79+Hmug0VerZ/qOv9vwebDKCGilCjN6f0UcqQvrPexYCHrxGg1apH+fQmBJ0\nZangvZS/nlBzyMFs0Y7zFK2qQ+RlFhDNK5ybUso6k6PRzEVZh5Mq0lnmOS8R\nKs4lXozfTEQ3VsO/TkgIHJ6MnXHCYp5w1ayzqDReIt/oYiNScSUfxOZwlK4G\np7+I\r\n=lYsZ\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-disallowed-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.1_1598306188366_0.5980865133166631","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.2","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.2","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":"276a89f7afc2792b0b60668dfca02ad287c012e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.2.tgz","fileCount":14,"integrity":"sha512-W0R5chn3TtVkZmbP90mIQuxkBSo8ukDAKVvaNqf8pcbaw64Nhiv53S+9TTlvtOWYZ8rFsTn8u92qwza4OuzptA==","signatures":[{"sig":"MEUCIQCc3rKc6YdV9xX5sgjn1u0PYoA7v1Nabm4gxF+Rr4HRdQIgW2rcKbNVz5X3DQ8LEAQxXVy01EIhiRWTsO5uL+wLxk4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEzJCRA9TVsSAnZWagAArSMQAJfYVJvgM+NuEUwKh0/q\n1GoM7nbPHsUXjO7xwTdrGQtpxQU5IGFEA/IGMlRqNyi9fd/6DoOJxgO+77/q\nkicOGXEwdgL5Hvt74cD4S0IPbAeDkVC9CiFVqVgUC9AE0998aNSKhiQwIOsu\nrEp05qxKwSmSU1bXEHpjNNd0xNoeqEjrHEcSjSH6qNWXYn2mVlhE/48mH+6M\nwrRjzwvzYgCrZXAIZm+XmJjTpmJhZVf9BlLVo7F+sXkJmmg8KXztd1ak29VV\ng/jEVIn4zkN0MRR1CSM4e15c3I+6FZ6VT5YPZ4FGzwXHDqixEN4iBMnVB+FX\njNc/htmAunYMwaZ4fapSNbyXU/SKIlHzO4igMSvuSVncSgllHwbGND7ePnzm\n2vWhMWc0k3E1wyqgql3ZD6MsPxI35r2HJrYORVI7hKUZTJ99PjNyXa40npy5\nSIMYIgf8emkQ2IxLuQGLg2pTXdfe3vX9S8xHiG/JJJHrQzdZXKWBDYhjIcog\nsRKomJ4FAFje5MT1jy0pSvLozeKOFh33R52JzZzP47n8AR0ge1l08nXSJD0Y\nDLlYlk1M0Lkp+Y438iupyakHBwoJ7b9yFdNhbICmefSbtv7MhIIh2vzUOBJ1\n7dllGphrfMOmZtBE4nQTFiRF0XRYk77b3/Kg/6gtw7mIbL4GMj//oVgx4PXT\npFA2\r\n=hJP+\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-disallowed-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.2_1605127368985_0.1356343415440877","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.3","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.3","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d1d28ad560ba587caa5bda080ab4aabb3a726760","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.3.tgz","fileCount":14,"integrity":"sha512-ZHJ69SbTgkbMabqX1+RpYzYpKEUslND7CFFqCtNflbtqhocuVJnsTc5qzkV558g/5F+Xbve+zsWtAHD+/0JfiA==","signatures":[{"sig":"MEQCIDXBb8emeeDcJFKfFLeCAa7133pV1u3uYBOzzkrfAoWvAiBoL8o6JdiT0g0RyJ0tEMRM/2LXmcErOWRmpWHVG9xMww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEtwCRA9TVsSAnZWagAAyRcP/RF5LcQbavnaoB2TEOR/\neoGYWTUzGGXZkYC8Mt4ggElprNuXqiOZl5tAnmyTanaQTwOk0re1aMnrHdUd\nmSjmwZHadocYiap8Mh2OjbFEvl9TfvNEmF1ndwEL1f7FUS0EjqfBieU3UAhh\nath31EPdva84of1npnr/X2JeslopluRemXfhrdJYRz8A+wnsgrqqkGuP/zAx\nyDmrk0ruUcWsGn6l4VF1wH+7puryGQbrTwTR0fGg2kttcmS2ttLFjXQsTvqb\nVPGYv1dgH2wWY6gCw3RkTMeq20XTVZzOju0LOEPfdkJ22GajWjjrY13eOVdI\nb+LDdIzfAzGCMtUaFGbvCrd4LA7jkBQ9o+Ht4UHonerbF3OvgDCAR6t6CZ2G\nInkqaII7BpVvewtrX/7bCfdNa4NdluEEgCAykbubkETuZCzoiZEnQJU56Cqs\nfVzjTdHXKobpP5RMKJtCLC8xIyMTuBISjYKzF61/JfYErv8RiAepfT/skgJs\n+8nfTzGB6eufS4ek+W2cYaGvnqoKTtsdG76l6Whlr1XiGKPmYjbWXrf/L3EY\nqfN9Uin20djywGk4zk0dOeDFBjBpgTIXHahp78+iROVXsy+LMqkqP81ykGV4\nMae4JSyikWOJgdfBErbV8PR00YgT3rRNhL7EMFqbDm5qApoiUoM9cYNzccue\nYbxS\r\n=42aQ\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-disallowed-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.3_1612467056360_0.19117442105078264","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.4","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"8774345b7cb16d21657bb2f1b6bc79ff7ce2c937","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.4.tgz","fileCount":14,"integrity":"sha512-pVuH5aZr0FWYJSHddUk+nMvrGSMy8bvcdmd1wINc/zovxMS13+y6IL6kyYaNY3iYIPc+BYj89Xeogm0CycXi9Q==","signatures":[{"sig":"MEUCIQCunwOXXPlsZvxBoW01S1XFjavdkogiwSwt+xZADCtb0gIgd0xS2VPZdJWpXx8MXogV2Otux+Xb20e4rA62cL+T7N0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeYNCRA9TVsSAnZWagAAbtYP/RmNgIQX0scQA+adXPux\n/U1fAEkO+GOhmkZh7+J8nfQ17ysOD9OgKm53vwPy2lF8Vq5vEagWywO9Vk/6\n81Z5YqZ8493kg1PeRhRoCO+NYjegFKDZyTyB8f+1DaGtIdm1ENnTBfrP4/2f\ntaVJ4y26c4cAkxaNo1ZBEtIO8WzqlEPwDVXUnlFjz6dH9TyvekTTGTFn5QRO\nZ+Thr4tq74CACjD6Uo7jkmWQ8Qbrmhzhr61KZ31fz4JI/7YQujDdb6xtoksp\nbpWZ1uKHUfj+LJMp4ATAtjWWKGDjk75iWlhM8x5NtffqC9q4GctSIN/vQd1+\n2C+RbhEX7MCmjdO/RKH2WZMBBwpsuGzhEZBNCfqLCWtD4RmIFoajVcHRRODe\nNNXZyuFmzl5PBmEcpQ5WOwhFoiH9uQcBDgpkeKXz1Vz0IFlZBaEetEuAmGMv\nihMmpas700ygsKMETXPnUVEpNP7ooy1kaf2jCpeWI1TOHujVLPUsvFIoe2Ct\nwboYNIYJ+TIfjbGFfEe28Q68c1Ke1J3GaTVSU2K7v7jZDD5+SDKS0DlIH2yU\n94hrdRjnwlN2VpAhZBPMRLls5n7ksfW1YGEO5g/cjjQDW7i4AeE42yWmNPB4\nAUQp5XaI/YSVG8IUsLlg4AAfdb50d+Yqxzf5/yLk+FNmFQL3Oyv61DiQCrIb\nm5J7\r\n=vDZu\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-disallowed-headers"},"_npmVersion":"6.14.6","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.4_1612572173400_0.817229372577982","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.5","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"5edd6e729dc75abbd2d189a513bb19d2acb685b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.5.tgz","fileCount":14,"integrity":"sha512-PjIt9EUODM1PJ9SEpM6hqCuUAGOi79UCDnrZRRLBIh1cmTBAuXtKqSJVe1ljhekNtg7mn4KqeX4o7Q9Gjb3hQg==","signatures":[{"sig":"MEQCIB9O/luA+gmqwgBeCjYHyxR8IcNi8IR9VDmftEyLpeoKAiByDI/g5aZ3ksS1nP4Pu70WTTN3+NhtqBiHkGTj4wJSCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRJYCRA9TVsSAnZWagAADWgP/0yfIpJw/YdQvWyeIzUN\noxSharBH9sl+dixpWXv7vcnPxGo4OHo0nn8tjSghW/wRD1FZmKMFiupDu/JV\n2Dj/mphwy4ZURbtPuUPdXWCCRF1/qzlMjI/rqSI+ZQMRkTBy8AFYonb3/eaP\n8IPn+vodNC30J5RBJ6exdp/ezz3VHX1U0PL84Kh96wOe68x9GjyKO7IsDZdI\nOb2OZyRvnuqa39Z4Drt7ssL1GgZONcnP9Ri6ddkwJpPbDiXQq34+6wI7U2FI\nfNhLpHS3TXyVCueHvvlrZiMd37tn7SZv6uVZpv9DajDrhdBO5YflPUsrySdV\nODZNVgyhuV5wFgt5uSIcm1l8zNrciW2VpOf3JG4bI2RtEA2dJ7qe9/lDVP0q\nUQ6FCUkFdd6KDhOOrt657I9BUgWsz4MZNrZSKRYS71XLazelTXEgjtSRGm0i\nUZuFp75BoomRNcxl6M2A7bNGbex16EoZGFi7TvZ655w9lDoV8NH0xiQyIRNB\nKIr9cpt/xPEA/Wqd/EthMUORRXvQZuATbBjmGr+LkCBOdeovVV5oGWUD3V7A\nlb2iMqz53joWjr1dEkD8Kem98Oltpkpt4YiLrukn88LTKMp58fmeojgkBoEW\nSLPM569Rftm+STyPmwY+VOrV+lCFJCUnMCIa1yzdGtQIQwbsTz7ojDwcriKq\nb+oX\r\n=LH3t\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-disallowed-headers"},"_npmVersion":"6.14.12","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.5_1623265879587_0.9070023652028838","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.6","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"d9b0e0e28ae5ea0cdbf54cb4210d3c4ab461f4b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.6.tgz","fileCount":14,"integrity":"sha512-ch1x7rPpM+xqGTsqX5DxgeqHY1K/W67LLoAv8E7wbFtdCAYg0JFTXfsAYw3Bj5ufXvuJAS00/3oppValwTvE8g==","signatures":[{"sig":"MEUCIQCzDYzkYp7G2xYbGeYk2N9aXxQGbSUaPjg9UdDlHqOy7QIgXHYXACAMoCIc0xHl0c/kwJLSvGwyjxpHWh6PQShdJC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72635},"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-disallowed-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.6_1634833200380_0.26151292182491614","host":"s3://npm-registry-packages"}},"3.1.7":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.7","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"0e372c3458af396535e6361beeec89797d6758b3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.7.tgz","fileCount":14,"integrity":"sha512-Qq4xOUaT1z+mNrnkyn5Pp75dzIoNO1y5MIq6WcBgioahjN0OssWIk2+t5PmzZK/fGvXHm2t8u5rpmzA1YFiaQA==","signatures":[{"sig":"MEYCIQDUdbKKRbOT04fSKPD9EsiqqOnOfVvMP9FWZEdqajx9oAIhANqvECDOxAuVSfDfiNhjZZ6MUGElgXplzRL2FGga4SZR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72635},"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-disallowed-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.7_1635537417300_0.033849165665976066","host":"s3://npm-registry-packages"}},"3.1.8":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.8","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"219f6a97baabc61ac8a69fa1818abf77fdc3b696","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.8.tgz","fileCount":14,"integrity":"sha512-pMu2NhC3vOpGypgMz34vNqU/mMW5MYW2457UCe5bA3/DtdUiwRxC4dWYh04OUwtU0GypYvBlIyTH+QTzIa+I/A==","signatures":[{"sig":"MEUCIQCx1aLd6ohSZqm6DhQnbpmZkmweY2Uin3o+JfNxE4z/9gIgRoARZbm1zayDzOtNqVtTlpZqAgORl13GAi62lKstVvQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72901},"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-disallowed-headers"},"_npmVersion":"7.5.2","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.8_1636050591013_0.019074259289368012","host":"s3://npm-registry-packages"}},"3.1.9":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.9","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"7afb1e8c25a873ccda7ac4606910b1dd338f562c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.9.tgz","fileCount":14,"integrity":"sha512-7arMw62oq8sk70ct3zMrP8sQTlcqXXtl9dP4DKQIephMWLcnUI9J7W/4/Bt9Y2bDgIu/lfrFI//L4Rh/YgQAxQ==","signatures":[{"sig":"MEUCIAJgfhhadj00+qaH58oVJytWykAyrN1HFS1qy65FG/R+AiEA7i/10AX4doaFwrDXtE9z+qTTsf2ZdFgIB5POAoqd9mU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KSdCRA9TVsSAnZWagAA4FIQAJSrdoCAwUawVVut/9vU\ndp+g+2W4Dcf9gmTOUt+jhBtQ5MoE5xAygsKWxOYt7k1NWMQw48wEBfoHFHLL\no2MG/DGi8INjOSBbuYFK2o3ik+Hunpy1HKnYUpG4eMZXxq30QTQi8iS8e8Fv\nTWnhDUv3ePRVQ8RAwZiD6aTxKWIy4d+AaGrHq5NjwZgh3OMLNLIe9oVcxPx1\n9yt7RiP6HeAnaHa5rz9Tie3UoDxPjCdOd04Ke6xDygNiRshSlO0hlR4hRADi\nWVa7o+skqN0vWZRUXkAAkkNebVE2QMpA5lgJLuOG7TUtUQalTC6j2pBkJ9+x\ncv/2YJLNP5wijzx3XN8tKUEcFdpAUsElu4lKJ68aUMJhO0EEANO9k4YQRVzA\nqPTV720DNUV3g3slEHaI+nNc0oSux6Q/vHpAgeP5i7CZiP0+4F9Q1kSQGUZm\n2tMtfpL71bxCRBWthlVCWkOoTGYxhgYrTfFNQFC/xABMAu/uvrK+6+SGn83L\nF7Lg4/qiqh10uGuAxsJeLGHbZEfJx71yev0bXBGQZv+DP++x/+mZeQIqG7OB\nZvSzwE/KlhNfRgmg5fYESAx5lPV3CMI6cg8/b2Ss1SlpdUQbeqcCBR/gZ7Oa\ni9LQsV7O5dTc5/v5RkbW/02S5AWwd3cvsxJQ3V5w6RqBzkSIWcW2RsT3Q89D\nJHhv\r\n=XqgO\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-disallowed-headers"},"_npmVersion":"6.14.15","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.9_1637007002573_0.7317632404638148","host":"s3://npm-registry-packages"}},"3.1.10":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.10","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.10","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":"50f374a43003a9fc6b78dc285134d411aadc2c65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.10.tgz","fileCount":13,"integrity":"sha512-X0sUkLGkhoje8kq2H2Qx1pxBLmlbcrcfojRle772Jr8SxIML8RNY9fHi/XPIH5FSBB/GPkHkwrQ3lOObonLxfw==","signatures":[{"sig":"MEQCIBC4UPrkHj/FENWM7ag1Atq0sG/NgPy8asnmURHmRxZDAiA+L0pCmYXzcRfJD+fCDbBySlill/uIL12dIgxcdTW5yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkZIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpIfQ//U4VjbdQEbnYLpddJ+cQJ6NB5r40TNInHRaMxLUd67Sr3VCN1\r\nBYBLlXF0T0YP/zeYyp72zr4/d9iqcH74wGA7xlvx+VMmE5AT6gq0ByipK1tk\r\n1qc+jXTj7CGJWOslFr7zD+4vDHimwKOoGz2C/xBdNj3NZPQLBr+QfSzvz7tr\r\nU+i/XtJbEoeZyWZDdxDuMnwFyNys2bbIsxRzhJP6y5gW8iO2+Uh9BLZSanA1\r\nUhvhmhEYU/B7fOX+oGi0aB36qNOgPyT+jvu9uB9CkSzfLJ9Ja7pfPC+Anni3\r\n0Ab5Aj8ETVPXG50wbMl9XB1WCu7omZOQI1uG4dhcCi4dXYm2CbP4xPzXGXLZ\r\nWR/mhFrwUKOXnhtGbmYs9bEfNkFUjt415dD0OiRIew9J2w7VPcgPDdn4bjG/\r\nTpV3IJSLjKWO1pZp4euMdsVySsNEWoJm1qLQsuOScf6Ccx9E1QBtosAyZBzP\r\nlfG477CgoTp25uh892y7Si/luXKW76IkbRKmYLh6XoyeW+ozcwqTNxxykzxK\r\nqKDBlSKVhPNInVZW/BpBzOn78d4R77Tp0Vg9n0rP0MqMABdSMwwhSVlF8x+u\r\nScLRhwWsIbDkrDfPslwni1x/sngWPdaPqNR0hiMTAqs8y+7GWKt6lAo5kPVz\r\nvEncfVHRtirR6+fwKzZBZPn8stoBZ8PBnLQ=\r\n=S3z3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"259226d420ada93e86c1ee0e5876251967abcf04","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-no-disallowed-headers"},"_npmVersion":"8.3.1","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.10_1646937672135_0.2746658934345969","host":"s3://npm-registry-packages"}},"3.1.11":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.11","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.11","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"21cf0e76d555ff64707990ebcb5219df9b0db15e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.11.tgz","fileCount":13,"integrity":"sha512-6HRtbiao9tjMSTgJ6uM4vpxG/1i+J8te929g7CyVzKfzSBx6PlvhJGfSRw0Eo3PY700A/Z0/ffhACpNadBDkGw==","signatures":[{"sig":"MEUCIHAZJyBFAHMY8ApnJSi57efu4iJlC3tEYYXm/I1AShJgAiEAmwQ3ZTBPXixPZHwmkuRDAhK/TKZ995uzkUmdRm7v5Hk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG4HACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo89A//Vd0+LAUoPxHeQdVukgTDFufxszYq2OTMOYUk6T+2OQ4ghF0i\r\n2eaQS5UhrzRy1C++2dgaQN430eBM5B1pR5RKnkRdRxLLwFDEL1akELTX0cWm\r\ngJF6iiLoC7oV6ZilbG7S1fANMwPLcPfOxJU1X3QJ1VrjYFxIdsAVn+e+5GM1\r\nzbfULvxyeZpFwMC2tW+6/toT5TSeHr2bEtKWw6xv7Lp/sJbArtfe4m/YrwKt\r\nXFwVZFMgy8GGKqn6BgQs5+WuvO+x/8OfjR45hgNavSrGnLpvx+fooVnVmezy\r\nQ7J4vquxIjk40tDzzzyiWZjIx8hxJ0OkauJNuigfUzK9lPRcqrzbE4pw30JY\r\n6R3RbdlYZrCt6Rua8zU9CsvBbSClkKSFmmw8kyWVaqF+gobtzaQe/Fwoe77c\r\nnukyVNC0zRBirXG7S3Xa7EzHCnsTlR3qjFfuz0SYaQICjFm+5kXqer7dT//c\r\n6GNWwh5wBsUHfRP9gZmxD66AVsO/+l2SmCUu1VGpc5503jxZDSsagWj2cck5\r\nDqHQbVvaCvudn7gRJmgbSeG5nkNIQp6zIBPEkXv/EBruQ0U3fNTY6dEdi2IZ\r\nQ4I9i+onFdP0yTSeD+A0o9FXh6cQdFMcjtw0e54T//bUlVKMYXV61b/xtybZ\r\nMQVaYQmGVD4X7Pi7USNpUxgph2lNeO8VwOI=\r\n=Bmxb\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-disallowed-headers"},"_npmVersion":"8.5.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.11_1651011078776_0.049585198562322796","host":"s3://npm-registry-packages"}},"3.1.12":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.12","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"9154de07c8eb74e3d6cdb4945a719d9b13851d6a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.12.tgz","fileCount":13,"integrity":"sha512-ReK4Zt9OZ2cbEffWndRGXCx7fobWH69tzQ9YLilujHAM2Oo9idofGE8840JOC1olzniYm2egrdOjhkU9mLqHzg==","signatures":[{"sig":"MEQCIGzl/tW/eAy2f/ZybBJrvZfWs8rbG/fHGC87760Dv/wyAiBBZbqGFCFY6ujeXm46UBkPb/H/O6+ff0vzZWEuNUvuIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdpZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrk+A//aVjW9n7I/agKX3UdnbKeaI/nGbP4mLA1ubrndYcqt89ABSJr\r\nf7QCOH63pYnrM3qgq7GTgCFaPgWTlSkRF6hb/hvzLJWcGAMaYsB7Rjtng+4q\r\nQQsKsbSmUEz0pKDGvQzfjJ+xj6mdIrGrs/vVEOTCClCRV0NMUzv+yGsDqczB\r\nwmeh0pPd9srNFyo81qcxRqx6dLJTlI6s+hX7RA2QUHcyB8rpUR6JHEXX2MeR\r\nCT18jf+SQ0Xk4gLOJUeFWYHY8/gJoolqskw8o6I+RX+x8J6wPTeMOLVvbcZA\r\ndrQ3HKPQWuZwZ1EcfWbwE1t5hHNnrLhNfpluuol+ixoYVtCBS3r5PuX+srWm\r\nkrkxSxIUUU52JpPznlTTX7ifYNwUHUUJaaZEujPUQrdqRx8tqYoYXuhwt5zA\r\n1qGT6Mnlb8Z571G2Nqbx5byZEl36JB/njO2cpQLYSOhgyFkDI0ONIFMjK9T7\r\nNSfDjBPNzW6+d8r5/rPgICtkovbrdl2tmI5V6ETIZjWNadLCi/yvLuO1KnXb\r\n0I654yZpu8RPIP8SH57r1DNSILkgS75pizBnZwgFa1si/3LpTUhsXy+sD+h+\r\nKOZHWZcWCKmRCwMX/BKS663O+beF6ffZZQAWelrs9RpZgH3dv0lh9ZDXQoDq\r\n7lK/rwmTcP72mxrC7WGVmPmSCzzAqYh46y8=\r\n=Jyfg\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-disallowed-headers"},"_npmVersion":"8.5.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.12_1651628633763_0.3795627758594906","host":"s3://npm-registry-packages"}},"3.1.13":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.13","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"ca8a2f1f1cfb78eebedb3055a0fae5e75b57a83f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.13.tgz","fileCount":14,"integrity":"sha512-dRXxjWugxCHghmQLOZ/EmytnPF5D6eknUammHTJisNM8+DTVTUKTjINcQCB4cCY1gFHZGs/YaELl75ZcvaCGJA==","signatures":[{"sig":"MEYCIQCs6FgHxuK5TE0ulyZxsB4lAI2QnwUQ4/zXCewVL9JGyQIhAIf5qQY4KAKUMtCVQiyekrQKqsLm8AS6108Uagfww7pP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn9dACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo0vg//a4ln5NMfFPDuuKLw2J+HtcIMN8ArWHrrkMaS+RLeCjpCWt6a\r\nYLVbHnq/xni5hgNDDos2tbLIqZAS5vUC0pVIDO0S+P1BU0ZikAH4kPftrfqH\r\n4K8MxZnuDDk6EQPAndssrNybqfrM6NlOR7UvgazrjkpcvePZb7dFSm0Guoxa\r\ntkuNNOjolkdWJG1LRk1pp4X4H4UXdptp1vjbnJyiYKKBChLYDQOwhXdbeC8a\r\n3hYdj4KeHu3Kg87C1Rsdtxv7B3T1s9OAHuK5/kbLcAgANxY6eq0/kVnyxwZN\r\nTQJgqAVdFoTRozGhkOekMs+4jlxGgRUew+WhLG2NHTilrn2xSVc8VO6lR5m0\r\nTM5kJlRARe3OOO1L8+WWCSFolN5qs5FKTs5ETxPKELYEb1hC/lukB3Yw1/Qv\r\nWFc6mSXbFcNHZf+GHWLJTyFQpziJgj7lq0x1bfXo7+nqY9KuDUd7QLhOWib5\r\nXBTsYTRJ1BbKgbzlOVMvvATV9FLTnT/eKTqIQOu2oLwvjZw8rCQbW/h9r4aP\r\nc5Yo/tNPxzvt++D8qKfr+O4xWSiNKlWyKpLoRth95P0JLPDWyvxFrfAJLhyG\r\nUiz17JnV+04kb5TNn5DAVylPyUBxJEwu2x6jhuooSryBcCY97V97FX1vW4vl\r\nYR+Dga2YRxZwppa2D0p2jj2TKBwy608fq5w=\r\n=x9qQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-no-disallowed-headers"},"_npmVersion":"6.14.17","description":"hint that that checks if disallowed response headers are sent","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.18"},"_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.18","@hint/utils-tests-helpers":"^6.4.0","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-no-disallowed-headers_3.1.13_1654554461712_0.5194238193858738","host":"s3://npm-registry-packages"}},"3.1.14":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.14","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.14","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"18942f0bafd90a19c4762a2304c76437925c3f31","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.14.tgz","fileCount":13,"integrity":"sha512-XxR9ByJye2km0xR2LRkSlzyuAfQCcM+Qkw3j1dpuEYRLPEbhuFfxYQeb1c/o9FUu/vtbsBN6V9PJOfBEeivxNg==","signatures":[{"sig":"MEYCIQD8osPbrXHCMncmlX7FoniPavAavd+NeURN6Tdysk9D3AIhAOgfx7uIlVogabwIt4SYkqSlDCMgK3iaqjfOsRDK1dXA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6CQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrE8A/+Mzm43bMjcgRONY6Ll16ugVrSVRg+xCoOwUNK0aesxkcKeEFr\r\n4X2U6ywzWOgEPk7bJslM+0b8xaURiYFbFfQvlPWDxlecXXCukJT835/aqI+K\r\naOCTu6xfqgAHNGuFkaWMZvDTnJMYwim4WkeoFgWVB3y9e7PZMx4BTRahG//G\r\nDWrLxHAKba89txQcHWNmLJP2cuWaOeHUwnLkRg/VYQJAyW3nvCpoYkul+zaW\r\nLJxwqVkNcygV+aUi+QiFmBwZsSxC/LatSozgqFg2vupBBmbFo+079YNlM0wd\r\njNgXrtXVHL8YKJuNMH9Ai1wHV9LL1BPHSHGvCURHNNWP471QU18wJoQYoynu\r\naQ4QGCyd5gR+dxlG7//x4t5FRoZUg3Ys6K05MkPFSLpncv11eIEElC50Luxd\r\nWglF4Sr4wXcvZR3pBNYeI0Zi2Ziew7QttsscIyQj1TrvN2KiXz9+y55zc9fV\r\nwrkfm3JRrMNC/FFdDJW3b/SrKqg3nUOsMClhY1KlyDqnyaV9FZAjD3ILCDYl\r\nIfvnRaIsAAYwidGRKxm3KGQrFNl7kSx0A5pNpgXP9KrrYzoEzAergoyRGAdf\r\nQsO85Ip/jcqMz2w+W6PIH4FqkP964XVFrEzeCmE5rrHzN2crjlw83Inyt8iV\r\ny/YYlYP3lHpsOQcbiTcvZtoUmszrUP0ZfPY=\r\n=9mQM\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-disallowed-headers"},"_npmVersion":"8.12.1","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.14_1655152784249_0.5248929974520113","host":"s3://npm-registry-packages"}},"3.1.15":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.15","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.15","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b38e8aac078bc0a93f67f62eac0733fb6479de85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.15.tgz","fileCount":13,"integrity":"sha512-h2Fo+8EVGJbKozwpXDFrhgRjRClpo2W2UcEXPG8LLDhDoAoGs9eyOj4vfzVZHRhQ/cxkKu4q8IDVUG660EGjnQ==","signatures":[{"sig":"MEYCIQDx36aHaUSFltD5ZzHwh0LrwAOMoEsSgrNug3dfAjwzuwIhAJsYgm8GRaR6rAshtLQoku+ag1woOSbEygoOxc1Pr9PN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFRTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonvA/+K9GEvxBO3sqQvViZ3g3gEyq0TXigTXeZirSucy3qzaxDIcs1\r\nC+1lMLBsn3sQD2brH96LEC2vKU2OQEW2Coi8VQLkvBczKyr/UzK37AH38Ez7\r\nOWkLhwnFrnWIUKsOOmd4BaH5M5VASMY9yZqeSVd+SMw1VOngZvJO1X7dAuXU\r\nc1k08q0T/yOqWny05JMbIwNztZXy/fGH5kcuKs4H1xXY3TGXukaoNw0Qg2/l\r\nkmFGILa46CdhMd1SBOUgpln8CMaFkGdWJyo0eM9uIfSVwRaRU6Gk4AIGwWaX\r\n8okC5gf/CQAxSVC4gCR5yeS1l8CK2v5ezXZZ0HyNvwvMLLWXrgMHE8pa2dhY\r\naz0u9fEoJuYwbA//ZPwvRr8K4bIJjk52E3WIjuS1pfZDRe5VYjNVkx9LZPTC\r\nsyAUb9ovsAyzthg1Il12qn9cOa9CS7+S1SjdHjI7Q3DTfuggfm3BDKRaXgzS\r\nMMYZma8ojg5Ey4a1vcYp7f9xAWMHV9oL62bSaArN7EOv9Hmi5P0iktvVz7Tz\r\nghUjhZ87X7tFA2TkmXEjRIEcAaCCjw0lJEJjszNe107Z37gOSPDQD9OU6JV0\r\n7l9EtwFc7EPDUfvF5dNIRvzK0+AiHFj/bqlowBFq9tuwPNDd+ctou4yd5NOz\r\nKxHQ2qmXM4hkh3JbtAJhrfW+Tt67XuFLaOk=\r\n=Fpjq\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-disallowed-headers"},"_npmVersion":"8.12.1","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.15_1657295954939_0.2201467004422928","host":"s3://npm-registry-packages"}},"3.1.16":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.16","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"330c1a3ae7db77ac8394f38376b7f0382798e83e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.16.tgz","fileCount":13,"integrity":"sha512-Udc/gli33WTj5Posz8rrArj8opf7PTRYiXyVY88I2QnuzDUQEFE4tBknzneEkJDFrCjWL4/yWkvZIg9BI1J0IQ==","signatures":[{"sig":"MEUCIQDGOh8uF3D4DwQLIFmqFVkOWFiRjsxCpMe+j0JR6A3qIQIgWNSH42fDPhfYch2PVpy1RFO5T/BesdO9dZhpmFseBQI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6uA//dcU5bvexHT57i+07UP0GmgaX545tzJxBJA9mX9Rhzj7Hw5TT\r\n7cH+Bx0Mmnf0S4OjoykjjXAkTDa9KL/uURM3rGiktblIagTPuWB1R0aDr77D\r\nbMG2IDRM2sE7AaBGN7jsLkfakyfOyvaVNfGFZLpkzfraAol1wSvZN4kRWZ9n\r\nlBtY4mw/0+O6h6ONS5IPkzee3drZZ5rbmsXX+1RVrypxEifX1K6ZX2W1oGfH\r\n/F0dN1zTtPMry6Tg2z5lPHItpwiPfc4NtS5hDFtCXXngULtlg2j0IS91APze\r\n/OaCYHs8bW0FcEgOP5W863A7tbNR7C903rdvfKlR/ECA6jGmjTeGmNe8pWnb\r\nSjMPpGl3Aw5RhtBuNhDLOPGMwe/ZHoYoLLSiKT7sYrIsPqW1f71VqYhS59cE\r\n0C8AwKhyqSE2kE2G9LjzmMpK/0A0em7qtBwSy6gzkar4XB3+ziAchAdW87cn\r\n6sFly3LSavjZsSPLnmpO/u32UTnFBAurwNCcIvLygTHP1ZZ1TOkn95r6sJcu\r\nUQCwWHPJIElIbZz3/rW7/nsHgySKjsGazD1U3MBh4/P57pUqlHaB1hSlXOIn\r\nrAUccQKv21iFhVyXNlrP3MlYVigyh+Ef+V9NVRTIDNXf24lh+hJd8/TVlGO2\r\nPZXr4G29BapyejuKjk7ZQ/EGfwoqT7miKNQ=\r\n=uCoG\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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.16_1658530789685_0.05126010304591788","host":"s3://npm-registry-packages"}},"3.1.17":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.17","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.17","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d58acea85bb4782d3ba72006b3bc72f729376191","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.17.tgz","fileCount":13,"integrity":"sha512-dcQYJJkJjFXyi6Lp1qNMsIqNb/sXLjNSiyBQD7+Pdb3Qve52Tm2P/Xj0Txu6UWEEZ3/2kkxgp324UZgk55EewQ==","signatures":[{"sig":"MEUCIEldlq+nIw3WvB5fVvkzUYBHffnkQ2uITei3c2eVCQoDAiEApwE0nf3xI1PEoZq1WWpVQnA1iM2hB7GDPN1k/usr0yM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3gcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoozBAAlsWS5rV1dZt52hwPT8i0NAQ7qA/On9EL1DwITMpEd7bG3hNh\r\ndIqfk76MFCoRih8pn7XYckzepWcLdu4bBWYvbno63uf7vPBYyx3QZPSANoD1\r\n5MvlvEj7heZtTMr416Gh75f4JHl3nwiMLbR7WHeWh/s8htFociIzm5Cm+f33\r\nekfp6w6QSvkI9huODs22IKFMqTe0cMgErvRQW7ab6+5G07q9DUv03Oiq2cut\r\njYESRzcbbzpSBJqLlYVye/CqRYZP1zTYpriTwXEAWWdhh+OH6T0kgyjI4fGI\r\nEqAXMHJQRWYif1neDcAUexrL5uHeF8HKe3qK08ing9pyIbgbx3vLJvVq6wFY\r\n++4MdlcDvUrbf3DctEwhn4QrlSK75tL0Cavq+ACVQPtGydb1qnE6jkcAut1g\r\nKO2X/Geis7EwDg6vFlAGZ3o1LrmYVOHlNcvjBG7th+xRkgB2tdOGTZcDJMC1\r\nVKPf/IIjJOlHivS4mZR/JE5l/hR1T2apwh4ddPfvc9KdCkyH3Hmtq7JNg12R\r\n+gN1cbInFc4UhW4xBWEopu8FQh0VNA+97jmCvn7vF8FMR2tCpSn29ZnzOoOR\r\n4fHRwA6DEPdNp5hp4KtAcxF8IKtFrUlv3/y3h1YQ4+i+oppVRH++DfUL17Jm\r\no+NboZtgJiKnlT/NcSxLZ+t/tgyHgCjeN3A=\r\n=w4FW\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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.17_1662482460695_0.9787465793304038","host":"s3://npm-registry-packages"}},"3.1.18":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.18","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"9d07ef304298031f279ad51f8027531c826e7ddf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.18.tgz","fileCount":13,"integrity":"sha512-fOJ2XKV0IzBWtY3cvj5rXWenWftzfMXM7doJ7qyd2Zg3NksmnVbrKhypudgfYZKMl/chIkQny8YwGv1pdWjpMA==","signatures":[{"sig":"MEUCIDblhlrvXMo+7EqAA4TBkV05//CiVRy5YFgdhzBqJZEDAiEA/l7zlffeYvGEghsaMGF4hPWsgPci3FAMlsz3xKrLd5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzAVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHMQ//ZTpCoWyF6FpvQbSSYxfCtb/UFd92h6so+6kCyNIRtr8Y0fOk\r\n3228EZrcjcZadLcnR4ZkKMwQFscA1wt4fy/hDpVU3mRoDnL8jzL7L+TKTRlr\r\nhW75zrrys1vp1tQviotVxUS40xdZxJjPpFzQcB9hWChvf5FY0BBSHsp5YYa9\r\nCCkfjfMr4br8scAgk8x6r5xuKTFGowIC3MStN98pSWoCucoZagYCVtz54V52\r\ncSogVuURzgum2y3Q4ZQWYsqytKaYYViWA5hIQuF9bwXn9pk3v/r+7CALo4uB\r\noeUFO166xvAWu6UaMCms3GZfQqbgYOOqc7WGPtP4AehgBIDtWUkDaJ+vJTwI\r\nRX0i42aCNQGM0lyX9pVQrDbuZrOhQN3EhoxKfj2VoAGtB2D9G37F7gwfRic4\r\nSUJjMCs4iG6QVRQ5buzrueM2acyMFRL07a+SwnlOa4bzUD+OwDrVUr/an+t3\r\n2OSF75ou+hvygTkTmbKXHtMkXF4U6FhJ8lJkLmVh99tAknqy3dsm6a3TbKST\r\ncR9Rv0KqyYUN5TwJQ2QJ8vq1mb922M+EmX4/o4sYyOV7Dfe7U9PaxIIkWRUP\r\nQ0l8y08aTboJCKGokzpVp3dxv3jNES7ARc4yWJg+z6kZW5rXdrsYUFR0fKfZ\r\nWo2WTmVwkXsoKoKMZ3C2gXEfBeHqZ6X52Aw=\r\n=Lcuk\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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.18_1665085461262_0.6256125695238881","host":"s3://npm-registry-packages"}},"3.1.19":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.19","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"6bae8914f00e0d52beaeeb29d5c21dac70ac0a42","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.19.tgz","fileCount":13,"integrity":"sha512-vgG0fC7FXj7uXZTlBgQfclcClbXHmEXod01cIt1hWaVaSNe5EmQfgF2wGqLoRuZxBV+gSTc54U1una2OiCBIrg==","signatures":[{"sig":"MEYCIQCTzNnvBL5Lmj+2/loXWmN7iQxYbCDvct0yNMnsa6nAhQIhAPVwnbujKvrZoj4xKnT2b/yqVHvgTUcNW8tQmnEIyo6m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrc5w//frTGUpgRmZS1WqszHFEJB3AUi8G71PLnNtB8UriSFmbe4dY0\r\nBLp7N78cgGjdBqNoTbHyiGho0Ymoa2C8zkh80/Hv7N/vUwt9JHpu6yXW1g6t\r\n8w1bXFfPoQlLGZtKni7M8lAAlNdb/AbV/p/sANXGNhGu2xJbQX5DBy9Pvwev\r\njr4+nwuGMVHRPpjZNpDDQ0gFazfLkjHnKEutljv1XmFhu2UmaTClQGNFrXRE\r\n3MJzaXkrkg8wfgnXezKctJMMDLvRWgSjIj5lq1Nq3IAUj2ltT/cpjZL+ay8y\r\n0maFzRj7LjnADXtblAQEsNWdHs9mUis8iFNOB6y6D69IY0wzxLRyWL68mtcd\r\ncV8mjsBfxcXCvRkB1qkIiMrjEvHW0H0O+0pvyVxA/1PTH7PBdd2ex2wgoiU4\r\n4l2Pn6RkRN7QoyBRta+opEunXwOeK6CSjKXEoWEOjv/03yx21As6IrKFrnW/\r\npAjaKf8YyS8YrzKtX5XaKZEVNmsEi3js87T0WDn29qK0IVoIXxhsW3Yi8qxe\r\njUyYE44E8J5dnlfGub46+kPy7W+u8Wd/t5gxEemoB5xdPPixzwOw+FC8rEEF\r\nP8D4uehv0dxZGLteygcosoz6GUIcL4bJtyENgrtJMNVXMwtfqaVFC+7/uQIU\r\nGGiv8TnXg9L5LGtPtBp2zCqwwBhythmVNTk=\r\n=X9XF\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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.19_1679007027537_0.6999734708776308","host":"s3://npm-registry-packages"}},"3.1.20":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.20","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"14436f58381fa222860bb68b46fa30b0228ca005","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.20.tgz","fileCount":13,"integrity":"sha512-7gcpgPNATz1ekN+EUuwBIXNT2ilomjZUtlzcyH5Z3qiWHUjab1yOqHft4XjIj/rzuKzu5F+95m+run+qmHgI5g==","signatures":[{"sig":"MEYCIQCuvsmUx4r4o58g0yFqZKWPfv4btrgpXXeMCp9qeR0uSQIhANeWLkNbQRCiu3poaT05xfiZ5ruETBdLXWBKLfLwRTPb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33565},"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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.20_1686328186601_0.9666186705037443","host":"s3://npm-registry-packages"}},"3.1.21":{"name":"@hint/hint-no-disallowed-headers","version":"3.1.21","keywords":["no-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-no-disallowed-headers@3.1.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":"0a6a389016701f57905f9918a6c887cf503821e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.21.tgz","fileCount":13,"integrity":"sha512-eOTocG/WQoh012BUMaHoGY1snXuAMSqsAHyxq56i7mOICiafeBkNuOHnVNks4XuEaSBi/Em+ye95PggJtF5ggQ==","signatures":[{"sig":"MEUCIQDUF1WSPGfD88ve+aDqKOaDaOnnFkF1aDM9piPzGZtoAgIgOpuapSILw2GiJo7TPOugtUIoSs6IM13llgMUNaNv8Q4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33565},"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-disallowed-headers"},"_npmVersion":"8.14.0","description":"hint that that checks if disallowed response headers are sent","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-disallowed-headers_3.1.21_1687907357788_0.2885085618143606","host":"s3://npm-registry-packages"}},"3.1.22":{"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 disallowed response headers are sent","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-disallowed-headers","no-disallowed-headers-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-no-disallowed-headers","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-no-disallowed-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.1.22","_id":"@hint/hint-no-disallowed-headers@3.1.22","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-nTmledRUUGi+pGHQR0F6E1b0ymO4sm44EucS7JM/9lDs4dKHhvk4EOQxifvKvqA8i5aoqd2ik0WGLfdza56cMg==","shasum":"8e58a969f88507ba975667e997be8627a4d79b51","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.22.tgz","fileCount":13,"unpackedSize":33565,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAhMxSK6obmJYZkP207aG+hsD9Gd20LCGcCBOa7LLxQrAiBPlRVL2/k6xEa0sduji3qY/Achwciys/w+dXTw0aWrXg=="}]},"_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-disallowed-headers_3.1.22_1724949387573_0.44003729104584677"},"_hasShrinkwrap":false}},"name":"@hint/hint-no-disallowed-headers","time":{"created":"2018-07-17T20:49:23.110Z","modified":"2024-08-29T16:36:28.051Z","1.0.0-beta.0":"2018-07-17T20:49:23.219Z","1.0.0":"2018-08-06T22:46:53.072Z","1.0.1":"2018-08-10T23:06:20.027Z","1.0.2":"2018-08-14T18:14:21.242Z","1.0.3":"2018-09-06T22:59:36.248Z","1.0.4":"2018-10-31T23:59:16.929Z","2.0.0":"2018-11-06T00:19:21.490Z","2.1.0":"2018-11-28T07:32:54.982Z","2.1.1":"2019-01-02T21:18:39.136Z","2.1.2":"2019-02-22T17:49:40.732Z","2.2.0":"2019-05-15T02:55:31.905Z","2.2.1":"2019-05-15T04:25:43.401Z","2.2.2":"2019-05-23T15:50:10.902Z","2.3.0":"2019-07-23T16:32:41.093Z","2.3.1":"2019-07-24T21:19:55.718Z","2.3.2":"2019-07-30T19:30:58.188Z","2.3.3":"2019-08-06T20:42:16.149Z","2.3.4":"2019-08-16T02:39:45.348Z","2.3.5":"2019-08-29T15:54:34.588Z","2.3.6":"2019-09-11T22:31:44.607Z","2.3.7":"2019-09-19T18:32:47.688Z","2.3.8":"2019-09-24T19:31:19.956Z","2.3.9":"2019-09-26T21:19:56.463Z","2.3.10":"2019-10-16T19:45:13.054Z","2.3.11":"2019-10-29T22:30:12.510Z","2.4.0":"2019-12-03T01:02:33.724Z","2.4.1":"2019-12-05T00:28:51.947Z","2.4.2":"2020-03-18T21:56:28.508Z","2.4.3":"2020-04-15T19:19:30.150Z","3.0.0":"2020-05-18T22:16:38.861Z","3.1.0":"2020-07-27T20:38:03.707Z","3.1.1":"2020-08-24T21:56:28.527Z","3.1.2":"2020-11-11T20:42:49.107Z","3.1.3":"2021-02-04T19:30:56.507Z","3.1.4":"2021-02-06T00:42:53.602Z","3.1.5":"2021-06-09T19:11:20.258Z","3.1.6":"2021-10-21T16:20:00.608Z","3.1.7":"2021-10-29T19:56:57.501Z","3.1.8":"2021-11-04T18:29:51.145Z","3.1.9":"2021-11-15T20:10:02.745Z","3.1.10":"2022-03-10T18:41:12.247Z","3.1.11":"2022-04-26T22:11:18.995Z","3.1.12":"2022-05-04T01:43:53.951Z","3.1.13":"2022-06-06T22:27:41.870Z","3.1.14":"2022-06-13T20:39:44.430Z","3.1.15":"2022-07-08T15:59:15.090Z","3.1.16":"2022-07-22T22:59:49.886Z","3.1.17":"2022-09-06T16:41:00.918Z","3.1.18":"2022-10-06T19:44:21.505Z","3.1.19":"2023-03-16T22:50:27.739Z","3.1.20":"2023-06-09T16:29:46.808Z","3.1.21":"2023-06-27T23:09:18.060Z","3.1.22":"2024-08-29T16:36:27.812Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}