{"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":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"dist-tags":{"latest":"4.0.23"},"description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","readme":"# Use `X-Content-Type-Options` header (`x-content-type-options`)\n\n`x-content-type-options` requires that all resources are\nserved with the `X-Content-Type-Options: nosniff`\nHTTP response header.\n\n## Why is this important?\n\nSometimes the metadata browsers need to know how to interpret the\ncontent of a resource is either incorrect, not reliable, or absent.\nIn those cases, browsers use contextual clues that inspect the bytes\nof the response to detect the file format. This is known as [MIME\nsniffing][mime sniffing spec] and it is done regardless of the specified\n`Content-Type` HTTP header sent by servers.\n\nFor example, if a browser requests a script, but that script is served\nwith an incorrect media type (e.g. `x/x`), the browser will still detect\nthe script and execute it.\n\nWhile content sniffing can be beneficial, it can also expose the web\nsite/app to attacks based on MIME-type confusion leading to security\nproblems, especially in the case of servers hosting untrusted content.\n\nFortunately, browsers provide a way to opt-out of MIME sniffing by\nusing the `X-Content-Type-Options: nosniff` HTTP response header.\n\nGoing back to the previous example, if the `X-Content-Type-Options: nosniff`\nheader is sent for the script and the browser detects that it’s a script\nand it wasn’t served with one of the [JavaScript media types][javascript\nmedia types], the script will be blocked.\n\nWhile [modern browsers respect the header mainly for scripts and\nstylesheets][fetch spec blocking], [Chromium uses this response header on\nother resources][chromium ssca] for\n[Cross-Origin Read Blocking][chromium corb].\n\n## What does the hint check?\n\nThe hint checks if all resources are served with the\n`X-Content-Type-Options` HTTP headers with the value of `nosniff`.\n\n### Examples that **trigger** the hint\n\nResource is not served with the\n`X-Content-Type-Options` HTTP header.\n\n```text\nHTTP/... 200 OK\n\n...\n\nContent-Type: image/png\n```\n\nScript is served with the `X-Content-Type-Options` HTTP header\nwith the invalid value of `no-sniff`.\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: text/javascript; charset=utf-8\nX-Content-Type-Options: no-sniff\n```\n\n### Examples that **pass** the hint\n\nScript is served with the `X-Content-Type-Options` HTTP header\nwith the valid value of `nosniff`.\n\n```text\nHTTP/... 200 OK\n\n...\nContent-Type: text/javascript; charset=utf-8\nX-Content-Type-Options: nosniff\n```\n\n## How to configure the server to pass this hint\n\n<details><summary>How to configure Apache</summary>\n\nApache can be configured to add headers using the [`Header`\ndirective][header directive].\n\n```apache\n<IfModule mod_headers.c>\n    Header always set X-Content-Type-Options nosniff\n</IfModule>\n```\n\nNote that:\n\n* The above snippet works with Apache `v2.2.0+`, but you need to have\n  [`mod_headers`][mod_headers] [enabled][how to enable apache modules]\n  for it to take effect.\n\n* If you have access to the [main Apache configuration file][main\n  apache conf file] (usually called `httpd.conf`), you should add\n  the logic in, for example, a [`<Directory>`][apache directory]\n  section in that file. This is usually the recommended way as\n  [using `.htaccess` files slows down][htaccess is slow] Apache!\n\n  If you don't have access to the main configuration file (quite\n  common with hosting services), add the snippets in a `.htaccess`\n  file in the root of the web site/app.\n\nFor the complete set of configurations, not just for this rule, see\nthe [Apache server configuration related documentation][apache config].\n\n</details>\n\n<details>\n\n<summary>How to configure IIS</summary>\n\nYou can add this header unconditionally to all responses.\n\n```xml\n<configuration>\n     <system.webServer>\n        <httpProtocol>\n            <customHeaders>\n                <add name=\"X-Content-Type-Options\" value=\"nosniff\" />\n            </customHeaders>\n        </httpProtocol>\n    </system.webServer>\n</configuration>\n```\n\nNote that:\n\n* The above snippet works with IIS 7+.\n* You should use the above snippet in the `web.config` of your\n  application.\n\nFor the complete set of configurations, not just for this rule,\nsee the [IIS server configuration related documentation][iis config].\n\n</details>\n\n## 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        \"x-content-type-options\": \"error\",\n        ...\n    },\n    \"parsers\": [...],\n    ...\n}\n```\n\n**Note**: The recommended way of running webhint is as a `devDependency` of\nyour project.\n\n## Further Reading\n\n* [`X-Content-Type-Options` header](https://fetch.spec.whatwg.org/#x-content-type-options-header)\n* [Reducing MIME type security risks](https://msdn.microsoft.com/en-us/library/gg622941.aspx)\n* [Mitigating MIME Confusion Attacks in Firefox](https://blog.mozilla.org/security/2016/08/26/mitigating-mime-confusion-attacks-in-firefox/)\n* [Script Polyglots](https://blogs.msdn.microsoft.com/ieinternals/2014/11/24/script-polyglots/)\n* [IE8 Security Part V: Comprehensive Protection](https://blogs.msdn.microsoft.com/ie/2008/07/02/ie8-security-part-v-comprehensive-protection/)\n\n<!-- Link labels: -->\n\n[chromium corb]: https://chromium.googlesource.com/chromium/src/+/master/services/network/cross_origin_read_blocking_explainer.md\n[chromium ssca]: https://www.chromium.org/Home/chromium-security/ssca\n[fetch spec blocking]: https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff%3F\n[fetch spec issue]: https://github.com/whatwg/fetch/issues/395\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[javascript media types]: https://html.spec.whatwg.org/multipage/scripting.html#javascript-mime-type\n[mime sniffing spec]: https://mimesniff.spec.whatwg.org/\n\n<!-- Apache links -->\n\n[apache config]: https://webhint.io/docs/user-guide/server-configurations/apache/\n[apache directory]: https://httpd.apache.org/docs/current/mod/core.html#directory\n[header directive]: https://httpd.apache.org/docs/current/mod/mod_headers.html#header\n[how to enable apache modules]: https://github.com/h5bp/server-configs-apache/tree/7eb30da6a06ec4fc24daf33c75b7bd86f9ad1f68#enable-apache-httpd-modules\n[htaccess is slow]: https://httpd.apache.org/docs/current/howto/htaccess.html#when\n[main apache conf file]: https://httpd.apache.org/docs/current/configuring.html#main\n[mod_headers]: https://httpd.apache.org/docs/current/mod/mod_headers.html\n\n<!-- IIS links -->\n\n[iis config]: https://webhint.io/docs/user-guide/server-configurations/iis/\n","repository":{"directory":"packages/hint-x-content-type-options","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-x-content-type-options","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","x-content-type-options","x-content-type-options-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"bf8face6b5ed2f03b6f707f3b1d55199090d04a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.0-beta.0.tgz","fileCount":8,"integrity":"sha512-dDAXXCnHjiF8Uh0Mazec56lZyijIsJYfs31w7B2hTyNsxkBSgx8iLwWWLHa49zQ+zdMww4dWJO7ilmOz+BsWMg==","signatures":[{"sig":"MEUCIQDsxF7vniQ/aKIiLB370gsRVbPNrJNeDTCOHDomnvSGdgIgf+CkGsNrntDoFH56yi6U5RUMSmdzUBtA+4efIEhaQ84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTlvgCRA9TVsSAnZWagAAFbMP/A9eJSQbsRvsCrVY31bi\nV6GtVavK5nnDTV490Q/SoFh9Nr087pWRNH3x9fcu4LP5PwOiwNTjFeIfnF2s\nTqQ1M1x4U1KubXXgYYduQsXH8CEcDCNYEdKyv7dR/pLXNSnr1+W47N5KTFI2\nRRlpOWJliQHRHFQOjEDZxMNi6LCJCmAa5BWq0waP4/BOCaf7EeUgF/iwYKQ3\nEddAThprWTs5ZBzDjzllSYyz5xgVP6d5q1Kqc5HEjgPxJiDnOsUm2UcwQ/oO\njpkN0ocbV/ZldX2aLW6ofDM4owHyvktVxQIgg+MPJVXkBJvWLfPKMwzH0/NI\naTqMsR4Ha/sr9YEAULbyy0dMG/GEqZPd77vNiRrIHm2n+/mMkRpGsyzN7r02\nmVceIJawLVStuBUZWKyQs9Wjvoa/KyutLTzF88nADLd9t2qhSFuOgMH1Q2c/\nmBtKUwocjqkI9J0hsClKnl7fUpdcLwxVrltyLcBZLta0y2ZoELfQfCci1zgI\n7FO4fOIZWq2LubWT59gXztzbyc2pJWMNj32OI21f5OV3bHob6mQhv6gTE9GP\nxtq+C6AzPF9+Jl8+5N9U/XR/zaE4oYc90SQe7wDVAUYobb3qffutUaBaPP+R\n/4BQNVSl+4b2UGtu6x2PEh4S61BLwI2rmSqyGEUWsqmzBOYjV2SxoMhZ2Tbo\nq61I\r\n=wgCq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.2.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.0-beta.0_1531861984370_0.3473884886695453","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-x-content-type-options","version":"1.0.0","keywords":["webhint","webhint-hint","x-content-type-options","x-content-type-options-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"3fa48b4a39426b4545ba27c7669a52e0b54aebaa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.0.tgz","fileCount":9,"integrity":"sha512-cyiu5Y7O7EvQFx8i0U/U/QmZOVoKoMOCPzd6CX2qPR83cmS+YKEL2JfHxtwhB3K4jX5ObUrdWL93HYaJXZcPYw==","signatures":[{"sig":"MEUCIQDG8d5StxMD2fpRc1mmBvN00u6vwd32vqdnK8BDxfk3RwIgXedzhqqljwxpGgctdyzHVQ0xtkSuM29gJY4lmNhGDeE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24126,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaOFwCRA9TVsSAnZWagAAGDgQAKQlHsbQr1NGMZW2i23c\ng7QPAPWNwMXDbAF8E7wUVsR+wyrVQZohL81Y3YJDqVAxpLrJ2pvCZdqMljsl\niljHuJ30UY7+qkcLsteByiitxsVGJ2t01AGsUW8I1aWxcTfAzpZP3RfPnzRw\n8U6nuarbgNhKJyfxnnVJH0Qy1P1h7AcDspeYwjW2qXZwm/wchqcLBaejSl1R\naS3sNp89maW47Ew0LLMgHBQ6ZqctNnYJxh2QRqZ39c1lFM/+kGS2SAgg9iaJ\nmMVgEPeAQAYFkvpPI+bb0RGM0GjYc5uyUP4V/cGGV4NF7chGE1nLX/cugr5R\n2tjyFIjIVc2mLNpZxDrdaRgHqp+DK13r5HqT2/obWuhTbDqok25ylXVfrP6U\ndVquU+cSoM5S6rlldVy5b0RjkDkHzCB2hD1C/lHt9t0IjhZiJTaXUtOpZZU3\nPNAHnE/tUIadB0TUkoRa3nR7mLdIkXpBhQAVMdVlsNvvVnZ40mzKDkFOvmfl\nZM+OmSLrXDndpN8HIh8IXGEb2odhD5AJMoHDSGgYG/mHdyJAAWfElTwa6ZCw\nxqTGUbOpVjs2Th2ji/8e+f6KQKjwduxCSxCQLsZLcX6KWNJ20yMBhgk1q/d9\naRn17M1LoyhegWj8o8hm3ZvmEpo1mRvXxozRqMkMBpqLyZKNXzsKx0pUAf9i\nKG0G\r\n=pL9W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.0_1533600112197_0.6607521821938787","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-x-content-type-options","version":"1.0.1","keywords":["webhint","webhint-hint","x-content-type-options","x-content-type-options-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"5a4f7b9cb083b8128cc83bcbd9cd7fa5f47c09c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.1.tgz","fileCount":9,"integrity":"sha512-hm7PvCeE5I/n55/Z0Npz6s1qmLFH5plpuvKpnvVZG0uuwCcgq7otcllKj1V69FF0N5wQItVihauiqlx/xsCDIw==","signatures":[{"sig":"MEUCIEAxY7Z1r1zpDQBwdMuT7ISbGgrR/mZoak23oZfL+F/GAiEA4TNoODLHj4I8k9GbG3LbKdVYWVpw5CEq0sRoxeUoEpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbiThCRA9TVsSAnZWagAAMecP/3Y/aFTCjWViBNEnPSdm\nrRg3oiGg+meLkfcGHj4rhfeIVtPHbZSdJGGZuvORTdqUVJ1gEL4kS4f694U2\n658iZVADnogkWLP2UHnbJaCgfuojAaV9W2k1iYkNGXoIbH4EC+F5DaAYVIRP\n4Y6Ktq5VSZSySDcp291N3xI7rs8lNrCgAe5q6ISRUeAVbf+FCpV+oWxKKKET\n5E1JaF5mlhh1llqEzCH4pExrQ93pLxjlwYWlNnsafUNpsZNVGPfL7l8oGLF4\nPMGaNngJyuRMTRIMPnCUaCqn7dAV7Q674pD1Mw4/INLmxuerILK3D00miH/s\nuiUwSu6+M8I1gbPiEtSb55WIPzH5oU359Qh35ty1vVEDNYvFKP7u7uEnig7Z\nUAfIC6c2u5c9VO7vX+2p2COU0ON7mBc2uCHypQxRuaHAolegQ4L2+R9fgqw8\niw0xI250IVhwIq73yCywVr9W+zcBXZ1iKs2XFGLOhV2AUkCkJ6eEBirFI6Rl\nTJq7wY87wxTMJnEccBtjkm+nMR5Pb2SlKXnB2EZDtF1isP09UX5jrDU1fA2+\nrFTPGAfnE39gSBfv68jfvZa2JTOdBDifUtctwscLTHPX5Oj3xsm8PyYnpBuJ\nTYQ9h3NYGBp2q87sbY/zXk1HWnaUWnRKaaRhXhrD0M+eRJlvRDnFfhWO8H0j\naXjY\r\n=6Q7l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.1_1533945057192_0.24336104192143382","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-x-content-type-options","version":"1.0.2","keywords":["webhint","webhint-hint","x-content-type-options","x-content-type-options-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"254ee900942c379c88bce8868ab6f7b7476c7dac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.2.tgz","fileCount":9,"integrity":"sha512-2OEE75soDU7KYN2DJ9FDUEQf3HtH3GJIVg9Q5ghFa/zaIGP+MlRooOXphpJ/FK3yu6C4sEnY8M2Be2lJGg+wbg==","signatures":[{"sig":"MEUCIQD2afy2s/CQ88UglFkbW0B5FOJebpVZznkPaBGWD0kQ0QIgFoqA9TxRZz+FH7UMvXBwskAff8DLqGmpaFqHNNXvarQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcx6vCRA9TVsSAnZWagAAsK8P/3O1u99NJNqzjftV6ew2\nCm9fGfH3+ifF0oJ3bCiCJTgmAAm9GVV/dYBuoTWEOa3VIPOxmkj26lOI2+rY\n2NwVNbVLDuTA19Q8yFmqioEcf1iaUaav6vWDYZHpYirgnw9hkvc9C8GbHwl6\noo8zhuzxEuqTVp8rs7xd99/yvNv7DzP9LDG/mz/BnNgZ8dQ0E/g2J52u7iN/\noTorUDw2xb80NAr7VMGcDYV+hqMMVgy+rEJR1eWPUwAH5LryDGtzkRkzaaXX\n/ASfugCc2fdlCSyWmLUYdBdtQWAsVbj/TpJlJU6zB53WtYpDnGwi1eMLkwAr\nQuZMq23W/UGcFZgp+RvwYgDCvAEOdx+TWExfzgo+ae04YcmLeVuRwjP5+Nm9\nyXTP9dfifcxvXS7YkYdHsuNKSzhWBbNBOBOd+XoPHG3u/da/Xj4OwQusXm7e\nStNkBo1xjjbo2dtot9jy0Y9ReRRkTgIYsbQ13w0S4AVIFKet7I1asqJUPx1L\nasANrovDK1uNVPfUNB4A5ScuUyVLpvU1S1Udxyh83qse2PPrBqq4JDFDNXf3\noJmI8FdjgrsU36y2sC2HXuTbWQ1YAxw5RQPFtqTSrFFAtYvRr7+wcXf0xaa6\nPquxfCiZLJzR3zD9476BBSAfAygxzPyYNwAHvPLi9nGb9y4fsSbyb5eo5L4z\neWYy\r\n=tb9U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.2_1534271151077_0.8611846092756239","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-x-content-type-options","version":"1.0.3","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"e8cad127173cfb1294a92310af44ccba2c972c14","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.3.tgz","fileCount":8,"integrity":"sha512-3j3CWM+dn+q1FyTvXsA6Eoo5+MPvO/0smT70LisfsuaZe69LjXiQP0AKv/uJ6AhAaMhUgNIkHorwO+cvA/OHgw==","signatures":[{"sig":"MEUCIQC3FFaZU+49Fyu5K6g/uxOW8geRd63L2I/DiiOB4igk2gIgfDl6UHRrrxPBkzVm5xIZkQelIkFcK/iqEXfg3ir2dFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkqZGCRA9TVsSAnZWagAAbHkP/1XpxHSb23cs8XGWgnzy\n+mhv7O2Bh5pJMyYGl+XYYjiEoFHknuVYd/U7TDVI2U4MojIiL2bisb+fsEjN\nZaBEpOO+PC7ljwGtxJ+MqC8OjJK767BAFlZJprMWqoGcEuvaMPSPazvpuQz6\nFxwS5hDV9x0YRYaI/EUGB7lsB9ydDA/vcC5rdVRpuV38bdJ1/7flN0LCJEnX\nyHKYmYpNqfdB6NwFht2PN16m9FAc6QKrLO5jkI2KpEXQzSJ+EEpsvVLx9tK1\ndGEU9B8LnvQh7FVPbP3t2Oq+WWA+wkoqcyEamxJk/3hg7L4hjTpsS4af0CCj\nRh2JKQdXhn58J+g4HixUQ6eGHwZs+Jqj/FE6kEMhJAzHy3F1jk9dnIT/Udpf\ngTBD/7LHC1VkgA7uZgS7EoWz8H0aoJr9hhMwouS7V9JthvVKRaLpWAj+RxbN\nU0CKr2JMsfqSeBwy+BlZbJUwckdQRB4dbW4o+oaf+PhSJTq4n1Nc/L5851rP\nET2Y/s7IkM5mvlZu8gV3neWdn/hXzlGSmqwUu0D2P354f+qoWUS+WKVnMv5g\nYCHkspRvfEAXxfvwvorc4khZPMRmZh2Q1rbA0pyl4i+1SrrfyOMLqG10+w5O\nhguuNH3BScPdyLgcog25w4a7p/qMeVpfBbMV1eomby5xyz31QD22h0yB7wMd\ncJ54\r\n=K0W+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.3_1536337478073_0.9307742095786093","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-x-content-type-options","version":"1.0.4","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"3976fd02b5c1578a9af4a9098814447ec397afa1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-1.0.4.tgz","fileCount":8,"integrity":"sha512-htnMIqbDvnQR2m2fd8lL0FCCOXTGiQoIXETIFuxnOYnr6S3ZClHyefHNoVCBbT2k/UFZbBaAHixQv7W9HDSYUA==","signatures":[{"sig":"MEUCIH8nxfwB/lqN9XBr5vZU23ZLw+X6JYWY2Rlv38fBbsDqAiEA3TVVJ8N/qDGpvtLTt8TALwbtsJgWZazA/ntrvRTexjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2lCYCRA9TVsSAnZWagAAgfkP/R+//QWxNNYZv8IIDe6f\n83dANcRdYTMX8Z89TbuZLxyH7lIoAnZfrxgQ2XNdpgl5ZC3iBqdyQrxFtcl0\nNxLo6J88bZJA2KbtL13xH6/igHQ3u3rTgy/CLBKb+EOW2/jWKkaceJUNo1W0\n8PId+Urwvk0hM/p73iXHGT6r+ZZuUjn3ofW4UWOT+RKBwA8oAuw5vN7aFi/+\nhXSlaD3y0S4Qr48QrHzHfPxC14YRXmqMFQyTgNrftRufQMUNzhKOFX28y0PM\nQUJcbwA5xN6OBAFWciI2TEYwGlAPJcNydQKwVF/2wbvB/k/0BYCK7+lN7L3V\n5p5VOQ4h9ETa/59E/eE9J9G/dam3FNj3xDAs/SBtv7YOZXRN/ZyOG8d9Xq1k\nJDetjpPn3sCSrtcX/A7MSKVRRAZ/MP6RtqZer2QnHjR8lihqjMYmNgU/0z8w\nnhYxvLrAml7GSbd79CLaHS8Az/XwrDgl4IQblVxlNi8qFLgxWz5kWAUrrPF2\neRdqEyZkm6ivTpL2HTEsk0BVl14gH+Ycq/2p8rC2/ASAqxY+2mLTlUnLE+mo\nRsWJT7XGAc0zu1xYcO8x2slgbcAvCvw6efJUFs5fz2PNqa10bjP930akaP35\nD/RdGzz9Sq2ixC4rrwuC3kkWD/oeO+B6EMEIXXYJCHFp5oxRbXjzAlzn9AlT\nsbn7\r\n=OTSK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_1.0.4_1541034135628_0.4324264879026418","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-x-content-type-options","version":"2.0.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"16af5a69006b11ccd5a15a398f2a1d405956a5a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-2.0.0.tgz","fileCount":8,"integrity":"sha512-TP5DseAP8wS2sDtgZNwopMxZ+uI5z5dSoJKlCw4f+c25uUhP3pl8j43F49MFg5TEi+lFZ9RTNB7NVU2QyX5k+Q==","signatures":[{"sig":"MEUCIQDaVM1qjZeCtCjmibKlLvdiPvMLWikpq+gjwZOmWp0SLwIgFfkC2wzcZPkQd1q3Vz2PJV9/PxlYMEiUJhNtFOkCrEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4OQbCRA9TVsSAnZWagAAqVUQAJtQrC9T54TrHapjVOer\nKZ1V5dL9OqnSiSavH+rV2marU9caMKE54khVRZvbEiWSxKVPW3F4+x+/KDyR\n1aOumXxiNV1zebk8n+aHAcQQSzZ8cPU1UAeRqIBGU1wOjeLlpv9ws1/0uHaW\nqeWlPnvMuz+iTWe/1vOZ4MR7MQa9mdxO3oUFpo2Ex70pN4x45TyJFC8UVM4h\nOAXugvjlDLsjvnz/bzUYzrSmERNDa2aAGdCbmmAsx2I4DWcbnBWDALuTQ1tj\nOdeqc35KwRmakzXrfeRUxLmfr5/ZnMFm0jc4rQt6hrzZqOM98C/H78p6A7xG\nSFRlOI4gWQ5SmXbGtbEnznhWuVbm8gy0pv/LsUoMXTgoO5PtUSD3cehwUq9B\nd9AJzGrOn431xTsIlWH3jyZZHBmFZPBfsI/JTy+1nDy/9/MYG5Tj0mHk88/N\nu1VuVWeR5AnlhDfcYgWYuXw8p34o3Nqgwy3u5WZJE/iqTwfB3aIRxO2An47I\nrTwpYw62LWTqR4TmVD2LDHR+3tMpEHlwH0doeYiFnVK1eXLOGMap5ykAvLAf\nma+Up5MXvMp9m8sjIXPfpaLQwnQxkzA9Xyc9Klra5Kn+P5Mugx2sLA+nxio7\n/xlK72/FLYkLc4OT3XVIY5oLmJIlOD6j9Y/090/d1OGkJXek9DxEMnw84X3L\nK2CJ\r\n=7IeV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_2.0.0_1541465114323_0.9394413863648212","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-x-content-type-options","version":"2.1.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"c3cd2ced0b49c3279474aa98d654f8ac66d965eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-2.1.0.tgz","fileCount":10,"integrity":"sha512-7hgCHB3SBB8AtJtfkY6FEUwoM1DOFHkmmNNwGI4PvSQUXmpfhKh0X9JmmOHeb8OdTIyf5uaBHr243QpLBYxFUA==","signatures":[{"sig":"MEYCIQD+f01lCiJ2bblxA8mTw1ZbACP4XMfawPjIZZgwMuh5lwIhAIi1mgFPsCwff8at4WW2BCObeFbWfeXHlflomylUOYdj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/y3KCRA9TVsSAnZWagAAVtEP/ArpZjIVHdDH/Uk6nzP9\npnx5E9NXRgc0wll6s2mArL/Xzh4VoglUMGTRdC2Q2tiCerbNMZiTcb3NI1UC\ntHH/QDZE6MWkOXpYKVeuax/mzEO07TEciI0Qn9eI4ZDaY6kpG3YnJZCpDgwG\nAOfV1vlV4Z55SagXDRCEBc5E/JG85CL/94lR2zVer5n20ckf+sZV1SwmEhI6\ngV1RjbHHx/meOA4SXPigc5Vo+ntDhSOKGlEX6DDBXPv88JYY0tmnjyeb71qx\nmbKq0v7vNfYjm8tNYjFQX/rnWAcijEqOJbONBFMzxIt/jdkE/h5Fsmpiwg3+\nZnl4pZaak6RksaNZTDhQlUmvG/11/PhJ5hMb417KCqMAlelZ1vUZyR7bg3BC\nyxX6Ds4fRce1oD1XZswdrM9HWYLn5Dggqwzxe0A+XKozUCw1gFTDiNoEf8zm\ndJTNxCX64pK7h2TU19Myv6d/xrBEgjd3iQraBggkoMax8v+DGF7pXdFCUEI3\njFKx+CZE7b3W54r13CpCjol5ySNzzZ+xHYaM8T6LGfGqMGK+WVqqaU0xEacU\nEvPDHOKekV34VlQqglDTAoSrIuYGQSWqQBmupwRTII48DgCCulkh+CHvyFoZ\n6AJl/0hLsDWg6SEHfUQ2I6hz2SR/w7MLsu7UUkcSotP0ii+hkViomKU+QN6U\nD6om\r\n=Zq+s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_2.1.0_1543450057794_0.14548621588415944","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-x-content-type-options","version":"2.1.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@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":"01e35f0d072c290245fa9c49c78d1ded132d5513","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-2.1.1.tgz","fileCount":10,"integrity":"sha512-VDTUE5p9+NUiim3noqZS4SY/+c7tt7z5ZkyQ0eV7BWRBBc4hXG2cQ0exlCcsyy8392rtqk2VdpAT+s79J0Evcw==","signatures":[{"sig":"MEYCIQC54cnPqSBeig4XVCh4ZxA1iz5bJPXI6VSWQzXzbc+qdQIhAPaRMzEw0WKq2XoENItoh/pggZrQOelQbyYfz3AB4zvW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLTrACRA9TVsSAnZWagAA3noQAIMb7eVlv66EXd6AtF//\nCRzG/Tg7ke3I0yokoqu4o0JXRe0ASCh9R67cUhqSIFRy4x4mN9+9Dtqf5Zo1\nYMJk/PXWypcNf+G2j41df0kp0grUDOswRSGiUR+2FTg6sC6ecHiq6VdajuEz\nad17gUEGAfZlcj+cUTGOaooCdfeGk60Zqw1rLvdkIC1NlnV19WRrwZJ45Wb1\n8qctsaH9jFaHMxVZg0swNN42zFvrev6MYvFK4vOt+cPRsmwYyCHaP7t2QRYT\nZzN58J5BFSBqHHO3dql3lHg6Dc56qxnSPdvZ8GvmMILb2Yf5oCl0Y7kzvnk5\nbWrYajkBm+11tItRgFTj5il+C6q9Rbspa1iS6swHvVbUaA7wkjiK9UoIQeV3\nAu6HLW+ULkBbtD/8koBgrbSeROCZtGfZSxlqdZ9ZT81+cc/gTHMzu6Bddg3g\nP1gDkljXP/isNEhzuLeFWzWIyFNZoDibT+ZslOLTB8oAxslm/4l3pPe8jGoI\numzmfOBKfIBwUwnQ/2I0iyyv0NUPuoYWT46+QGG1C9XOGFqD9Hn4Qs8V7dIx\nOeSObmwZ2EXulVOhe4zwSFEgk9wtl/FXh/I9kMCJ6NQxc5pz8iZXu0Ni7lHJ\nt2xJqPXdaBTff5amwqGWIWV5UTANFN70Zud78vCGWENizM22BbMXop78mkOi\nnMTl\r\n=4L0r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_2.1.1_1546468031647_0.9457299359110924","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-x-content-type-options","version":"3.0.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6258acd07a33bc3282368827cdcf8e00a2c2bd49","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.0.0.tgz","fileCount":13,"integrity":"sha512-Z/txvgDuXqAUoW9Ds7WThjRcLLaQEJZO+kkC1ywNtmgoEFhADYtBWgYlpBLO3++mQxh9jeyCf9mG6ujr1awDAg==","signatures":[{"sig":"MEQCIERLxXdfbvkak10eOnwRU0S5oQxAKBLji99N5HHNUlT5AiBrKTPO6joOgyQ476zSM7ZtRRnhPySWH5DPPpIvfULu2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXLz1CRA9TVsSAnZWagAAnNYP/0Jz4ETmthKTe4tTj/qh\nE5baoRPTHCx8iMmvLTMzRpGqfSyetJ7pVUX7zSc76MbZefdkiVv1pbFlan/D\nBiq+w3F55vBLBq8gLukYtQda9uKutUo7m2JLL06TM7+/5MNzIpzDcJscSB3X\n/V/DLe5td/KLYqUdBCq2tlezEZLpRrwtfCByigpXZUUM3AshDb/PhhWI9WJF\nONSPPTkl7N08hizC/QqxXL1IC5Diu9oly1RWeE9aIHG0siKzGRhvVfYrcj8e\n9dWDkkco8pMpk1viUI5CCiOfMCBbN2+IarXTj0R7joZnVC09Jp2aWPVIZg1r\nI9J5KVP5ti9LoWHCM+aB+yJU46ErOVlr7bF7rqv5/8vuO8JT3+pZHP6DElXf\nafendByxJXyeRtMhTbKmju30D0QtDQaHd5A/Gtk7dfaBN0dktlTNWPCdyTzo\nSvRW+Rc7cytyFIhAEtDbuKKgct1+prFxRQojXqzIumoq9GA2gFqhlhJj66G2\nCsVc5Cd2YnlzMMiZiYflWcuVqpmCWOOpD6Cybh42gEpA3LEagfdr9x7WYlbV\npYs19EXf8t7z7g/YZqFyHH1lgk8EFYpg4jC3QAI48FICg0hdnY4WB7QrHeyz\nwV460ke/3Lzx157HLZn9uKTN8dSwerPGQKZCN3rMbdiL5YvN9uAKkrF/YRyt\nKbvG\r\n=uOc4\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.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","directories":{},"_nodeVersion":"11.2.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.2.1","cpx":"^1.5.0","nyc":"^13.2.0","hint":"^4.4.0","eslint":"^5.13.0","rimraf":"^2.6.3","typescript":"^3.3.1","npm-run-all":"^4.1.5","npm-link-check":"^3.0.0","eslint-plugin-import":"^2.16.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-typescript":"0.14.0","@hint/utils-tests-helpers":"^3.0.0","@typescript-eslint/parser":"1.3.0"},"peerDependencies":{"hint":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-x-content-type-options_3.0.0_1549581556672_0.9207979882982162","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-x-content-type-options","version":"3.0.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8ad735c741c416a409270533e86588caed6a7c75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.0.1.tgz","fileCount":13,"integrity":"sha512-B1DSYrGiBpjGybaHrnnxewXOCPFT5EM7h8ZgUt+mtj9wdrIHMnkKkRjp4WAkhuJ3R9J0UcE/KAzbLymyVkMV5w==","signatures":[{"sig":"MEUCIQCRyA1vl7BoR4dNd3wcfO9NJVpYX3jthALNyRVC/tSsVAIgdpApww+xYvdBnfm0l/f7xiCTUq3Vb9TT4DQj5t4B3i8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccEGgCRA9TVsSAnZWagAADHYP/RCLsnhM4KvD4HTA2pbu\nXrbDZcyRu0yzUH2doV6uvybyg8DYaFb1KAG+IgN04RutecxAhERgoZ0f/6Kv\nU2+oWs1+7pt2CtF1e7PBTWT1EYFZcllf9+h2MbK1Brz2lm8NKYsf8m2wjidW\nrfVhb8mUcb1Tzay9aaKB5ZJ3BSlTiYz4pT5oCwcmY+h0RrK56ggLXJI/HEYQ\nQd6PNfvsHchlAX2RbgstzjHlieulKqG/cICsQ/mhjvdnV46yT/vdv9uAyhvb\nI59etsXIowIJlcZrr7n+V+8y1WGK3/kbZrl8JPXIUr5c1pfjgN5o5ao9TVut\nGQi3G+v1x44OYYbOHDj9aU8Uu1e/YFMQRNdyoR7N9XIXY1kvFLP+1HST3+MM\ndQVqDk6QjE5qVPMlZFVZy4oDe4j2SJ0xBQo24R4Pki1FwwWndKpFn4w4lePN\neMT1L8zvKXo3cN6CJSfttUwnneTrWcOeKOAyZk9ZULkeBmpYAyP15KZ49u1R\n1s2iXkVD8H6lD3+KGv80fm7F3AuLx1c711AGu2LW/iym58/Pxf3bNBtpTI3+\n1q8u33kLhvOqd9ACumSTNYdFAMQdgEeKbSvXwJvvL0slD2wZcq6GM3YQIJVw\nsyeuoylXmyAyOUjNIEyxCnNXEetyLnRkkCjjWLqtSnavBH57QDyN0qGwBQSC\nHDGK\r\n=wGf4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.5.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.0.1_1550860703840_0.9923015197771574","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@hint/hint-x-content-type-options","version":"3.1.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.1.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"bee87c54880a687f4eb5e3ecef127a383b8b71db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.1.0.tgz","fileCount":14,"integrity":"sha512-8mBrHlg43aetWC1OBTgmxDtFDkx3JmuRadbTXqLoBLBTqB0gHyK+ilppsBi2tKvJcGEHER7iJ23yWDu12DHNzw==","signatures":[{"sig":"MEUCID6NsWLlx/9rBNM2kdn/syGyOSG9U86++P1AU8ylzwGGAiEA8ly63YDgQ/KzzA6u3f9LTqyHzIItQ5e/2duA60rdZRo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":575201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc24C8CRA9TVsSAnZWagAAKq0QAKH5cnAtHNOY/iHsFk4R\nziPRwlPCXzDw5OWnMY5/NirBsgkEYAz3F9raxonpQf0ls82cc6ydqK/uyfsZ\nY3UfQR/6VdhrxPqK1004bGGidRoSmBWERsH8W1zqEWbiMmk5W4OWCQxPL0qi\nTAYzi4wzyE1Hiym3MwZaAnfuiI96Hw3x4C9MX/4tWKUAPx6RijPoAUGiEC0A\nuf9FG5RmDUujbUGvJ2rPxnMjp32Hj0Vfxgk8wrgzelwum8rld57evr8gclSd\nOQf/LIWk7BenofFtvEycYaHPlPCSusIm8uprH6R+lhMZsICIvMh8QND6i2WG\nnpu2RNO5gmTd5WXiK6V35+up9PMxQdbiMJrUbLUQAym77D43tuQ+wC1965LK\nZodNFDZK8bzXp9pjcpBCYJq0bfOR8KBd0WaEq39955puoktPhEtJBYEzGdJB\nY9FK4yAprgh1mmngQ/6JUXg7J6doQaqpqY9fUZXYsFxQSsvPV9GBiLDJ351v\nUC9Za9utvZdOIbhC9fMKGDn1rZaxn1quA7+VtPy3AQOlI1tM8wkY5OQWzoD7\n0nvVyf4QZJvevhbj0Rr3L3NhRJ7gOWvGH7yjDSnCf6Y50sxmal+4l+zxeJ91\nhKmz9ImxO6zKdn/H0viELhUQhfAc4HnvWPUYoKTK4+frMIhJ+gKCipkXSC9N\n/C/s\r\n=4KEm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.1.0_1557889211522_0.48072847998092016","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@hint/hint-x-content-type-options","version":"3.1.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.1.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"be450bdcf0eaaed1d3a74894ca589f557e939cb4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.1.1.tgz","fileCount":14,"integrity":"sha512-SptWbGbFBi2QUERuIZb9E7HUgZ4h2H8L02P14JkL31rOGqD169HjTUpSdl9Vgi31HjPiN2rbhOtzWyudmDSuZQ==","signatures":[{"sig":"MEUCIQCgMR/mP+s9WdqGmtOnkaA0ztoviccI9/UyDCuX5BuKywIgTFL1gHYwEmSzxYPUUIY9xO3flTJZ+1+d3WlCo92C9eU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":575201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25Y6CRA9TVsSAnZWagAAEs0QAJTWXoraV7yp6iQgXts7\nFlcqgwN+tY2WdqBL7Jed+CQqtbbdwhdfLaJz86H7Zr9Df0tKbK6vX9tiqTiX\nJI23mlo6fLL3pIfDVpKEUYi3Gp/QCJxw/F2syJy/cq4KqfEdRe44ihc8PIYY\nbgs7qkAR6CxW/uE6RBlWjPu7iQxxoNsK2E3qfc6Ni9qKFkjE1BLpulkItzeN\nv7+NQ8BpBXpDRHb/9aWxqOeUHn934pVWKLFoeVsjYThnPpKQiwRM2BCQlari\n6JELnnQInM150nLtUDc4NgOiFgqcBztPTrV6yGmyAa4EPSmTtKbumXzkg2Dg\nFt+H5W2duYWUn4Cyj1M13gNIjHI5UuqJkOLdK1kzdykjz0eKk7lAMiD41ijV\nYqHJHmCsXK0fAMl97fODYp2WrN+chL0trgo3CpYmnl1qYE+lS1zVZjfmY2jn\n9dN9660NPhd7Nh8U7URlwMDgA7a2UdsVqEZXz6HdImzWTAmaDTsW3fPj6OG5\ngubIqDBrsiT7x9md3vOutaQWQ8vBoBe7+IHvnQgX4XKZcGLqX1KwB4o24mxR\nGQTaQpPJV9eIWuGNP2ljm0an+hAAcBCdlehb6Ck4HhaRtQCItlVpQtdFCE76\n4xCosGXaVz+ws5XCres9NFLUCmAOhODMgdHcUWqJ28E+tqNDYNG/Z89Getqq\nwA1u\r\n=1n7x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run clean && npm run build:assets && tsc && npm run test-only","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.1.1_1557894714110_0.649065833164487","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@hint/hint-x-content-type-options","version":"3.1.2","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.1.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c36cecfbeea91ddb29e28b7ceca2b5d3cc4e0370","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.1.2.tgz","fileCount":14,"integrity":"sha512-qDYvNQcnOESvLmccj01Pvsd87abkb6wiqPI/KMQP/ftR9Kya/bNK2lkfEJbrUgB0GfRlq8i4ss/xeUK4+SWTYA==","signatures":[{"sig":"MEUCIAwZNkZJ9vIZ+nA/uv/ui4qddSmPbWJHFVpmO44fi9EuAiEA26tOCvRFghyL4X3WLR6S9N7wJRpNptGWr8KrBWpljbo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":614099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sF8CRA9TVsSAnZWagAAS0MP+wfLkxt4qIHqX9F7fzSo\nEOsIhainz98qqzFHxlAS6oILd4s0UpD9KVvWJ3693qkFO3PMb/9NTej6vEd0\n9nbiKJwlW35mveJrdsZiu410wBywNyp5CBr+fdL9tmfUBEZ2Z5f30zmFJADS\nwpb3LKcLGUzH1WJjuB/iD5INpmFUg0C9xotVYXsUypzlZMmHCZqiCO466Sz9\nkh1bu8QEe0P/KPqk+A1sHllr/bqfzkg2ez4PsAdxQTjvr633bzBRviRfYP7k\nk8+rX7W52Xn2H21IWbnK5jHOCqDgUqGHZwhqZAS0+rOuizJy4/+kqpOEgAR5\nxQV42V+V/cPjdxGwAqvUWtSv3Hob2lVXSBs5V62hd+8XGw8wGF9TS4ruFTVU\n25KE5BYZwVE7H2FGtx9o8/E5KsKdA1AOafI85LoFY7K+CbNqNC4TsEOdccfi\npq+gf1SA6aSvqfSH2JJwfD/M01xlKEOtDJIivqe0cO4/2QJ3C/1DbHxB3sMz\nixXmBhR5OqkyGwMd62JUPKxRFilUsDdp0h637upBdAK+Zn+lxafe4kCfIZGy\nYQonVI6aJReGU08dS+al9rW0BohIDlcFN1AlHSBPfuVBQ8dRp5s3oWYQA/81\n9qkDhgnp44+z4Yn54gsALvU7RfUbojXGbT3y+Xi7D/hnsb8LFGOY9ZzIMlAN\nJUKW\r\n=1F4w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.1.2_1558626684097_0.06897447018874758","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@hint/hint-x-content-type-options","version":"3.2.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9422ef19586cfc9c0a2f7c50712c11c51b1c96fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.0.tgz","fileCount":18,"integrity":"sha512-KovvNFZfZoAoKT2VMjEQ0pzVxdZKwT4M79O4VjhbLKYZ4iqCHtk+JbCFqAslrOKqKLOe2e5Av4bFKUJs5JLuhA==","signatures":[{"sig":"MEUCIQDP4j7jKuMB5TSVaeF1gLB2oMyvkAhWfxDXq2HsjQuMbwIgaWhoh+3P3ZnICZhsrTjNvQvigMshADXjGbndaHvkDVw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":639624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzbzCRA9TVsSAnZWagAAKHUP/A68gAV4AyTc8DTEi6zw\n8ue06L9mMWz1IpU5oMEAwTkl4mZG/d8odbd5qM/4nVW7kQ7MXoFBlHKMqKnf\n3IYmVczlxDU4tX7zr2aZLdo2TQcO4TI92TpXlOP5h1IpA+jgaUVSOzB6sDJP\nOpuSaPPPHVmPZ9aitmNs9DghlrAfn7hqDCLrOROj0ZrmKbJS14AKqtBSRq03\n5y6emou01wvHt5TZ6hl6mlRzeqKE++LaS5ynkn2EJ2vTzfQH43/R66DFXI14\nRjAsSq/dydgPD+zG/jaZWAnQGW/mVedyl6VGyYQ3zKQu1x/2rcw8yZQVu5L8\n5AsaR4ogaAjHlp+7E06OrHY2uRCkXllhMUg3frtnXKFvvDZb3lZ9pm3S9NOq\nFgDWgCIlUiAHyMBWyjc3cb/Jb5zriYLrCt7TE5X+rwDgGOhaFyfjaHztqrX3\nuCKA1wBRjzg5dAZIaIGPtbYfW598RUxmo5pk86ZLJ8tvEnwqIFo2pysruXN4\nAgmGvlLaMFPGUyJfDDAFfkK50NTx5MgRfQU3/YWFTNCW+Lt9lPD94REszIGV\nLiZW+TygkJgXVRER+kamD/TjKj/LaZt8vwiJiTBaWEzzZwQDQPo+3uCwqBhQ\nIg14YpxeJdYicdr/6bTJhhN2i/EaZtdQuptgx2kdDD+adodYj8J681pEk1zc\n3tcR\r\n=0CeU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.0_1563899635304_0.5570581684141633","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@hint/hint-x-content-type-options","version":"3.2.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8ce1635a0705daedf38cf8b2e6d25a5dca1b95b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.1.tgz","fileCount":18,"integrity":"sha512-bt6I3JNoiJ8wvkUP/PqN/HvhWvAOkslmG85o4wV+sCN6gIwcf1hax4siw47MtPE1ZABVfXEKy5kN5Dc9C6WXxQ==","signatures":[{"sig":"MEQCIHFSr9y9KfLiSRfl7pdA1Inu7KCoodyjtgKPmDACRgeBAiByIwHTBXi68cn5m490/J7FpZFqtBhVdyqLYshDj+MBkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":639854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMu/CRA9TVsSAnZWagAArTQP/AxrHtqBT5GM7dz7Rejr\nhXxy0CgwcpCKq4J9wKGclg2fUH+3QScVSO7MLMWZ1OmqBS/KpLk8WQqyE0PF\n1/p3R0tofIx3VCCH2Grs/jPjdSVhkmljbg3T5sRfrZK7Nl0rr7DfDkPnsMsJ\n91h/Ka213b3EuFKBDexnBNtzCodWhi4yFLYiXrgsgdP5W0CThR1jXHyqw934\nKiWsVmllJmP4FJLcCUh2NnDxeBUrYF2Zk6XR3J+U9iYDjs9O8MldNeRWQpFP\nRfXpV0vlvzvrlMh9GNsx7MnewNb6EODW/7HqKM+FIePWhvVp5ikh3H8rYjsF\nNyRYNNzbPPK8wDNCZX1lRs4+/CPwogTW46phFH3JRn+7NyABphQZaEVGJclK\n5w5AfrBTnnunsPnKUdYZKzfuoLAIsGD/YbSW9QDRWrdsf1s8tOaT9I78T5wz\nsrEqJat3vcxBFCSG986FMH2TEY4j7v4QJq6lBadc974+41O0S1bnP8FF0FnU\nHxQIKB/8gwFjefMgTq7KsqN1Ju3VXwtixW7yU6R0BDHi5WwRwPWczm4rdqt8\nk/UJQ1Y67VQFLlpht+MvLuoEc5PWeSTkOSogYBahIQ3EjXzWDuO6kd6U9S2V\ne4Deh2MQLl+g2mg1pXgVVjOhqDPSv1y6Fo/HY+SIMCBA/PrR3U7qpui5nQmR\njJVA\r\n=Xh0I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.1_1564003262587_0.8981802764477835","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@hint/hint-x-content-type-options","version":"3.2.2","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"19d9c3ada0d8b5cdaf044213dd0e15f04d9090db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.2.tgz","fileCount":18,"integrity":"sha512-c/FsltuNLqKuTCN62SjqM0ClvMOnxlj0EpaaFZcECKzkrYX6Pf+AsKQ3YULYdRU0cu73MFdfl8q0mb1jOtzD4w==","signatures":[{"sig":"MEUCIQCbfeaUJR4+cZacqP1zzZIgnfy/f4zNZHCLU0H4TeL9gQIgY5lmECuegKlfLsa/3X2EDlIHxTmj6lGZ0EJM5u6kiC0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":641598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJs7CRA9TVsSAnZWagAAwHAP/jjpY2FKywSACYPO43R5\no6TUOA7OYtpsGq6P1/RFoyxVHYz9qKI1LuC8I0NBrXlGnNYGIde1ZNMxg1FZ\n0d8yPE3N/0RohkLP8Xi3x2LOTVXxYSSoKWnFJRcH9t7VKqWYmERYQizDvEQ6\nLw4iWq9y3yiVgfZ284uaAXUrSjS4sGJga18QV8fAx31GKTX1qQvydcQmJBZA\n7kvJaE8aNYkCnpDTZX1Yw774luI+cExc6Y9Athovxww7krQbEZ/TUpOQVRTv\n/41c24pmZK+RLYBeCzelVtNwqPNilE243TDDXhwzWE92zOhDpEbRpnE/I0SJ\nGnFTxfj66sE5mdwrer44ElFLu225qShYPtMcJukbiht/ch7nOggQkVIEA9kn\nPyGdcDzJmO5Myb6wlVloMdkOKb+VmzHpG91nI5PFCYXJs9tOH95rbwfhb40b\nweZ/GwQmOk2lfXit/f1pmE4PDt6CJd+OzHBGu0akvLOhquoyO+qyxyXdvdVn\n9yinnuR4//WpgTtj+R16L6cOo559ZX7wNKPMxfwx6je6vh7/tU39C3WoDtQb\nIZIiM3ZxScs5y7F/OrcO/GJ3+ykarb2mV8FvtHLUxR91mOAcjQHZucmoGU24\nqxU4Z8tzQ0F+2LhPrWm3TYTkUV9FcBg5E//CLIAV/CT5cVnR60uresaFAvGX\nQ8VA\r\n=5JvS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.2_1564515130940_0.2859724383127087","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"@hint/hint-x-content-type-options","version":"3.2.3","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6a07abd217d5a28f4cb6f964a3012c588846bd56","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.3.tgz","fileCount":18,"integrity":"sha512-21Dl5xLn0mbKDJpnMQUTjYe5mtDF2T9idB0C+vdfiT5EMwMmMH7/kHRLVZOdCqKgSLqH2b34YEZWUx1MF/H42w==","signatures":[{"sig":"MEYCIQCGEFfQiuVlIPZz8sAa+WJES61xYAnujNIf7NsmZGAO9AIhALOAIIE5kVL4O/wNHACU/ott7WeB3cpNgGosrr1OjzbR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":643211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeZ0CRA9TVsSAnZWagAAnPIP/RVkcXfKUTLDiwolPl9W\nDeTvFT5qiRtxe9ba633qXR0vtvhZZeSNjaeomv2ntjBGq20nDGxZ2ct/N72N\nkp2SaeanZJFQJOzf2xZ5EtHs4C2OLKAuZnvvNIR/oNDqqpP9PIsWBgJrhtV2\nNCow01Pebr+peXIMsUMNpplvZMrIVIDPTCa2KKLUoGMZ8vObq26Sj/Ywf2I1\nkTtbJQ6PmFVZYBvjsVg1wEx+cp1JrIIsw2oCq4PpHvaL/1jvUnBQuGvn2ZTV\nOhvdDHe7clWW7Nafj4qr6ArEXqIBJyveO43vCFJSRjezPE8Wk34+5Rnump/l\nyoRWFe87xDZVrd9Vt8h7Sbe+FtkfYR4Hmb47d+A2oOX/Nfp/Ltz6JGYeRKTG\nLtXC2sG/D50DidUfDpuUBDBZpPKa8xCPlOTR2Rm9ougmfrgY16BjXpZx9O93\nLBY4pSvWR1CULQeHLb2oTH8+WhVBe8pKto7c/ukkrlc35ksoRycQ+vtPN6bB\nFYCCDkbzPoytkcHp6hX7mIKhyIPHz+IiuvyOV8ukDYy6g33Pevd20Atn76IX\ncFhG+lQxUGYbyaSfK1HbXarcHFeagVsY+Q2AW0/O9yJgLuZP+f+kAvssbaGc\nVNLZLWDS9TFRqzAK5mEkg0qCKrHVNPDWyH/u/ZzEyxwI65rmtR8O3rXxQfOD\n2Dok\r\n=yhb5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.3_1565124212007_0.6858543771354084","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"@hint/hint-x-content-type-options","version":"3.2.4","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f1db9527b189efea1fc14f28d3b9deef68b62a9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.4.tgz","fileCount":18,"integrity":"sha512-NAcm9wocMOJfGsiXbd/Pt/ZMz6xN4JijP03oHC/AUh7sSbhZlAnQlDbLH/qGNZAvODlMYE9DehD09mhoumW6ug==","signatures":[{"sig":"MEUCIF0tMUGiGh5f2kKu1LP5uuHiO/WOhrxgyoidZz2I3YM5AiEAj0MagAPYcQP5RhLi0f3sjbW0Euqq5F1iH+2DD/kEv9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":656115,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhe+CRA9TVsSAnZWagAAiaYQAJ6Ns/DkdYxX11LKqvSP\nVyZJmd8y89mSzY84mpjECNokyDwAVjC2sKOMm2GfXbAlbnvfNkvt2hHjEY9J\nCRdMLFxLMsDY/JO8NHpbmZEGXmKHa3z920YQvLjo0GA/d6FxmtcwDLcMgxAm\nRCOocunfOryCPrR6qDDopxcgJ/UJmCzKNJR6/i/yiDfVJDvik5HeUxbjRwMo\nAhirdZrfBBkUMxrBFbwlKUSAslfj61uCVszW73dSqFp591VsgpMBuuOgLI2X\n3EsxQszf0mYv4DqbHhmWONdNFlIa8e2iaHRAa/5pRBLTtdio/FhUw2vPQL0q\nDvt1EU7gYlVhYgAZojB/CPdwUPrzd5wjINR2VBS6NySE7kutqzKXf3K98ATa\nr5gfJTaHQTd134vJ8dxKvWHFjG8sZXbf6+l7RvJwjJjClvSTbWQRzWjbcumM\nSk9k2F2hc+oEKplgQ1COdWmRj9WWlfca3ZUZAGkEBRYAlR7F0xGWK1Y3f+xj\nVLQ0I2aoaHEQ+xBYLvq1Mj4of73vCxMJXf6FuWO0MsAMoSawpAbabgcfNhuZ\nFlcJUV7uFUBRnYpohRBT9lWuZLoB6UaZOi+t3kHqwhN//hASxyPSnVl2MEqk\nd9gJlY7TRczEzj+aixARx2ibbbdQLLu3dqI7H6ZrTfjs22K1c+9gqkoXCM7b\nd/nf\r\n=/NM1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.4_1565923262091_0.6739324163488514","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"@hint/hint-x-content-type-options","version":"3.2.5","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"eb5544769afbb90b38ee924b868367ea9079d3d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.5.tgz","fileCount":18,"integrity":"sha512-5dbFu/YJlaTx3dk6k4QjX8Cvr5VlLIRUXg5QC5n1r9eBafghHH1JcYCLPUwJSbjuMT2HaNhJsRpjSjU8KihGKA==","signatures":[{"sig":"MEUCIGJ1qHO996eYgiiPDhhGI1gp7tqFtyBKW1kevfbKBY1BAiEAibs+4PZRbVO4xUe+SDX1nhl/G7ft7OWaWOh4ZhtE8d4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":654587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/WGCRA9TVsSAnZWagAAVU4QAJ6OUirVXnJXrYZkIPVz\nUp5CP+qxbt156oevWgOu7XJ2uzpSLz4QCW8pST2fC4csaCTCasahKGf3nq9I\nrA8wx0qK2V+om1cie6Xxbm4fPKWgWREEdzagRH3JXOWu2lfHx5IpfqL8WTap\n3BLBxz8IJr4BARsMCmCHQh+3UxgVyxFRxCbBU2kyVOt1YcxIT4CcqZcQV5E0\nhSwb5BQBRkB8VP1ihz6caM17mgz3PnykyuCdD+Y9gXfRbmCSMFDS2hKvv1Aj\nn5PKdLFQFzHhbfsOLFWQ8sPH3CvaJQIgjr9E1pMCHyVYWE/bELBw+3RgLGJo\n/TSGkZFKP126PhXsmsGcOUXw31FZqSOQWPkha/RGxteYCRR13LV/mBxPBzKB\nq53J/BLrOk0tOy2mV4b6wxSL+Smf5efh/fP58cWWIR8Fe5W/BnnAzRf7dXPQ\n2+btCyHFa3MRR0s3sc8s7iNrG1I/iZvMbMLXfw8LGP0twbB29uSP4itgFHd2\nP6zSl7hLdlsR/Y7g+4EsPKiQQIx08vh+jt+dGANWeNo9+RG0gA+1rZbwj9Hd\n5Z/GiU71XvG/VmwUSIiQHAY88r0ttXWg1m3IcaZqJVlS/QAfomw2RqewnBws\np7x+siTY3GGjle3WRlfyBnjfMUpgJURx6/Xul6VJFKUAlS/qxpCsGnGUYlMk\nG7ao\r\n=tO7O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","engines":{"node":">=8.0.0"},"scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.4.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.5_1567094149767_0.7325550560598155","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"@hint/hint-x-content-type-options","version":"3.2.6","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d92a27c122e3639523ea5b0f1e91d9275a9a1236","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.6.tgz","fileCount":18,"integrity":"sha512-hh0OnbvPkZtg5UTwVNRQnOPY258f51jgjtbbv286smoKDzMvFi15XcA3rRjaSbqdNrfi0k0DWaCszYtKrBebRw==","signatures":[{"sig":"MEUCIQCp0QuxpGmhXTkYamD7qIWfndHbXYNRu/fVAkJe/1oWSgIgQ+kSws/nwHIgdgaiOHMLiirt6lxVs6Wy2/2KnI+i/Uw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":454348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXYbCRA9TVsSAnZWagAAYSQP/2QpUUXPHzgE2OdYbxad\n5BQLFprRPcF1bJ2VwvHHxWEIx6qW03RFViiPNQudvXIpI4OgpVEhqJ6Wa+Xd\nDrxXXVZ5jVmeg57nWCysyp+nvxWI8sc46WwHM5EtPfkIE/3Lp6MfHw/VhpB3\nncxv14bgTZCD7z6+U8BxaV9oWHOVyk97hFPWn2vHZiIphGco5vWNGXmO4bJN\nFGH+woeP+1exZVJDjQbgzumw6nPvchr3nNNgY8HR7h0i74nwI9HQmtleCpMu\n4w2fQ+aq1FLQow3tMBUVJFXTphW6maTq6aZzzLAGssh1W0Wol+TXti09WgmC\nM2r2SW5gxNBLq3WxsRKSMkxsTf5liIxuTeJm00bly+WSRAW2lBYsgFmT4B0s\nc0GSL+oZJSEaH1ljp8ck4Q5vbsx63H/l/vG/hUVNdIxpw60q+YiknU2An0lU\nEyiHnhjUVPzsmEDyd/31mbUEuaQ6+BV3IGk0FV1Jb/NLel9vapAxmtNobSe4\nG+DZiO2WoX3hN82/nx9jzTff6KV9CqksCiGWEiRcrQEzbgbL6KZnMT/dPCuY\nsuh4JhjUk+FpbrdZUp2DHz3PVcpFLCM6ey6z/YNLlIhBI1SmOphXJGvR3xHt\niZQdN0QFB7g3EMKdgsgnpv4GsVUFLqhsQEhIHE2iK3sI6SAlNZdwBGNeGjCu\nodUn\r\n=NZAT\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.6_1568241178498_0.1338272623017398","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"@hint/hint-x-content-type-options","version":"3.2.7","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.7","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ea6c09e77481e8838ff09ec379cb7837dc4f2b1f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.7.tgz","fileCount":18,"integrity":"sha512-/r/QEqdEWL9AlRAV3s7tIwNwrZGHBxYajjW1wZQxu89IEvbSvWHR66TjDLhM7sMYfQkd/yPYyr7pGVldNDt2aw==","signatures":[{"sig":"MEYCIQDsoNwfO3PosIuoTOpC5Q4oGBLvR/tL6iBhrCewTAWBhgIhAKK3X+x8TlcV3cOriRM8axbrcsk8SqGilJpR2uS6Ydog","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8oaCRA9TVsSAnZWagAA6vQP/0s4uK7LUKTxhsOB+nwM\n6aIsfzd5A7g/dNEUra3LR1aYKhOdJ9jfhN5lHFkHrfuw01/IpM5c6RQN0B1E\nGaL5lUxWMSwHYc8NLjFMUdJJOPuT6qtpVdLR2i/FdhsfXC6nzR/iCA0T1Ox+\nKZEWxp5/mknXv80li1Ku0bNEEwcLk5jxbatsTjlgkiXWmB0ovAAsCPs0XSFE\n0zrGrN36qYLq7a7Y4lzghXntkakYjRInFqtZwVEFFpKewHzRKN5hduYC3gdu\nRYMN6i9Y2l9YqGD65BxEhoVVyrVdOvIC5iBdQl5M8mdJU17OQhbuGj3joX1+\nBGrm8QK4Hbunxs2lwrxzlA02wAhpkOIsfm/2eKWTGBOzKA+EUWmTcqPJUbTQ\nngWMQUV33Vxl8+aPHTr6sGi1DTeJFq4wusUnAHlXzSmewl2CZYRmT1Scmpb2\nvTH64sgHlP351t6gMh5HN0HU3042y/bi8jv352qMsfOa1QCYF/flL9Z7SEno\n1LUlxCtHaFBMdNXfd28qZ9or8uiuFz5cDgQSIunKWXbriBrkwFYjImdrd+fY\ncAFzkL4LzyaTTJPkD1ArYzyibCt83E64mt9l48ATZGHnvbGpaLRfRWj8efEO\nRl1nGt2J3SwCIHlc98ZDICngL7/8xJ2+uqTZrgJOf545Oo3zcBtMDXRUNIP5\nyzdQ\r\n=y25G\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.7_1568918041873_0.7951653218825847","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"@hint/hint-x-content-type-options","version":"3.2.8","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.8","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"40a4ec32b044ce707307de2df1057c0b3964d570","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.8.tgz","fileCount":18,"integrity":"sha512-v+36cHTwHAXnRIjcSIOIJrDFCsYy6As7OjqdzGci1SlIXovBFuFXMqGubL/cWTrL+1Ti5lQDvKLoEKXIrabt4Q==","signatures":[{"sig":"MEYCIQCL712+qrO9WLU0mKZD86snRWF2BdIkwEkeu8I6+7KdYgIhAJI4JdNN+2IjjXNfJBxYxI/rUtg794MdjpwKxNzh1yWi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim9WCRA9TVsSAnZWagAA/xwP/3pxduCprj8wGFb0/wzs\n7tA12vYVzF4NP9G0RFKhMmLVWmzd0CU1SCVVquyakOFcD0KDF+3Ooi+TwNPQ\nkxVYXSaZ7ia8ug9JPjZmyNuM4vPVujl4ZgaesD+1R3yMDwN4LKmcCzWpDkDZ\nWWtK0uqcWFjfXUg+0UdbFzOAb9iCMLz0KpXdk5iw8oaj6BQQeILq2jH7UYXM\nxXQW1AQBLwFUoqpDpRlY/vtTK3oQXerlyl9iHrdG2jrL3Z6jsqeFpzfJ0rOz\nX4VJgcclGtIQniGUr/JDsB6fN9Nziwa1Z2JZq1tBHyEZ28pnzLiexApwO2Tm\nf4Lxmmx6Bi8my81bBRmJv5yyeSvNVAjkjn244S1ujnuieyPPwXLOcdzG5GFq\norWtf0ev5hMjXDjcdcm/9+riGzCp2L4DoR0Q1t2uq7/Z4w9WXJ8mVMwZIvKQ\n4YMwVd3qBtu214T7sD+5RSOsPG8HnM26Ox7KF6IwIUJAE8y9Ff3Ikkb8zZ1R\nQpAOjSeQ5ygHdZWhcMd9Am4OOXDcipouTro5oQEdrmNTaZhDSTVDeC67XgU6\nsBjwzU+YO6GIByfo39ObGYt8e58D0zgDao4UosKywBSrU+taF3absDy+BA/p\n1JpTOcbwOPNOVA5rfWSLpo87hiCypd36FXFl6RiWMhDqnn01nXOEG+ut0EpI\nfAEk\r\n=e6IL\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.8_1569353557891_0.30464537963984495","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"@hint/hint-x-content-type-options","version":"3.2.9","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.9","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1d3af4eb2ccbd289932f61cb7758c78ee9481e84","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.9.tgz","fileCount":18,"integrity":"sha512-p+sF9Ql//X7xvzcyH1//2VQlo6vms81nKjNagKqenfUAiHYdlph1B9erzpcTk25qdznm9e22pI2kUojG52Kaqw==","signatures":[{"sig":"MEQCIG59tBPRAvmVOugg+b2dL3zFCpIKyZD9HHj+2w/AbBxeAiAk+GbFeCJDi2FfCAfpdna0ehQ5ebHBTaEvx6RB7Q5Tdw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":457027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjSvACRA9TVsSAnZWagAAwukQAJUun+riDokRgsVCVzlx\nlQ+lSsxrBCDP1YKBCe3FjFjN/y/inXsbdeFycvNoujCQN007Izgal3xX/c/D\nU+12afOEShfmMal5oUiGyQxClWp329nF4e9Zu1kv5TanZBfoxcT1+WUkSa3a\nNeHlE5CUkfQYR23vwygA1uScMTx5/QAr4RWNQKWOmlI4AjBra51Qkk4Msw2C\nlAQmvNTsYUWDNbj9kcOkw9m0LaCBQWS2UjvIXCqx5hUMaZacBoTxzVXydcXc\nU9jQKGWwHBSTP/2W+ueRiR9h++UNr6XCSE+myQ96wVh36CMUUfnDXq8xL+E/\n6lP+mmapEA7V7utkQNwywU04C+TgjIuX1IWFqntwlGrcnrb3vI85x7+kElgE\nL7pIR+NOlTH39mSP93iVgdVCuvF/7t6wjBMI5PRJznzsqB8yP3LKzBJT+yIj\nrh1nZOPwghwC7EecSKLaK5ewXU8W9WuDX1PWFepLvuH3UB1+ZdLtAn2rWfS/\nLDyn4K++pNX86+RQRVLdYz7YjtwjJEqgRaKKF8LTR/suPU5maZ08gXpsOF9m\nKQBZhZ8eKaSJIOMVBuzCPFHaLekya4K7I8NaJRYLnTaDahENNnZDQoxOjtwC\nIP8kHHqswONk+wBsgKjIqe6dimISyQWvZrZEVVEislx6Z1b6eZSrbRFKErMB\nhGE2\r\n=jSx8\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.9_1569532863992_0.15777187452857722","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"@hint/hint-x-content-type-options","version":"3.2.10","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.10","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6c8bf249a17de3dfb555e0f50c451a63e90b1891","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.10.tgz","fileCount":18,"integrity":"sha512-o4gHgLQ9XmJZjgUbKr2r1nEV00y5nkTSBekBDntU0JqwQf2fOPezTx7RuUv6ij1WZmq+Flmc0TKXsTR4XbH5LA==","signatures":[{"sig":"MEYCIQCuK8ZSZUoozSwgjXGprBhPRPI40US/zWWfbs+OhlCO5wIhAPX3bhCuHs5kIQRGDkgYd76EPU6kA7+Ta0tuIB3ANDOB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":448888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3OOCRA9TVsSAnZWagAAeLIP/j/lFP1m5X2rS7KU41V2\n7n50gq5P7Bf7HXFfQvIHSzMLUjzjkkLsQacF/J8jQdMgmjNoxUcpzkzTXuiy\njVJYNzgrEtBT+iTkHh5uwqwkY9pGEwQbvpUIXpZSQvgV81TgPoGn0rsZOH45\nFxN/C53SSg8mAP+AEscI/+msuGCluy58U97xmUrUrYsKVU34RcDVLaTxLYNE\nqeg4KHPZXUNRMcpTq0JSyluLFRGUatDVqDCnILbwcBZ1uStEYu76XwBEcDqp\nG5OQ6p1QkkUD03kAt5By0Esnhi6xHgjuAhBQAwjKLKqnJAjzGFoOAWqG8036\nJwhxlz6g4Ar3IVnwM+MiZc7TozRzF0x0FmoknPlBw1pQNDEltwcrZkW96ihr\ns52H/xgi9cvB/3MwB5DqCKa964l2KrTQFZZemW616R0392b238qIGM1xbWkF\nM6w5EDKxpW1V63Z6H+0SGbYa+H1+bSSR2ZYx9ie6KLYXWgc/K+kEc22s7RXw\nTcpt9XGBqe4Ts+4JM8QAV+/TgHuZNny6SxCSI+9jjyxw5Sd3EwZfRHQUGPcE\nE4oMac6ZMU49kQOrrQemSSHW/+cuT4vteo+oIzNyDxwn7msw7/CQaEJpUv/3\nWZTAEVNnvbXkxnWzRMHaVB14L+ZfKoXiWn5rSu/daqboui5NxLKgHhD4b0ym\nanOJ\r\n=Z5vW\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.10_1571255181842_0.6795376836053695","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"@hint/hint-x-content-type-options","version":"3.2.11","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.2.11","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"8d7dbd3a5a3f31f5fb47b2fc3f1f7548015125c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.11.tgz","fileCount":18,"integrity":"sha512-tIB9RtgpNrsTKHt6WxyldeEb47cDfFI/2MNtV0XSQpePKjBEqM7rK0ep6WXNkMuOReH71irY8Jr7NRFhGrdCAg==","signatures":[{"sig":"MEUCIBYvUsGr+cq9JQcfLUWpSAesV6Vbmt1/u7y5aCII+hTPAiEAt5wG6uK2vdB9TrLTfYLm2On0vKWPj114vEe0cGGFQyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":450706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL3DCRA9TVsSAnZWagAAr7sP+wUvNGg2PaOjtlOYul8m\npLp7sVnCGmG+RVnLduHOk3WP7/IyeKmJDxrzXG1TCT9IYDL1/BcxhrcIc2E7\nUFzaQKeCVo1LX/z94dUnLDBb0QhLQBwJk0NQbGLdy0ArOKqO4JD38d2V8952\nsmZlZJurn+s7ewr+nIHane0US0/iaoWv/3ID7lOnS/KHZvO/GnFFNYVRFmf4\nz0M89JOWil7s4SoE1AjKgwC3O9HFZmvlSl0nAZkKOculoP4nXr4fhAGAnEeV\nvRbwYEw7/6oHZWhWt8whYGt1+obswbsdbIxCegx0dPpIoiAYUfh2T2T0YPv0\npiUwnb+jTUTdBYxYdZo0a5nGlSLvvjT5DM521E91oLRzBEQAurLQky4BUME7\nQ2YDmivw9KAVl3kGa451+7sRkHwhcBXh6Ryuf+PywKUWvIRu779O5zrtIGiM\ngefPhOvdaFn0xpZPwMXeybaf2e34zf0g1TYX4iNSkcL7W/4Ilbwnc2ygXFDZ\nI2YRBsnwOEEW9DXTd4EKZMJA4yIZGhk/d7gLfQdbkKYzH3WX7p9ZLJpRpydn\nI/R/MVqmt8HMj+tjeDNjkjNWqtd9EoG5Js/ui5J1a1PZNK2ER/wUBH3NkCgs\nU0sKa21l184Bl82SIofC0317XfdLvyBT7E9HJjm2Y4JwLgEcF0+cz5uXIY49\nzM2A\r\n=5OOO\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.2.11_1572388291282_0.058361577461848","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@hint/hint-x-content-type-options","version":"3.3.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.3.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ec1fa3f0b5140efca9134ab366434dce48e79809","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.3.0.tgz","fileCount":18,"integrity":"sha512-u8m71dxXqQDpoauvIP+cv50xFwbu6HMO0iXjzXESi4chFjSdpB89XUhib+8Z7oNYIJOX2BeOBtQ/YRAyE6S3RQ==","signatures":[{"sig":"MEUCIQCLyRezjQjYEowBDGU1XIj4H7OY1SLQZFtKNk5yN0clgQIgT6Kuzbx9Xu4HGY2caSXHxHhZNEdAJnMo+4M6Q9LQ37Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":537982,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bRrCRA9TVsSAnZWagAATuEQAKSaJGVp8p6Dto+w55tB\niU9fe2pTJhdriyhFhn2/tNYs7dopovUr0GF6GYQTBw/BZSWauerZ/CUzHlC8\n7HpTVqLZhIYu1DtLbB5LNNgES8mqowtcpzhL2MLAFE2i3kh5k6wojfFWa3MZ\ntNspoReirxsojJ3myC2LtTtczu4kFHicaHIJ6VM4Jk2aBTARyy00nk/rMXzg\n7kleOZ3ZLPzJjcBFKqDn/TRsc85DBLvQXRzTymJiKuOxnlHkoRWsgPf/n9wd\nwxFWQzo06U3WlGbV3uhbcgFCkh9RmQqS5jLN++XSZuXhzCqtAm/px9CVGwUI\nRaem1EkcC/KoA94l2VW6lWkqsvxPOjAhUDChioDxKgMNQ00Z7z/peqZAwNwZ\nPsBWfNBE8Gq6bNHulG5FcA62hdeWRHVrm6bX3aTP0BK7nLQT16x+aK4zKzR1\nhWbNvDj758T4514tjcmjgkzFp2ovGvDf/VTitNhNYBzvLCgIyiYdJAnFYSZB\nza6atbmBG9T1t+eDPIIbSsO9NMUruCQ2BHfnrlLKFXdtHm3hu83sgzUf7gIo\nFW37Jn/swRQUsUlRJUPqZfFOxkYs1fbIJVtGLgm2BnbjD2B+D+apfDWurePO\n/SndBsdr3bIAaS2wp12JSYNDV4ua2OouG5IMWCuKMqf67hcLpojg3g6EA422\nTDb/\r\n=8q51\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.3.0_1575335019400_0.9472117183194255","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"@hint/hint-x-content-type-options","version":"3.3.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.3.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"33999dacd554ef2fcb1a48ee883b2a48a801959c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.3.1.tgz","fileCount":18,"integrity":"sha512-w8tYtWDReBlShW8QRBCicvTCXZNmlNV6OafhMIk127l5HCdFsnqcfSi7Knz1040RBsdW0VlPr/i3EqiPeSuZQw==","signatures":[{"sig":"MEUCIDzgRpamwXwrMUhvBN59iS+RKfqVOO37Nu4J+js/68QxAiEAvutnuRCQJfPl28VgNRgCibTBQaX4FwX2lTwURb852tU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":545408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6FRaCRA9TVsSAnZWagAA1gQP/12dl5dJh2JfLIcgVBVN\nFj/Do0yWELyZ6ZOadTfdCqSuhv4XzT65773O7BZkaOb8GUdoDBh6qQ+GPrOK\nTX2XHo+tPfYNtyVHXfBXSJnpdQ1teeVmHkHrSov7ofPfpGF50UktWYS0v2jN\nh/VSguJ1ipRHrEeg38jsGl+ZU1byvWRXw8wFXE4ajhWcz260i1JwQoq19507\nbeuqNl8xCGXQ5QZrWee02KmVH+P6O7VQ3Z5XL1PSNAKdfMmo6tPkzmQioHfk\nyIIk8HtUwuaZGARwfmch3k+Hb5wanTHilX6KUq36y2QHXdQsJWNSWtTCuvOa\noXsRctMdCcP9AKDZFJPrH3QsFhqtHzWiDViEWrqGB8SC2MRibKeVoSzQpeFq\nNPrBTmN1AH6nuyhcR8j6zqQ8CZh8/OonU5sYKYpLu+/LPWn24pnUE4rosWXQ\nFrHOHWGx29rmgCsSafvuIlSf4UGdNKZoXii+tMQycmuWBvaP4YdZHm/7VgPs\naRGYNJcqN/9dZYWcB/cAdSNVVDlfOATMqgmvSOcLhciqP0y6fzjJoAghiyWt\nY/0u3NeUJQCQ8PCcfWmWc6eHxFqUQt66gH+9gv/E4c6Hl9dnNe5Pgt82rST1\n2XtvIJigtMgR/p7rlNXOjbRtGxUFW+sU0K/EuDuycLCQlUCZ7BsjZESqISth\nhTbj\r\n=/CBS\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-x-content-type-options"},"_npmVersion":"6.9.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.3.1_1575507034348_0.7794093786012","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"@hint/hint-x-content-type-options","version":"3.3.2","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.3.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"29e27896f139330843f0ef6eb164d00401abf523","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.3.2.tgz","fileCount":18,"integrity":"sha512-L9yG2YA+AHwcE/QPBL1RP3SVOz5K9KofF4yOk8tZml5b+Dkq0z1W1jIUdfgxrwryMzSDvW9Xp3qZqeUJPUVWDg==","signatures":[{"sig":"MEYCIQDPGdOcYL9Qz9+Lbza0V+LwiDYzauXdDvfOoIaQMqcmzgIhAP2lieoDj7kwyL6pBxUdJqtbiOiSNW1FWDr2fLRFIaZE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":601400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecplQCRA9TVsSAnZWagAAVukQAJ6bVxVhbB8g3cVaZHX3\njdB8YUWKzWedTQWFKlSLrBR2Uai9XxXD4h8b/w6hEnVJ6xEtpMSLnuin8D4T\nSSUE77c3KYdt9BEpXOBI+bYoc7MQUWicPbexZdFhmC7RVB13DJJaspxc23d2\nj1hFzqWbHliMfar1eQgkbm+QEHeOiBqlJLmoJzMcfHIti3G5JS6mZ/ilFJIZ\nutSVXWU4Ff0ncIi8JMeLns2Akjn/uvAtWjuDzMmsHW8NEP73KDoj8LfrmTyA\ngWFNpe4L5xWAC91TfCggXo6dC5MSsMD3qQDjAm7mbAj8kukhxhk4kY/JxDs+\nOkOCT5sGQ4i6hnRI0JsclmJLXQejtr/Cb2swqZnAx/YPoKmnbuMqVRp1S66o\nlCjzxpzDfOFa9q0+nqELa83F+qZbT9BuUYgBUuOo20t3BfMoSP/L2bHqgpIv\nHzV8J46g8G8MiB3FjG98EzCNHxBPJkFbFT+jlPfwCFQZsBEz1WKkRsgg1Pz9\nxWGOFd0tGya1yZcKSpwt9SVhq0HKMmRHBM5fbfEYPxa6j2r1918j/AUFtBo7\n45JDCsPMXJYMxszf40qAiQCYZGBAvpiGYv4Fo/a6A3Et2pDfKdmd3bH4HZUI\nXBMJBwK+1W6EuJhwDL5pNQMn7R3zga5cfvBcjCQqHsrnWXfiVhb/6WDfJAdW\n7rdD\r\n=vg6s\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-x-content-type-options"},"_npmVersion":"6.13.4","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.3.2_1584568655765_0.40755697014807546","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"@hint/hint-x-content-type-options","version":"3.3.3","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@3.3.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"241a5e8a08745ed1f47f80c06a52abe1ed72fcfc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.3.3.tgz","fileCount":18,"integrity":"sha512-Il6wFjc+QecMh0jBcJ2vbhbK//7znTzFloWiXh7ZvewxmjTO4eXgZsSzn4whJcxwc8VHQa36oZrkzGA47uhE9w==","signatures":[{"sig":"MEUCIQDCcc4MF8alfXUW8lCuAFMuGVrFLHVbC0xBsu76fH3qkwIgLyHG9z45CgsixdLMrwrJkMuhchXIgl/qCVMABfifjqo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":603409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel16ICRA9TVsSAnZWagAAKI4P/jOz5BJozQ9sdkLmCEej\n4PaHe1wxLUOoeDKp+yqd+5dmP+tkiPAB5At0gNSJg7Ss0rqyWmDYjmUGimpN\neFyHYAotyc8xDcpkl/Fb8oNFbJ/KcbWjAJdJrh84HLyV9GAbsKmjrx98NZfE\nTN5MWNnpPMdHNBV1ahqmzrwrdBjfZPLKS6FglyFeBc++7jmaw3GtV0YT4+Es\n4UDS+JuNcM9zM60AiNlVkQ6agqV4QFqEo988MLttv1SceKWPGqfKSFB2asrC\nENYUl9Vwi1/yM02X8gWieL3BipKtIjDoo+S9+HLmo8rF97pQNX2Q4yhe28x1\nP5ag+R0t6zKLthFBCceABVxVkocNsRhaFmg6YV5a/j+iYI4RqygwAL0vP2D8\nY6pmQQHDruYt1R+zsPPIwbQgOU8kZLAcx6osbuPe+JucP9JmqU5a2D+PcTGs\nh29+ywlfdFLfFRw3fJ5oSn29YbuEOQTt/IQjRmvGLGpImP3C5cYLcSSRxTl8\nIVOTraPGJ2V/GMmLhMNWcR8YSrGAUpBuANVVyfqRUfF8a5hX3lotM1tGHNLA\nNzbLznMns/ZUqX0EDP7dPQhjPdCughfgvu9z9erYhRrmykOmpx6eWFUU5kzv\nZAzYVEiaNWiz5mph2dPLryJExmSK94uXgEzIE5K7jOz8efLc596bRdMPblC7\nVVbI\r\n=/GfM\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-x-content-type-options"},"_npmVersion":"6.14.4","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_3.3.3_1586978439832_0.1116935185788368","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-x-content-type-options","version":"4.0.0","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"74d738c4762a356da56c0d657cbc4f7c04f42c87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.0.tgz","fileCount":18,"integrity":"sha512-A4CGJNfNXkuyf7ArRcPOqJ/Got2HJAETAd7PVOfeGZBNshoNB4+DCRuUf9gp8GBLhTU8lnc5QY3kSL7t8uBPaw==","signatures":[{"sig":"MEUCIQCbfyovx+Jf1/WtpI+yjqA0Nlc14M40gPYQqwCVvcdq/wIgViMuKheNmRV7Bx6Z2vY9XV64UV7tIixQM4v3kH08+/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":897756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwmSCRA9TVsSAnZWagAAZQgQAIIoiEObM9e4KzKs4Rvz\nAb6CewBqIMCCCQpzDv0JAFfZo/6bagsDn4hT3OXZttKkIHs2yRxMZO56kk1v\nFQGcaNiG+NcMon4X5kwEasozbdRk0M0ccJaqicCFB7RU3V4bYcaT4IPlm+aV\n1n+uglstMgUxWMcMQtx9bwiQvcv40gelNtK3e/qcqEzzdkPN0wkrQuBOYpbB\nqpaGSrvdOFFU2W1lMxKbgic1NhC+7fJgZrseh+EpY0hO5TnHlYnAGnAXxnTG\ncKhL/D34XGVPsn3k1mCgcazylzTiUZ3fChcvZKskaYfUqFHDSvmv86shpcKg\n/6UuDu80GCA6LPgIj335jMSe931t4kBYGrVwwVgYF2EYOajINPxmPPvuzdov\nfJzzr/4jfQbadW5Xru5iAw3BOqGP2cZWg6x8UKWIxxrWO4h4ojOJsLfjheFD\nKv5VYC2tKvuDalO8QAsWdcglFDFSRVEFnAK7S/ycg/T2JQTSsHYPAJGUfDex\nl1Jcsf/qNIHyURMAij6PuRxM2BhvEHkyyLpm89jGG2cvOmEouN5AZNtWe9vW\nSHl9tv1lWH+0oTjRu6Sq/on9x8am3AE4iD3IemrECFnY+F159O1NV6b6KfHc\n24Tl0xLCnKzy8BVeFcctGUwhpGflx4owu6PDvdIAWyzS+72MH+ZzNdEEieTj\nzqut\r\n=/Yq5\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-x-content-type-options"},"_npmVersion":"6.14.4","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.0_1589840274391_0.8116775203011215","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-x-content-type-options","version":"4.0.1","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e1fd8b3741eb01b58f971363057e33ffcbc9d151","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.1.tgz","fileCount":18,"integrity":"sha512-v6HnKpLFcpqmyg6gsHXFSg3oLBrRvgAyy1r7Z623OnzOQIynhXuIvweYK0mFIvlekin69cc/TpeOuGxY8DKanQ==","signatures":[{"sig":"MEUCIQDQb4DafYLaQ6qyeMoV2M7IjvonbLyc1tgAV5KldRjOGQIgc5uXla9+1mZcPAYNHEcBDmsm+cNizBTsdZs9V1LggaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":907930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHztzCRA9TVsSAnZWagAACHgP/iGTLoLb2NiCth8MVqxf\nxjZ4GfKqjRcb63hO2vWU4XNpg2gpWr/CkTlEMe5fOaUr2ysQXqmSCowIhSOA\nQbaIYCV+G/Ii4965YDah10EY02FfaVuFUI1b1+zFoRi2dv4AIq5zJG6EbXYs\nvqo39lZxJG6A5XfGfnuo7tIexOTVqFbm4n7iIVZC089pSb80OdnVctFgPFxY\nynWp1DlZOggKb31U2Iskap3b407JYMnFv99WBuo4z8ipCWZJzs5amn2V6z0P\n360H7B5lQrEgHfNc4mdYa+SbEBqxbLf6sn8Ry6EAeFXMFnHoSAc27Jahg/Q2\nq6OmC9JuK2BpLZV17JBUJwu3cXEdAeJ88AEAZ91eHx/+TmZ3FRjvyUIH+KXT\nkiH94rNVgFU8qdtRcseKLInRmvI3itAwCk+ld8tHGH0jSQpmp4JUPGd8JtTH\nXp7m+IHY9H8Mr1NHGgqPsjsCjBNW4LT0uV3xKacksSm8tW2KuLzxEpkDocdR\nd8JAXMaKVAXGSInIZGiEprTNG/2b+ArPO3TQgmwBcqRQrYz3zm1DwZhFib6m\nPeuJzPs/LKCtad2WKsfMvkvmRalKWLwUYNY9geqSfuCBq4T+dzm8+cB14w2a\nQ9UQ6DerkbNe0sjuZbi562SSDitRzA0iyP6NVgmCBKIstJ1oyMBbPDtouy6I\nVtU3\r\n=JWoA\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-x-content-type-options"},"_npmVersion":"6.14.4","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.1_1595882355008_0.4360593149776715","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-x-content-type-options","version":"4.0.2","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"a2862cc0b4bb559f47935ebbd18bb2d1ef1ffb7b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.2.tgz","fileCount":18,"integrity":"sha512-4vU5f+BYFpPWghKQv88yD9lvZd9Sxlm5t416/M4iJcR1TUdEvxLEA3hFzfU74NIfqtVCjOJGNlZCxw3r/tIkVQ==","signatures":[{"sig":"MEUCIQDmQXiNgHTyVGAzM/ehs9D7FFKnYnEjujiXQvLQ9sE7PAIgM+sNsCho40Cn++GC7pGxctBnQkf4cvPPhFnSBwFAdEU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1106121,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDfTCRA9TVsSAnZWagAAcn0P/2zhyNeJwN84jawf52Qq\ns9yAH/WGRm69dSUR/mbndse53NV8LWR6hUohS0tl+BxJzKc7YvOaUfOkW4K5\nbQSzfTEJuVWrEwbdRZYbUEVW2HgsQU8QIUNK/mwTgPHxoRA2xlk5vBy7ylA4\nUL2NBghA0m74QTsZDswwUtwzgx1tc/9aviBarYSVE0WSPCjc5mHIUsfxoeI7\n3GxLB/LhbUNAxg3+tL4Dk6XkXFrvUs0WCN94jYiDct6qzRXRtzlNa5D4owCR\nH1svtNPR8iPqmGOkyXmqmJbR/uchEY7ttdd0lsnvZolW3wTxoWDZrQ4hN4L5\nAnKOOynBAA09r8N9DLVuHqrvjjzDhQEVwPYSuKl3prDX+QW4rSlnZslxse3h\nu5v8hQHnCU5c8VkIGrzZGtJrF74B4XQ/nuF57tWFBFZDhlmNA6REIoZvvxFA\ndFDa45IwZbS4zh+EGEbSUoA+VsMjN4XP+gFROtBUlQ1UiktLJmKXgJPXLKxn\nSz4crKRXmTqNGH3GqaeFE2srn/cpMcDpxOEowzjXDCG/quolyKpRMrn3cRBp\nWm9jHhdT2BEZBPCFno70wK241+aVBmREPsKVJrzzLX60bee92jx93mqIUpaA\nbbmYSj57XEBqGy5F9hSWuNMIv8NeBZFtb4iLj6Im+juq66orNFpjHiMD+O9M\nFrOT\r\n=8nyK\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-x-content-type-options"},"_npmVersion":"6.14.6","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.2_1598306259010_0.05863222779249955","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@hint/hint-x-content-type-options","version":"4.0.3","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.3","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"53c7358194ad1c27ee4487452d60875e886d59fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.3.tgz","fileCount":18,"integrity":"sha512-gHEF/s0NmqnUGBPtnVZ3Xw7tDtvqPPdjZg3ecDdTz7Gn8SxVWjl/BcYOx/86tYFT/ilhSuR7Ao7UM4cE6lLDXg==","signatures":[{"sig":"MEUCICGg7XOS99Ji6UVGrQTXtUMqz223LW26J+nBGavww6xDAiEA4LHeZg8d23fYM5IPzJ7n7KAWKkqhIJZvievXU7fcE6w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":709484,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrE0UCRA9TVsSAnZWagAA/vwP/RnXflrwJLjzOP5w/Mbl\noX9ReTAeKVIpiBByr1DYpJp6MlncPtHbHSG7p6dN5qkhuTELhndsu8k51WDk\n8Rx2akrIHYVMqp7JYS25f7n4ejciJOgx7S6mHPNG+/bkyqgeVaJN3jYj8j3I\nzvuIFXYn1Zes4/kOTZasyXQw5kBoH2geZXAIu7KLGMPGxtaJs2jNyBW5Sln1\nfysX5TOX5wMNe2Af1HCyCNig/5k26y3RoR6fTisrWz1I4PPNkqmrZ5GpvUIb\n/luWxiIUzvZpBT4kW4SXNYUvQaHQPvNXrCbH+ecbPZb9b0VVo0c0nei42gPt\nuPemjDmbJywiLUpFh2ncg7faheBzCYNedW6SeSVTYEWpzhpmY0mgLTJNurVB\njvFH3/tH06qCG+DPTcL3weckE2ux6wPHPvC1dYj5Ls1qZ60p1dzhx/lqM95r\namejdkg9g/SlwCce3vEGGiM4PrOLp0rwCz5zGtLA+eFmMsBPSnUdZoZaLE5r\nGZ6C/X20mcZRRBye8M9EFKuEruggDydXCzc8FVXgI0Uph7DjRj+D4l6Q7XA3\nslCuuRDnJ5md09OO3e9hAhpiyl2PnMZeZKH63LNdTx0hzRkre8FhksUlkZM7\ndP+ifWzXduIjPk7RLgHp11KME1CMdzFYHKJqx+p2Xz4iqEu0H/5+tkCXcI2q\nF5Ou\r\n=T9An\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-x-content-type-options"},"_npmVersion":"6.14.6","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.3_1605127444143_0.27444165863135384","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@hint/hint-x-content-type-options","version":"4.0.4","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.4","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"468ed7720daf9f4c2306106d85f20f21f219a883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.4.tgz","fileCount":18,"integrity":"sha512-B5SoDOoKCVgVL0rjUxQH+8m68qLMcxIh7IhBmoRzCcHk4sHOQPSSswdiF43U6WuMgCR1W/gUpUFuI/q+19KsbQ==","signatures":[{"sig":"MEQCIBZXwiyuLEWEEUe+cVu6ytMHnf2fquEXjXyeD314tpT0AiAYfB1tRvl2M1F26bkehxKouCtBDhxnSVV+5N3hUqGrBg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":722594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEvECRA9TVsSAnZWagAAwzUQAItD9TvDtvdlQ/Ur8499\nznBnnVbZ0KvIKxyvz8sNDQKl0siySYOo1yAqa9m0Od/QzuPh07RIXqooZ8fa\n31tm4za3qVp5vXuo2y0+SWRdFzUrmZDrT6xD7ZDdxy983I1E9cGaVzWA/EIP\n1eQyMuH1/XKdO8YblCJUGjxBFfepXzP5uUmysCtHonqRtw91oky9tuIHLdYT\nnLwBvcH2x5Mtrc7Zm2rODwClU3egqBbRGJCaqzpr1fYottIuHz/tlAgDPuZ2\nsQlJmK4Bg6icVXtqWuREV50x5hKk9Jdfp5tx70cxBchZj9SNJKUAMmcI8CHn\nrigfVXHHog2UypuQ8cUHNCciydkUJ4uGzIE2U8P1SUIq7/riDPMkk7RJhCCD\nQ1JdWl2F6DGD+CVBlRmcyT23BaGQqVt85YVDqgr9absilwk9eOhvR5zXpg2/\nAexClZFZ+fUcQcDWAWPrWr+I6dXDhyf8qNodDyXo9fwZETC5PkQ6/kg1QA3/\n3LpeoI2VmKrvYllmkt7f7CI5Vxw03i8vriE1+ZVln8FWA0G5RVPtdEj0kvwu\nVbf8e40tfrQRnnTKLJHm8J52j4pWfDE5IM6HnqLnsbcdHw5MfIqUnicJ64+s\n3VLo1P1uPDdkouZfrF9OfjEN/Kc7VTUn0X3T/sBhlnKtyK/UQiR1KeDNLIyn\nuqTD\r\n=fWLN\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-x-content-type-options"},"_npmVersion":"6.14.6","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.4_1612467139582_0.9574164670180916","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@hint/hint-x-content-type-options","version":"4.0.5","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.5","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"28e3f0ca4b844db1fe5470225f1e26adf6e8d7f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.5.tgz","fileCount":18,"integrity":"sha512-pW7J6VQ+oa2ir5Icc6eHLSF0hXfDBd9MjrvI0qdDvYr5gjTN+BsmiEeOAeprc5vFfPZr8JKAs8BCvdwJJcBMfQ==","signatures":[{"sig":"MEUCIQDKw+2305nHAfAdQLEUr7ho/KDKAxQNR0StXnQx8sP+LQIgHqbDDAEC59JdIStNf2H0utMdX+q6RxsX75QOmQhq9r8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":722594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeZaCRA9TVsSAnZWagAANb8P/jIqW2vo5uxH9DjaMc7A\na2eZ37UWnm8pe3Mubtqq5p156yeZBxq+9Qe7I0saL/BywMtGBkwGqYmpvAnj\nh6o8Pzn5ItNgtcCyFwTQpzF+qsASQ6dy+adOYkea6jHsN9/5qqMLtgQhP2pq\n7k97l2a1m6cAlFEEgCty/7NQju0cc4qvH/ptX2IeGAwyYIEhT18tSYeLCpDa\nFzz/h0V8DRtI95uVpVuHn3UxhQgAno4pjCZrZqVGDgAcfkfLCXI34HU4wjlr\n+yz39Pkmc5hQJ6Z/rGV8Ya5YaOx9pmZzxHLUkzjVJ+czWlL9iv3WQwZ9IhW+\n2nOEp4k2oBxVGttjsW5bwHyZvq1JC5K0WOIPMUXni3rni/n/TsTqfRO7JHUv\nnohniPh1pKuzgYau3hlgbITUavfDrX8CggdtnBYNUXKNNetPyHcHgAgLaq1C\n51u/dIE6ZqKXz+mv9LyMl6T05UDphv2Vuu5JDtq1BLSNKhn5cDls+6+DCK5N\n3J8ZRo/YgnI6j6PCcC/U87reLXeFVNfzpd0rOhkHQgNuMLa9clIWhwGyPWKs\n7Eq7q/wg7vE/5zq9y/1EloW9AQLtKibi7qoD/umt6ePcKgMHiqc1bnjZ5VRU\n8HRQPkQGP+yRnVmQxG79+2IqtW8zvDgn/fe2BwT3KMKsFtFohWfQEIoKIqr5\nFptw\r\n=UwIL\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-x-content-type-options"},"_npmVersion":"6.14.6","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.5_1612572249941_0.9714566284696113","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"@hint/hint-x-content-type-options","version":"4.0.6","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.6","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"220e1be4eb8658c1b65d01aa99666e353cb7deae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.6.tgz","fileCount":18,"integrity":"sha512-MJrydUCKAWl1GEQC9oqPXN1tbnJqOgzAhdI9Khvnk9CIOEY15/92RfQQ5U+8iNu0+oEr/VaabpTYZsYCRpW17Q==","signatures":[{"sig":"MEYCIQDu7S5xhbCn4Nbjb/V5FJEgWPRPh5j+S/UwPTMV2fohEAIhALTU9243sldQaLF7or48zmXjOZzXGi/QFCPD7qc7NEAK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":753950,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRKaCRA9TVsSAnZWagAAZU8QAICtc1nC2vluZO6x5KDJ\n/DJsKZ5X2TUfG+dwcL1Rz9PDgYqKXxtS7PJcCrvmU96W+2akDZ4/5swyyjeA\nSasteRvQkschh+1xJrYlTKGwBzqOfSA/ZqNI+eV5LVtkRv1OrpTTgCRG1OIL\ndbitPm2zt7LY269pz8k738NJ69VdSg3Apa5+n9zTfl9Ozac6jgQUyJQMwrQb\nBWxWDmZ6aZPlLfoeGc+0SxxNrHGFbnrT8LSo0Np80PG4/LIIitvyfiySL6uh\nBE3veRAJo5XUIV+nl0MqE0g1Z3WL9tfuuNBGJE9gq74WVo/URN/TCdIBYDqW\ncgAwQ9ADNWUjZ3c2jialZcBEO7Jsh5GCffB6CtvA0GVLIYV96mNiduRiKK7d\n0OgeDw68hAqHB34Ci2U/SeZLRMtVdbAw/6EUEHVSnbVjaVGT66b7NRuQExGi\nWPmOeQ97FNtHt836IlE2MTQxE9Neo0KEZwYGPYymHrFtMwg1OeQX9gn2ypGX\npJ3b2wrcy6VUrntotsek0utLuKTz9gusbg1f91K81TP3lon26kTvDyuqwN3p\ndTwkjL24fi9JM+h+quGo7r5VS1SFN5kcVyWggazzETLXUYdacVkIBJqCxItj\nDVs27NQA4VEl4w7BBVH+p1DRpwTITSbE5dNtjyBUsfe+L0meN1jw4pO/zXRP\nrNT/\r\n=lyOz\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-x-content-type-options"},"_npmVersion":"6.14.12","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.6_1623265946436_0.6842731413642911","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"@hint/hint-x-content-type-options","version":"4.0.7","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.7","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"32ecd3621b4f8eb2076876d1821b527285b64588","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.7.tgz","fileCount":18,"integrity":"sha512-ToNhlIAJCMJGZeETFxtSAJv7GtiDnxlhLY4E4tfrhNcmVVI+ZlqTCSns+ZsEISZukxcaoXX/TFJ7MDV9Xh96Dg==","signatures":[{"sig":"MEYCIQDAYs6m6FImNAZgDakUtUwMq+EuDtwwN07q0+WuW0hqWgIhAKxzfW6NNi/Uihr7+ewkAuyzATIuuFEY4Fa1TgkFb1LY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":179953},"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-x-content-type-options"},"_npmVersion":"6.14.15","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.7_1634833224532_0.5117734942571828","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"@hint/hint-x-content-type-options","version":"4.0.8","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.8","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"964673d0dd3d1b4c97d2d53ebd184ea5ae4764d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.8.tgz","fileCount":18,"integrity":"sha512-FuCObOW1JZIrfun8hl1MvP8lTwUCYLlaW++ux/LaPDYFioGGiU90A19e+6+lbe/j5huRjT14KG5agdThAFmS8A==","signatures":[{"sig":"MEQCIHNqTOESL0AqkGtKca2qqlUo7+XrSPKQUMcqkIn5CdDBAiAkja2g3ejasKGjB1SLFBEJbrnoAw2LbUj04y1JHFrNWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":179953},"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-x-content-type-options"},"_npmVersion":"6.14.15","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.8_1635537437927_0.5030105713340631","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"@hint/hint-x-content-type-options","version":"4.0.9","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.9","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"68ad52ba5b7a9dada26f63d8adc4a2b0e70c0a7b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.9.tgz","fileCount":18,"integrity":"sha512-PQQi8QR8SxZTXVo7BZljIOvitO9CjX4r30UvPaEkGNUQdEMkJbyTGgJ4zB2NhI2GhsRRSbQ18ENe9p0tDbSmcQ==","signatures":[{"sig":"MEYCIQDgfeB2T3LP4Jl5XEjdlcqS7yOsNEf1oJ85dvVHgAWCtQIhAI24G6w73+BYEruKnoA44Jk2mBPEH/gA3zJX1K6DXqsR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180225},"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-x-content-type-options"},"_npmVersion":"7.5.2","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.9_1636050620401_0.4979747090076032","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"@hint/hint-x-content-type-options","version":"4.0.10","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6839b07facd60abcfecc822834ce0e5bfecf93d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.10.tgz","fileCount":18,"integrity":"sha512-Th0wvhBbW9NRnG6775OKlKZUKqtEgHBRu8IIzYuSaKQ5VD8cteQ5NOi4rdoVYHEG5k+WNLvcSraMusJY4SsP+A==","signatures":[{"sig":"MEQCIDmqzRrQbIxxWINCyhDp59EPzoBDGrsyiA/rerPJFHNyAiA3W3bB4MPNucqGveZW/iOs47C4JGw3j3Qii1QHIIhCQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KTOCRA9TVsSAnZWagAAEU0P/AzOvRuMyXz4ZpaBS/xW\nX/YsHjPi/IWAy6lARvmCMov+o3NHJs/9pxS8fJnbN/wYxnXkIdtPrk6acfVJ\nUYkUdC6OR9RIBLY+ReEjUTT3iLwZD3+r42KshsciMSbOdo2QSOdmY5m1P+9R\nIKaJi3FfPxEw3vTag4dokspElw1XNKhYP0btvvfCYSleijH92aCQt6cdfMf1\n24hjVhp0dNqYQdnF4nwqf+evrCtZ5O00i/K95IWjznniuPSkI9ZRqLmI8QTJ\nSM4KQQTaygQMj64KMuE4T9fCPGPa8EjkXx59P/7O5NeJbXb8gBy5SBG1Trke\nTNXd8OxG0y2edS7Au0V3ukxeN6iPqKW3JIp07CxYof4TM4UCkNtYyPJCk4Ib\nan4HP8/FwMu6HhrcXWAE7f4imnJF6It91l7NOqHWA8SrxsQhv9+iBEfFoUjs\nxCho1fkPUnXL14FcvAP414BPhMis1uhGBPjVLpXDG21qtR1n37cYma2VLflG\nVNIxbVCkiMV5U67CN/GxMHg0c9pGzuv9U8V/f+3bz/s7ncg1b/Oi9hF0iZvQ\nDA1dJjBBvlMWCvmSCg5XV2XDYnqsNNSWDzibTF+XsFrI+G2PtcR65/obbuQc\nSE8ZFglVHGXNO4T804WpLCXOKq2Hw25JoFUWxozc5jTxEL/utv26U5L0l8NN\nHo9u\r\n=QbCc\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-x-content-type-options"},"_npmVersion":"6.14.15","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.10_1637007055465_0.16548798684966592","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"@hint/hint-x-content-type-options","version":"4.0.11","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.11","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3d50677dcaa049b24dc3f629e7d2a8693cdb29a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.11.tgz","fileCount":17,"integrity":"sha512-WzU4zQkNTxPI9JmXl7jIx0GSRHw3FgC+QmR3840A/k5QAFHNnMYC7o57sENt5bxgYx3lbh84KhfvDVkYlWhCsQ==","signatures":[{"sig":"MEYCIQDEDljbS6SnRPOLE1YzDJXUC30d4+Hgpd5LqgKTSTLxowIhAOz6blXdIRM5yIGgu3Vs3bTc0gla9m5E5iN/OpEWmTEN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkiCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdGxAAoDGoWYPicMkJYNo4lgoWS6fwq7HStQnn/RJQq2IpD+hDttqh\r\nCZoYvRqxFg9Bk5FP+wVx4cu3P+ORT9mPrvX8KsAU8+bbWq7zbCJXVTkUjAp0\r\nxPIj+OE2NNTmP/K88qdI4US2zqkIVHaQo2j1Vl/uVIGln2yeb58FGFDrttIq\r\nMf7BCkQLVBpsLETKOoTdL1hFvioJfgpBZBO1H4ME64i925uEQzrsiCEg93mV\r\n0cPI2LeYjVfyrOSu5oQD93gCfCx7u+A6YdfELmgw5w7OW3QjLwHKY6aILLrY\r\nwOjAJ3RpKHHo+Nfxw5Mg71GBPBOejJC4CyJpMHff08qto+uNbSx/qgfci2e1\r\nRakGBlREXF218cUuR9jQMIddKIwYPphGAdTqRFqwhbckordEAPUVgygbt5i0\r\nawNOPzXo31r1x2jWwgeSlaQr19gaoVtRk1VlACGfptAvVNwEgg3SA5pjsibK\r\n/ZmgU3wxjPPwSpwUUrin591q7e47EM/mhY2DEC/pF+lyzOVRVSOPpmUWFpiE\r\ncVdPehbbDb7U9O8KZX2S2mqMMqBFxROs7qoNqLBoxQGDBQGUlBFL4Aeq6VfJ\r\nQJcC9cU1X9ncqToMLJz9omxnqxk288Q0B+P4WPB8xNN3tL8EUBPLOzj4obk+\r\nW08GrzABlYiwTyP2ltVMudq4d3lSinh6mm0=\r\n=wMb1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"958c5ae10b0cdfebd292c67584ef5b99de8deb14","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-x-content-type-options"},"_npmVersion":"8.3.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.11_1646938242547_0.44205742690231875","host":"s3://npm-registry-packages"}},"4.0.12":{"name":"@hint/hint-x-content-type-options","version":"4.0.12","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.12","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f5f6989aede4b28d5f687dab0894f9727c4da362","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.12.tgz","fileCount":17,"integrity":"sha512-Wp14AKoKW8Na9AK3bpQqdV61rFX0oQhxwdSpABD6Moajsvj+8hHz46PbULg22+nEerlrVJMCbA6cPO5j4WMsoQ==","signatures":[{"sig":"MEYCIQCfWLDDa5t62FSByu3TMJuJ7CoIo+PNTfP+yZ7dl820aAIhAN9PC0RS8uqpafv+1B4WmlJ72i6wCd5YRIPJ/c3I1FRz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144254,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG4lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCLw/9Hh0ITnwKF3p6rf/oCSUsnvMSHg55pttS8pDP8lhDTEI/BokE\r\ncW7XCFtfZSspvnng6EdXuSTeo/PPnAgDKTh4qH8IwOF2/5yvBnp1YJ8wfDgZ\r\nNpMK/0gB7vVsI7vwCn6ZZiFsLrso6NnXAi0JT/CO2XOVX0MeuVyk2DOGx1r3\r\nasjoXKCkEtp7C6QBQ+C0Ry/K3Evx+G1qWp54OB1NnE5e8bbOLA/qCiMx0pzX\r\nxyb4klhAkOQE2IX2WDbHYX3mlGrXArNn4ryO8OkG6Pyn6t/tt0lgyyV19dLa\r\nw8YEPSVLUBM1Xus4pGkz+TvL14sCljPJpQHc2M0nUiLDpY1Q+Ty3+FMmXwvO\r\nCO6yKGRYVus3mbQZdFbNwHgrR2m2XWIyDg7UGVkbhUXoFYMpUrKPkcq7wcKW\r\nI1LqAQGg/io8uLliJA+zMHY9aC0xKt0urquhuBdobyiJaesyJEnWLA1hKUuN\r\nuRFZP+Pe+4UYENlLfjEXeC3xcBWsRgaKQoj0xMPXU/7zVZuhWGz30j3dyu/L\r\nFajMO/GXcsdweeS7RQtY+c8+KZU8xUC5DVZ0jOsVCtYJK47gg65h8hzS9kgQ\r\nViHUceaG4yAQF4RhgoE06LOoXBwoRpIwcPbWCrDj12OolRU+CLZ23iXVO0pd\r\nUEcu79nasu4vZXIF7nJ8EcE8TzhUMaHEeeE=\r\n=z6cK\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-x-content-type-options"},"_npmVersion":"8.5.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.12_1651011109515_0.29057740229729556","host":"s3://npm-registry-packages"}},"4.0.13":{"name":"@hint/hint-x-content-type-options","version":"4.0.13","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.13","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e8edd9b7e3670d2fda9bbb7c50727fda2f39a1be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.13.tgz","fileCount":17,"integrity":"sha512-L/VfNoZKNfr3DYerMe6hScPHOStx5Gc8UibjWbYoR8wECfF9dSWFtBlN5x18t2sEU1qu93NK74H9M6kKQLmi6g==","signatures":[{"sig":"MEUCIQDQDBiXCfjVmBeY0a+USC0K6ywEzEeuzixOOJFtDq5qIQIgBVKhQE2Km7ifxa0DttVRop9RayhxXGSrrBLlLk4B8GI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdp4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmptjxAAg0W6LTnzZpQNl73629ZjCw2coTlO8KPVga+2Ouj1akR962n8\r\n8mfZAY7V69Pu4uirfxFm2BvaitG55eFx2cyycVZXStzdnCousYYmX6MnbkQh\r\nsq4h5WHC7/WqKWYHqE7NgRi/ZRWz6EIYTvwnSLtWTFsXOjbrayxRq+XffX23\r\nnyhLh1ipWPIbUc+y6MpN3vX6oaINSSYRJPWZysh2CW1EuCJ+X377eQcMMJuE\r\n94FqgEjW9KEPN9kW7NXz9n1mBhbK1+4X10xDSPQhQ4Tae21PBzfOpXZBXRxw\r\ntdF4e8kkUF/IIR4E3uwKvPKC5BdeE1rzSyRudBg2mK738cwx25aDRZ4tVMGI\r\nP5YJqVEqTNFv0Z5R8S4FnCtsyKNLEc6PbEQx9FzwAEgF/IjiFqMWgH9BV5/U\r\n0wpyL6NdqNYNuMgoXpgjxVDGS2/zS/p4sJ1j9J8k9dCGS+moGxXOLM957NrG\r\n6XhkW8WCTECz4ETboKjVb7eoHGByh3ga1FozEwo7xYMgXpm2Ld7nbzddKl3w\r\ndPBm1vbpNgyXCd2jn9P/i8hq+/QVI5nZdoX4/IN4v9kr9yQbp8VkNoydgqgH\r\nROgzCcTbQ/v+S+P84ge1VqdbyuOoztRPnoIgXs3WWUgqY4W3WvyFRu/aa7ZW\r\nViudWNp5Mu3XoBKQxvJR85rg9Z9VadH20sY=\r\n=U+LP\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-x-content-type-options"},"_npmVersion":"8.5.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.13_1651628664230_0.7372576244163813","host":"s3://npm-registry-packages"}},"4.0.15":{"name":"@hint/hint-x-content-type-options","version":"4.0.15","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.15","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d9671a8de1e556960f61139513da983ed3d61d3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.15.tgz","fileCount":17,"integrity":"sha512-liCt+dH0hxx0PXCG2AM6suDWYcGk3lPDu+4Nq7D8oUDuFimWGXqaEJmU/lrJNPnJVA+gCHsEwdagZBBN5ULJNA==","signatures":[{"sig":"MEQCIAgWd7FCJ+/Tte/EkuiTVVDefnCOStRG1uZVh9aJ2s7NAiACZfphJqDzKHdFLiVXMiYhN/e1Y9M+tmwTZoQBw/WTvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6CwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp56hAAisZFM5OcQncfgfeBqIEOZyMFLxLVqa9Wr9ke5UpFPPB68QPr\r\ntqKGOxZMKS21DO8BNY4enGIa5XKoXGm4aniTfFwT8+ANGNHYvXwoqkr3uKXC\r\nxZ9qcXSNlp5SeCfBzN30/zBG6s/MTwyazYI8Ly/BGM9xdM4kJNP9LvNGlteA\r\n4YsEC2KCmlhDS8R5ZVYP6N4F14GP/us4bAb59JfFAXH6p52SWongyDbU/pf9\r\n0d42GZGZLvHbhm/fNfUmu/wsiWcCfLnSZdQ3hhAZWKF/6g4US124PkSfb72y\r\nyvLdxyhApuyePk+oId5jsNo4upCLATeJB1xnLpvMhZKGTix8tm3WclJZTSyl\r\nf16kNLYbF7f4SvETsq9uERLMGgDPaoMIoyWB2PFo3r20nN+6y0QBArXfjj7j\r\ngE/lGSXRiol21mhZKwQNz8MJJjXUhIxLCyOWGprQg+lS1vBGa9I/iXxp2rTw\r\nB7zqo/LAm9zBAicMPql/69BZV99lisDFJqna7+rkTpvVXvypmFnLDzHbKXwI\r\nYkFmpzdaW2jFCi62sChKZwcGa7uA7ucwoFJHiJTcpI2P8WZgj+wZ6JzQUfZ7\r\nRIBaWzEoAQgZ9x2FyPKn+R0DtiSIkR+vymRztuPz1xbXzslatHggv7B1ZMTJ\r\n1ZKVO7UlIrs8JyrQDSdKv7di+Q1j7JhfiHE=\r\n=237z\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-x-content-type-options"},"_npmVersion":"8.12.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.15_1655152816571_0.7322162716514142","host":"s3://npm-registry-packages"}},"4.0.16":{"name":"@hint/hint-x-content-type-options","version":"4.0.16","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.16","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c83154308a865a88f3182d96822ec6daac2d47bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.16.tgz","fileCount":17,"integrity":"sha512-1SIMHYD325oBEbSXNo3sYAOEszzcgvNDLVAi59QuSjY+XviitwKMXrPQ1PWsU7UTXJuid49f9m65sLYfjkKFtg==","signatures":[{"sig":"MEUCIAZ+WVPFVc5Tg4EKfeT1GJMzlWSTBo2HAnhCUPJbdBzcAiEA76Qp/6xBnLyknz14YbA1f6vaYFdXtPdhZZKSiL4csZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFRxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqsPw/+LLDlQYCANlbH6erMhZJ6DH/MiHy0MIenVWAAfDlRDFcU3YXi\r\nlpzO8nSGnEncCa+xCqZnCYRFHWPl0TZQzGliOgQjsMtmqGFtwitimCpTpsQ4\r\nkykFVxImjaekQ4Wl9/NFCitfDPogrCPafm29uo2CwkxYrozB9BqCDrf0GwMZ\r\nP8ho9jVNNIzJsFamI42mR+ONdPRbTO5TuaPqgAmkApcMInYm3s1awv8mEben\r\neBy2f6bOMsxv/qIn4qpUgRSbhDRyqg4oGK5039jhrWd9wNhcqQdVkVmZ+wCq\r\nPq/MFnTcz/UjxheywDVklq3lnHT1bUdBWDXbCvR2YsNuRExOA22UvKf0cepA\r\ny9EcWuDtZnMgZ7mWW9pEUisOtWUs/uZxRzdGiR3PXzLvS88e/lY0Skyz8Dqx\r\n87KfTsgzw0xEfKfxQxO1/T0QJsiJtxC+j3lYzinGH5jY74ht/m5R2d9l3h7F\r\nYvzLWGjp/mQ5+yCeDY50ggfLqsZ5CNm4x+CEbe+AsJ5n+3aBotXnnxX/X/Cv\r\nbrLsjKHccN+RlilA+hrQFYtdKLwbjPCUx+s2pNGvF1bt1mpvh+hu/LvOx0SE\r\n0hneeVv0N9mDZgfzbmr2AENyTfWlDCNeIYywkF7tIaBxchYQQWPXoGLt8fL9\r\n0mztYl27f0oitxnbte1pjWM7hPybBcV3LPY=\r\n=Zc2c\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-x-content-type-options"},"_npmVersion":"8.12.1","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.16_1657295984792_0.1002413016970718","host":"s3://npm-registry-packages"}},"4.0.17":{"name":"@hint/hint-x-content-type-options","version":"4.0.17","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.17","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c256946afa32d1cff8c4a8a573ff9ddf33aa4604","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.17.tgz","fileCount":17,"integrity":"sha512-6DR4QQ5LuDyAW4kvkGI6dog1yOnxNEbADoeJtRy3EBAqNLOHp9+bQeeU1di/lNnrZsNnS115z4XEWHvzOx8W0A==","signatures":[{"sig":"MEQCIGtjAEoGjylCtWKDHo7RZx+aEcn52VwbBYvHKqjLtYhtAiBhury1i7qw6SsxM7asZ4h6s0kt4cpWn2m6vIwlnm2YNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2ywEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmok9g/+IfUHURniVK5JAc/3L0ZTI+UIWCkORqYLJAvVvAAVTWtG/N+F\r\nGVrYNL5dwkhZUCQgLsAHv+cj0VTbt50HCVRe9mQq9kqBHqRJoEzZ+zgxywsg\r\nm5hLZeXPMuEDIi7kDe2ORU42rdAoGky4Ad1psz6wYqrTDgf3pMdptJscKPQE\r\nR/SOgxqJqTMu61SISr5x+54uME0PDILRq7NcaDFbPWjc908anjtTZoYINwSY\r\nmmbhYaJs55gmGebDiAcnp/IaDgTl8nr4tykEteipX22KzthjAWHu6sLsbEZf\r\nOdIzg7hhGNHcY1HYIyUFoc/uGDndcTHkfU0VbRqRMOylGcyxSPD0TfW/nTDF\r\nicqQNK5gAihYaUJyQku0IIPYDU9JnUGbyK97RqGGA+mqzW8deUj0V74WHmm6\r\nptw4mgl8BfeZlWw+VGLGIu3p1WQTD9pUZ0CU4mndJZU2fjGh2HG0SYEBk4is\r\nG4tPzWjMK1MPmdAsvPtu+xabg+hbT1jEMDWyK1+G7vGLECnK0TJJB/baIatv\r\n4RDiu6+ckI2hAhFuHL38zBIuGVVAQXElb0vmLMGP6y5jbMUDLD7MrtWzMB+1\r\nmneBboRGl2EMeYMx/t2Gkn6wxHiHggBTmyMSKLoB7FOfuGFJCuWsg1aCCPrA\r\n4f3QBIPjCSLUbeQkanvMpfCnixmaLZO6fvA=\r\n=1nCp\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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.17_1658530819791_0.22877003761940307","host":"s3://npm-registry-packages"}},"4.0.18":{"name":"@hint/hint-x-content-type-options","version":"4.0.18","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.18","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"256ef3990028b328e9cfb9231f7d800f36847885","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.18.tgz","fileCount":17,"integrity":"sha512-fZN1DRJdWyL7HpW8wNfFcf1dOxKjQPS+ZXR0wot1juth+aRRZzuFlJJhIWBNg36hMsQFmjcQQXEDQ7a7M66Bug==","signatures":[{"sig":"MEUCIGAIJf5UH2omHBTqkxnUFKebHx/0eNEE15yB6ds0KlgSAiEAkP/9GZXTdWwgbqW/Oa5WEc3m8kULzOC/Y6/BwMM0Uos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143447,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3g8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo7ng//XTLiKmMA/K3H2pggSZIeiZwkOlNt7MxDGKxxy64p+eddpO8I\r\n8ZzNwnKNPA50qyDAAaqyde/A8CTpNwXei5hxCc3xf4hfDHQy37Y3mcqBVRXE\r\n/PAgh249/K4KOl24jcBSjBh9JabGwqG2VscJ0G/LGUCPjty4W631zhz3iUn4\r\n/mqd/kTZJlz9yedwwpQePBuJv1+6woUHGd8M5qj2FAtH/7qm6pcN0Lj+nETD\r\ngn3QrdCivgBpBxVU0uExrk2oVYsPgv3ki6PT/elkf+0Ga76LrUNeVaDR0t+2\r\njUoTcwMQSMCaoqukdnZP7fmkNMf2zTVUK8L1qXgavc7VTXR4B3Quolxb6oqY\r\n4hzIfk8dNCsSriq3JTgTtF/38xXizOF/9dXaBPEFRqYZf5y4I9mz/nB/1RhE\r\nBg+bRC/ND4GKRWBTDS9e8XuWdxYw+jSY/awtGTdiSEqZ1t7LwOY9u+E2k7aX\r\nr6Y+aK+Yf2LJdiQZDyDsv4/u1SotV0dyUP9T9aRwBqGuvHCMeAKMgaGM2Epb\r\n+j7vaD7OSZooe3q9apColqNOCHhWslnmq9QRla4ECHScv0yKCoyBBnqrAA2y\r\nuInlKmEoJ9yHhAtKV1Af96RWzsoCohjObdXhbhjGMdO5jLpaBdfV8rf5D/lr\r\n9UIGBScRXazKvV5b15tt/mZ4BKbf2B4IDtw=\r\n=RQxd\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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.18_1662482492200_0.010003577462421642","host":"s3://npm-registry-packages"}},"4.0.19":{"name":"@hint/hint-x-content-type-options","version":"4.0.19","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.19","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"6ac30c91621c2f8e77937358c5bd36284618b469","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.19.tgz","fileCount":17,"integrity":"sha512-Ve97xkt3HEXMQ4xmMusWNw3U9rT/pG15dSVPHtAA6iiM9Iwr33Qw3XG1orTF6WKzHU3ZBdZwsXTcG9F1NYE5kw==","signatures":[{"sig":"MEQCID352njGBzxL5Et2wW/7RzkjQdhB1PMimorpXPvBlnAUAiBuWk7wO3nnqt2klOTHYrNDOL4QQEbrYDsDs9SzVoMzuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzAxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKwg/+NZVshdDXTE/Hs1ci/Rxmt6LqfvvC/90AZWxPl+uwIUr5GR0W\r\n05yCLY+yODiSqhWteE+9rMGmP888hMJAQ2ZgTKONttrBGAXPbl5CAbwPyXj9\r\nms7gyeYTnDIiT4CRYbgktoAG4rZkvmthgLcsWUFwDbSwf8+STXZE2TyB7c9r\r\nwc9l8ZT51hvEUSxe0RIHq83BW6i6LlePX0mbvf1jC7Jv6b6fgB/z2IZEw5cq\r\nmIDCYsbHFjRg6HdSNhV2oWW9fYwT0b5TanH8GTtcr0HSq7Fvc8W+9b1SSOvz\r\nZkH+LO4U7exjyn5HKseyRT/Awf+pDpaW0ZqDfGhHdQPhoYz4lek7WtamJ9Uq\r\nOp8hseclxCBkyo75vb0GBVl9hpnKaMAIqiBcV29CGUE/wHceNHfN8yaHun18\r\n4ZMa4NL6vBPkK9ZWzwqbPPrPR+LKzyF1ju9S+6ZA59G+RHcw6RS+/Qp3FozQ\r\nY2XCPEZHhzC5OYCjDpZLKIXl/+FnySci1VKa5vOGwmOpnucDWTrT8Sru/j7K\r\nbhtZVRtRUeoA7z5iBg3RmBEeKyj+YbwZWFVm4lgvbH4w/CdLGt+Wpo8+yGNS\r\nbiP4LApQznc++7IxLZkBKTMlmZIIK2s76qnpL7StBxBT4x7lqL7iSAx1RsUf\r\nKdVC5MYjb/8lYeevBlixW3nseL1v+AjPfRM=\r\n=IazJ\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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.19_1665085488812_0.7346461528235366","host":"s3://npm-registry-packages"}},"4.0.20":{"name":"@hint/hint-x-content-type-options","version":"4.0.20","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"19b8506d48ac37a4ab2f0d9650d6e263f4061803","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.20.tgz","fileCount":17,"integrity":"sha512-LoQa12SXfT09+eueeQtbgC76/RadbPxecQVrOFLoUTj/y6vl8cAwk6BUFiiSafEyfjoNhzNPs42iGN8kveWLmA==","signatures":[{"sig":"MEYCIQCDocsthO5kR4FZldrBsX9EcgOB0GOwZffdVEIgB94I+wIhAIWfQcLuwVzR2SehxqzJFMVJaE+HNLEu3FMTtyRIV+4m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE51QACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrx7A/+MQTfT+cX0HHai2KtIPvzK1JPXgJ3q3kJG0jurSzyYGWaPPIO\r\n/jzQ5siKFXPK2TblAqewgrKTnQM3RFeWUSCsdUMRqoZzEEjo64jKC8u2c+uZ\r\nt8tddRrcdreZC+U2qEufp1E7VFFRpOZVhKATR50IKNJhDMit3rxtYX+Zeudu\r\n3KnluAIzS1ODx4+FJ7oiP3Q6VoCC54yKAPJmOohN/srIbsCc6B4rsTBySmmH\r\nAQDKznXbmY9SV1MgjjitS97VjNAAllT7m4JXLrg2Q04LHC1MgPx9dMO65ILI\r\nXvkJ4CEN53byMW7RDZyqwLHOO11M7MQkNnQQSINqDR3iONno6odjzGOeQDwV\r\nVRJKWkC384Zpyj9f+EWYcy+BA3KeLhxzMv/mqDWBjkhgLpE9d6LZtTzeD/Am\r\nlz4rfZxY20VXqqNzcvFrP9fypW5xFrkucVN7PId3PYB/6OukcOvHa1mBlu2V\r\nECjR5BxC5p+0ApHb0EOEitHzouZ9rfhg0bKl1JWpwwPhdS80ASET97itx+Ne\r\n4BE1oDNK4FT37fxMjPazmgUXUMYWgXL+xZGUFMu1i86D9JLha3++9Wo9ZU3s\r\nHT9oL90LKHtFWdNL5ikT+s4Uc3xRBcij551jcwdTTvh4dHjqEtugE0SY/IC0\r\nz56xGPDQxjKCAFr5yquPp9FQ5CU9mrmonX4=\r\n=PFOc\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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.20_1679007056614_0.5058980420879904","host":"s3://npm-registry-packages"}},"4.0.21":{"name":"@hint/hint-x-content-type-options","version":"4.0.21","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"2df39d2df461aed38a3d5585714997f4e499a809","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.21.tgz","fileCount":17,"integrity":"sha512-DqTrShduMReIgiaoc7ItdBKYX2L6FW8Vh/STe6iJRD2fqEo+xl0Ge5B4cnIY8n0GwvSDZr5vYmeuAwlC9KstAw==","signatures":[{"sig":"MEQCIBZiKh7BA1If+8QL6HSs5l/60pF4320ermz7N09Mc+dfAiBK7VPmF1mS2nMHdr/DgtYQ8YBEYPC5eKlQyIddWpIdXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144467},"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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.21_1686328227062_0.7346606688783943","host":"s3://npm-registry-packages"}},"4.0.22":{"name":"@hint/hint-x-content-type-options","version":"4.0.22","keywords":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","_id":"@hint/hint-x-content-type-options@4.0.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1e6ce8d3666f39f95bb6e656368b673a5f448965","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.22.tgz","fileCount":17,"integrity":"sha512-e04N1oCh/qTje+MeFK3iXZiSrIHEEryYesEiPDK5OvNWlLdI1yozX1MVyWryP11pBtZhV517am0w+JFUhyw2QQ==","signatures":[{"sig":"MEUCIQCjICzHjeBNJRCPSZLvxYxc1bmCJKipvCFfnrjqNmgN+gIgBbSBKBexw3/GSi1kDj4caKKiNtXdPF4gVL75ET9v0uA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144467},"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-x-content-type-options"},"_npmVersion":"8.14.0","description":"hint for best practices related to the usage of the X-Content-Type-Options response header.","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-x-content-type-options_4.0.22_1687907390025_0.2628315311095648","host":"s3://npm-registry-packages"}},"4.0.23":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/utils-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 for best practices related to the usage of the X-Content-Type-Options response header.","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":["webhint","webhint-hint","webhint-recommended","x-content-type-options","x-content-type-options-hint"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-x-content-type-options","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-x-content-type-options","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm run i18n && npm-run-all build:*","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","build:ts":"tsc -b","clean":"rimraf dist","i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:dependencies":"node ../../scripts/lint-dependencies.js","lint:md":"node ../../scripts/lint-markdown.js","test":"npm run i18n && npm run lint && npm run build && npm run test-only","test-only":"nyc ava","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch":"npm run build && npm-run-all --parallel -c watch:*","watch:assets":"npm run build:assets -- -w --no-initial","watch:test":"ava --watch","watch:ts":"npm run build:ts -- --watch"},"version":"4.0.23","_id":"@hint/hint-x-content-type-options@4.0.23","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/hint.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-fxMpx7TDnpkTc8VMWC+8+bO01Yf9F5LveUMW7pn+5EVKXOYKXO72l2osRdRBZErjWK710HSA1iWxdVZl66Shpw==","shasum":"17db55965f8d4b1c426dd5eead02e458b9f3a509","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.23.tgz","fileCount":17,"unpackedSize":144467,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDi8iMluvcJu4/xq16ikCqBL3fEqmTAPw1WuCo8P3AMDwIhAM9ouUi9ah1baT2ZNrMHHwv7Q/Wj/5/md3FFzdQzJRYY"}]},"_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-x-content-type-options_4.0.23_1724949427389_0.6708127628436336"},"_hasShrinkwrap":false}},"name":"@hint/hint-x-content-type-options","time":{"created":"2018-07-17T21:13:04.300Z","modified":"2024-08-29T16:37:07.781Z","1.0.0-beta.0":"2018-07-17T21:13:04.423Z","1.0.0":"2018-08-07T00:01:52.337Z","1.0.1":"2018-08-10T23:50:57.265Z","1.0.2":"2018-08-14T18:25:51.192Z","1.0.3":"2018-09-07T16:24:38.316Z","1.0.4":"2018-11-01T01:02:15.814Z","2.0.0":"2018-11-06T00:45:14.476Z","2.1.0":"2018-11-29T00:07:37.957Z","2.1.1":"2019-01-02T22:27:11.835Z","3.0.0":"2019-02-07T23:19:16.822Z","3.0.1":"2019-02-22T18:38:23.951Z","3.1.0":"2019-05-15T03:00:11.664Z","3.1.1":"2019-05-15T04:31:54.308Z","3.1.2":"2019-05-23T15:51:24.328Z","3.2.0":"2019-07-23T16:33:55.432Z","3.2.1":"2019-07-24T21:21:03.138Z","3.2.2":"2019-07-30T19:32:11.154Z","3.2.3":"2019-08-06T20:43:32.188Z","3.2.4":"2019-08-16T02:41:02.404Z","3.2.5":"2019-08-29T15:55:49.901Z","3.2.6":"2019-09-11T22:32:58.639Z","3.2.7":"2019-09-19T18:34:02.035Z","3.2.8":"2019-09-24T19:32:38.035Z","3.2.9":"2019-09-26T21:21:04.131Z","3.2.10":"2019-10-16T19:46:21.952Z","3.2.11":"2019-10-29T22:31:31.467Z","3.3.0":"2019-12-03T01:03:39.561Z","3.3.1":"2019-12-05T00:50:34.446Z","3.3.2":"2020-03-18T21:57:35.960Z","3.3.3":"2020-04-15T19:20:39.967Z","4.0.0":"2020-05-18T22:17:54.497Z","4.0.1":"2020-07-27T20:39:15.157Z","4.0.2":"2020-08-24T21:57:39.176Z","4.0.3":"2020-11-11T20:44:04.347Z","4.0.4":"2021-02-04T19:32:19.732Z","4.0.5":"2021-02-06T00:44:10.118Z","4.0.6":"2021-06-09T19:12:26.560Z","4.0.7":"2021-10-21T16:20:24.723Z","4.0.8":"2021-10-29T19:57:18.135Z","4.0.9":"2021-11-04T18:30:20.624Z","4.0.10":"2021-11-15T20:10:55.641Z","4.0.11":"2022-03-10T18:50:42.674Z","4.0.12":"2022-04-26T22:11:49.657Z","4.0.13":"2022-05-04T01:44:24.581Z","4.0.15":"2022-06-13T20:40:16.690Z","4.0.16":"2022-07-08T15:59:45.086Z","4.0.17":"2022-07-22T23:00:20.037Z","4.0.18":"2022-09-06T16:41:32.413Z","4.0.19":"2022-10-06T19:44:49.010Z","4.0.20":"2023-03-16T22:50:56.820Z","4.0.21":"2023-06-09T16:30:27.266Z","4.0.22":"2023-06-27T23:09:50.204Z","4.0.23":"2024-08-29T16:37:07.550Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}