{"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":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"dist-tags":{"latest":"4.0.23"},"description":"hint for HTTP caching related best practices","readme":"# HTTP cache (`http-cache`)\n\n`http-cache` verifies that the page and all its resources follow a\ngood, sustainable caching strategy.\n\n## Why is this important?\n\nThe right caching strategy can help improve site performance through:\n\n* Shorter load times\n* Reduced bandwidth\n* Reduced server costs\n* Having predictable behavior across browsers\n\nCurrently about ~50% of resources on the web can't be cached due to\ntheir configuration:\n\n![Cacheable Resources][maxage0 image]\n\n[Source: http archive][maxage0]\n\n## What does the hint check?\n\nThis hint checks the configuration of the `cache-control` header to\nvalidate that the page and resources have a good caching strategy:\n\n* all requests have a `Cache-Control` header, otherwise the behavior\n  can change from browser to browser\n* main page should have a short cache (<= 3 minutes) or not cache at all\n* static resources such as JavaScript, CSS, images, etc.:\n  * have a long expiry value (>= 1 year)\n  * use the `immutable` directive\n  * follow filename/path-based revving, and not\n    one based on query string parameters (see: [problems with\n    proxies][revving files])\n\nThe built-in regular expressions for file revving are:\n\n```regexp\n/\\/[^/]+[._-]v?\\d+(\\.\\d+(\\.\\d+)?)?[^/]*\\.\\w+$/i\n/\\/v?\\d+\\.\\d+\\.\\d+.*?\\//i\n/\\/v\\d.*?\\//i\n/\\/([^/]+[._-])?([0-9a-f]{5,})([._-].*?)?\\.\\w+$/i\n```\n\nThis will match URLs like the following:\n\n```text\nhttps://example.com/assets/jquery-2.1.1.js\nhttps://example.com/assets/jquery-2.1.1.min.js\nhttps://example.com/assets/jquery-3.0.0-beta.js\nhttps://example.com/assets/favicon.123.ico\nhttps://example.com/wp-content/uploads/fvm/out/header-cb050ccd-1524626949.min.js\nhttps://example.com/jquery.lazy/1.6.5/jquery.lazy.min.js\nhttps://example.com/site/javascript/v5/jquery.cookie.js\nhttps://example.com/rsrc.php/v3iJhv4/yG/l/en_US/sqNNamBywvN.js\nhttps://example.com/assets/unicorn-d41d8cd98f.css\nhttps://example.com/assets/app.e1c7a.bundle.js\nhttps://example.com/assets/9f61f58dd1cc3bb82182.bundle.js\nhttps://example.com/assets/9f61f.js\nhttps://example.com/assets/9f61f.min.js\n```\n\n[Test your URLs](https://regex101.com/r/KDPUtH/)\n\n### Examples that **trigger** the hint\n\n`Cache-Control` header is not sent:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\n...\n```\n\nAn invalid directive:\n\n```text\nHTTP/... 200 OK\n\nCache-Control: invalid directive\n...\n```\n\nAn invalid directive-value pair:\n\n```text\nHTTP/... 200 OK\n\nCache-Control: max-age=abc\n...\n```\n\nUses a directive that is not recommended:\n\n```text\nHTTP/... 200 OK\n\nCache-Control: max-age=3600, must-revalidate\n...\n```\n\nThe combination of directives doesn't make sense:\n\n```text\nHTTP/... 200 OK\n\nCache-Control: no-cache, max-age=3600\n...\n```\n\nThe page has a `max-age` value greater than 3 minutes\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/html; charset=utf-8\nCache-Control: max-age=300\n...\n```\n\nA static resource has a `max-age` value less than 1 year:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\nCache-Control: max-age=3600\n...\n```\n\nA static resource doesn't have the `immutable` directive:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\nCache-Control: max-age=31536000\n...\n```\n\n### Examples that **pass** the hint\n\nA static resource with `max-age` greater than 1 year and the `immutable`\ndirective:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/javascript; charset=utf-8\nCache-Control: max-age=31536000, immutable\n...\n```\n\nA page with `no-cache`:\n\n```text\nHTTP/... 200 OK\n\nContent-Type: text/html; charset=utf-8\nCache-Control: no-cache\n...\n```\n\n## How to configure the server to pass this hint\n\n<details><summary>How to configure Apache</summary>\n\nEnabling Apache to automatically add the `Cache-Control` header\n(as well as the equivalent `Expires` header) can be done using the\n[`ExpiresActive` directive][expiresactive].\n\n`Cache-Control` header's `max-age` values can be set using the\n[`ExpiresDefault`][expiresdefault] and [`ExpiresByType`][expiresbytype]\ndirectives. Other values such as `immutable` can be set using the\n[`Header`][header directive] directive.\n\nIf you don't want to start from scratch, below is a generic starter\nsnippet that contains the necessary configurations to ensure that\ncommonly used file types are served with the appropriate `Cache-Control`\nheader, and thus, make your web site/app pass this hint.\n\nImportant notes:\n\n* Do not use the following snippet if you are not doing filename revving.\n* The following relies on Apache being configured to have the correct\n  filename extensions to media types mappings (see Apache section from\n  [`content-type` hint](content-type.md#how-to-configure-the-server-to-pass-this-hint)).\n\n```apache\n<IfModule mod_expires.c>\n\n  # Automatically add the `Cache-Control` header (as well as the\n  # equivalent `Expires` header).\n\n    ExpiresActive on\n\n  # By default, inform user agents to cache all resources for 1 year.\n\n    ExpiresDefault                                   \"access plus 1 year\"\n\n\n  # Overwrite the previous for file types whose content usually changes\n  # very often, and thus, should not be cached for such a long period,\n  # or at all.\n\n    # AppCache manifest files\n\n        ExpiresByType text/cache-manifest            \"access plus 0 seconds\"\n\n\n    # /favicon.ico (cannot be renamed!)\n\n        # [!] If you have access to the main Apache configuration\n        #     file, you can match the root favicon exactly using the\n        #     `<Location>` directive. The same cannot be done inside\n        #     of a `.htaccess` file where only the `<Files>` directive\n        #     can be used, reason why the best that can be done is match\n        #     all files named `favicon.ico` (but that should work fine\n        #     if filename/path-based revving is used)\n        #\n        # See also: https://httpd.apache.org/docs/current/sections.html#file-and-web.\n\n        <Files \"favicon.ico\">\n            ExpiresByType image/x-icon               \"access plus 1 hour\"\n        </Files>\n\n\n    # Data interchange\n\n        ExpiresByType application/atom+xml           \"access plus 1 hour\"\n        ExpiresByType application/rdf+xml            \"access plus 1 hour\"\n        ExpiresByType application/rss+xml            \"access plus 1 hour\"\n\n        ExpiresByType application/json               \"access plus 0 seconds\"\n        ExpiresByType application/ld+json            \"access plus 0 seconds\"\n        ExpiresByType application/schema+json        \"access plus 0 seconds\"\n        ExpiresByType application/vnd.geo+json       \"access plus 0 seconds\"\n        ExpiresByType text/xml                       \"access plus 0 seconds\"\n\n\n    # HTML\n\n        ExpiresByType text/html                      \"access plus 0 seconds\"\n\n\n    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n    # Where needed add `immutable` value to the `Cache-Control` header\n\n    <IfModule mod_headers.c>\n\n        # Because `mod_headers` cannot match based on the content-type,\n        # the following workaround needs to be done.\n\n        # 1) Add the `immutable` value to the `Cache-Control` header\n        #    to all resources.\n\n        Header merge Cache-Control immutable\n\n        # 2) Remove the value for all resources that shouldn't be have it.\n\n        <FilesMatch \"\\.(appcache|cur|geojson|ico|json(ld)?|x?html?|topojson|xml)$\">\n            Header edit Cache-Control immutable \"\"\n        </FilesMatch>\n\n    </IfModule>\n\n</IfModule>\n```\n\nAlso note that:\n\n* The above snippet works with Apache `v2.2.0+`, but you need to\n  have [`mod_expires`][mod_expires] and [`mod_headers`][mod_headers]\n  [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<details><summary>How to configure IIS</summary>\n\nYou can enable the `Cache-Control` and/or `Expire` headers on IIS\nusing the [`<clientCache> element under <staticContent>`][clientcache\niis].\n\n`<clientCache>` will set the cache for all the configured static\ncontent so you might want to use it in combination with the\n`<location>` element and set different values depending on where\nthe resources are in the file system.\n\nThe following is an example that sets `cache-control: no-cache`\nfor all static resources and then overrides it for the files under\nthe `static` folder with `cache-control: max-age=31536000, immutable`:\n\n```xml\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<configuration>\n    <system.webServer>\n        <staticContent>\n            <clientCache cacheControlMode=\"DisableCache\" />\n        </staticContent>\n    </system.webServer>\n    <location path=\"static\">\n        <system.webServer>\n            <staticContent>\n                <clientCache cacheControlMode=\"UseMaxAge\" cacheControlMaxAge=\"365.00:00:00\" cacheControlCustom=\"immutable\" />\n            </staticContent>\n        </system.webServer>\n    </location>\n</configuration>\n```\n\nIn the example above, you want to have your JavaScript, CSS, images,\netc. under the `static` folder, and your HTML elsewhere. If your static\ncontent is in another folder change the path of `<location path=\"static\">`\nto the right one.\n\nImportant notes:\n\n* Do not use the above snippet if you are not doing filename revving.\n* The above snippet works with IIS 7+.\n* You should use the above snippet in the `web.config` of your\n  application.\n\nFor the complete set of configurations, not just for this rule,\nsee the [IIS server configuration related documentation][iis config].\n\n</details>\n\n## Can the hint be configured?\n\nYes, you can configure:\n\n* the `max-age` values for the page and resources\n* the regular expressions used to know if the file is immutable or not\n\n### `max-age`\n\nBy default, the recommended value for the page is\n`Cache-Control: no-cache` or a `max-age` equal or less to 3 minutes.\nFor the resources `max-age` should be greater or equal to 1 year.\nYou can change this as follows:\n\n```json\n\"http-cache\": [\"error\", {\n    \"maxAgeTarget\": 300, // 5 minutes in seconds\n    \"maxAgeResource\": 1576800 // 6 months in seconds\n}]\n```\n\n### Custom regular expressions for revving files\n\nIf none of the built-in regular expressions work for your use case,\nyou can provide your own via the `revvingPatterns` property. This\nproperty accepts an `Array` of escaped `RegExp`:\n\nin the [`.hintrc`][hintrc] file:\n\n```json\n\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"http-cache\": [\"error\", {\n            \"revvingPatterns\": [\"\\\\/\\\\d+\\\\/\\\\w+\\\\.\\\\w{1,3}\"]\n        }],\n        ...\n    },\n    ...\n}\n```\n\nAlso pay attention to the escaping. The example above will validate\nthat static resources follow a convention like the following\none:\n\n```text\nhttps://example.com/assets/12345/script.js\nhttps://example.com/assets/12345/styles.css\n```\n\n## How to use this hint?\n\nThis package is installed automatically by webhint:\n\n```bash\nnpm install hint --save-dev\n```\n\nTo use it, activate it via the [`.hintrc`][hintrc] configuration file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        \"http-cache\": \"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* [caching best practices][caching best practices]\n* [Cache-Control: immutable][cache-control immutable]\n* [HTTP Caching - Google Web Fundamentals][google http caching]\n* [How Well Do You Know the Web? (Google I/O'17, video)][how well you know the web]\n\n<!-- Link labels: -->\n\n[cache-control immutable]: https://bitsup.blogspot.ro/2016/05/cache-control-immutable.html\n[caching best practices]: https://jakearchibald.com/2016/caching-best-practices/\n[google http caching]: https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n[how well you know the web]: https://youtu.be/vAgKZoGIvqs?t=12m20s\n[maxage0]: https://desktop.httparchive.org/trends.php#maxage0\n[maxage0 image]: https://chart.googleapis.com/chart?chd=t:-1|52,52,52,52,52,52,52,51,50,53,53,53,53,0,53,53,53&chxl=0:|8%2F18%7C8%2F18%7C9%2F18%7C9%2F18%7C10%2F18%7C10%2F18%7C11%2F18%7C11%2F18%7C12%2F18%7C12%2F18%7C1%2F19%7C2%2F19%7C3%2F19%7C4%2F19%7C5%2F19%7C6%2F19%7C7%2F19&chxt=x&chs=600x300&cht=lxy&chco=184852&chxs=0,676767,11.5,0,lt,676767&chxtc=0,8&chm=N**+%,184852,0,::1,12,,h::8&chds=0,100,0,100&chts=184852,24&chtt=Cacheable+Resources&chls=2&chma=5,5,5,25\n[revving files]: https://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/\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[expiresactive]: https://httpd.apache.org/docs/current/mod/mod_expires.html#expiresactive\n[expiresbytype]: https://httpd.apache.org/docs/current/mod/mod_expires.html#expiresbytype\n[expiresdefault]: https://httpd.apache.org/docs/current/mod/mod_expires.html#expiresdefault\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/wiki/How-to-enable-Apache-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_expires]: https://httpd.apache.org/docs/current/mod/mod_expires.html\n[mod_headers]: https://httpd.apache.org/docs/current/mod/mod_headers.html\n\n<!-- IIS links -->\n\n[clientcache iis]: https://docs.microsoft.com/en-us/iis/configuration/system.webserver/staticcontent/clientcache\n[iis config]: https://webhint.io/docs/user-guide/server-configurations/iis/\n","repository":{"directory":"packages/hint-http-cache","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-http-cache","version":"1.0.0-beta.0","keywords":["webhint","webhint-hint","http-cache","http-cache-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c19f605f4914be5b19bd1987e4758d0e9d561739","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-YD9jfutyVaXbQSOke1Hk/Ib4D+g8gsMmX5PXOimX58tvhnvo4ycz4HDrgOxuDHMAwulpF2hiBIYIzVjl2PO0eg==","signatures":[{"sig":"MEYCIQCQqeOhsGmq0tqp7bd0Bg6U8EZqRuqY2o1D66ZT59wlkgIhALmCmHhYTUAoVt+XgVQQcK4WbBhc/HBIllb0xMLfvjYI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTSzcCRA9TVsSAnZWagAAfOsP/iAOw+eX+kJfrKLGgBMR\ngWjWutSdvC1oxA2kbVMs6DHnekAEsjXz2eJ1nkYydGsNYv8dRL1MjY+SmMV2\nnhs4UAx+zqTIv3d8sM9yQCMEsADig0S6JxwOMQtEuChK1QTg1H1+LKmO8sE5\nR7C2zlZ7NDoNbbdyM0gLBEr9d4V819e7nhuINI3T5cH+5U2+7Qkg5ug9RK0s\nZmBErbrJhUypUEdJzN5wQ/zmcVoarjwevO9J7xlzQZK6414FYSS4HdzX75rl\njMOJzfcUes7hr//UfKS+lC7TQ74w9CWDffhuOi5Zj1ozlnkLS7QmAW/9f6as\nOSVfVOQbhxOEA5AqTr7NgrKnaB+JNZD3vkDlyGQaBYySEPXswMgDDr/fgTWW\nz4FLXyGRL3LtTRYxtAgrDVEwPw0RnO91vo4k59Gpv/1icG6tFuoOlJISQ+aB\n2B1gMSTkXahDq2xLih0TMZ3DS9BqBjQFmOQpH+axQq2bNzeXotN4qYp70hCw\ntTaediy1FVkhTW1UrGsDTADOyiYLccsZ1FR0Cxu2bFpZFwG6TtW2M9xIQ5ip\nnB0Mrt2WR67TCHmwqQoVXG2nPw//wKiGBZW4YpchETztt/cbYPQ80m22T2uB\nwnC50Rg8X+9wUUp1S5JHuP9BFUP/dtXI0xfp1dQUJ0VpXVL5bGmfAekM6Yj/\n7p7y\r\n=ImJ8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.2.0","description":"hint for HTTP caching related best practices","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.0"},"peerDependencies":{"hint":"^3.0.0-beta.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-http-cache_1.0.0-beta.0_1531784412388_0.056337844599714915","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@hint/hint-http-cache","version":"1.0.0","keywords":["webhint","webhint-hint","http-cache","http-cache-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"1cc5c77b0268afe330aa5d9382072a69313309bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.0.tgz","fileCount":7,"integrity":"sha512-WOImz8EZro66L/r7m0SJd79q4ebWOvE/KNB7jbCIcA+An59WzsbIGj2FLh7yy37E3hxpawPT3kaJ+l4Fb+Caqg==","signatures":[{"sig":"MEUCICkQAWNexBq3xJUIWiFyVdL2qNWj49i2lvbz7YdrssBcAiEAsVctEadrEIDcwIFlP3Wj4voosf5RbrkuRp5qea8Bz0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaL4LCRA9TVsSAnZWagAA/O8P/3sM3WHLaIPOZlvaL1MX\n7a+E7qWpihfqMR8yv08ApURj47UBZZVmC/XM5m4+iavFCk8+sg6gRhzhKRqe\nre0TojIQEHddZrxeceYJTRJUpQ0d22a+dAA/LWWAl7JuvJJ+1GKgSaupbbA+\n3obqvVjzC+/1sbeTkNTxilpJqEcx0ttp9JflWe/YYSrn94HT1zfUuORroWwu\ncJAD299RQYU3Fmvb8E620M47x+a7abpHvFTW4eQGuO7DCxl+0TbdDpRUqsWn\nNwMvsMJQAzOBfvf0tA6JAj0fwaQDytPaBPBNK1Z9SavWhGs+Xu0XDL4HYJQM\nfX5L88s+TpIjQNcNfFKk1382K51Z0FoUMBg5CpgHOKzCpdPsMjxGRiF6VodB\ny10r6Li/tkSkTWQmmDXPhSRCWd83XN65KFNaD2IaA30z2alecJfHlsJwkcX7\nlH9xQG5rsvkoeTcXeOjJW/tAaUkoq5zg2RSADiIDUmdPpJda3x+tzj9IuNww\nWK5ayvUusSXJnhGaGIE9t1NpFwNIcFpMO9Dg9+uvKKdwpwqW+gPb8nbj6dyP\npirt2kAHbpybmzZsaaYzc6TNs/LXgdf9yUX7LdRl8FzR0B8ZeeKNgjXzv7IW\nP7kP7qpT30oRXVP1SWLoLhfvV8jyb5Kw8Dzov2dmCRrN+UocCovKOG+pwevu\n4U9A\r\n=QpFk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for HTTP caching related best practices","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":"^17.0.1","@hint/utils-tests-helpers":"^1.0.0"},"peerDependencies":{"hint":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hint-http-cache_1.0.0_1533591050783_0.18067690368862555","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/hint-http-cache","version":"1.0.1","keywords":["webhint","webhint-hint","http-cache","http-cache-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"bdae84b620ccd207652fcb0511be176086786717","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.1.tgz","fileCount":7,"integrity":"sha512-b6BqjiQkuY0A86t0SJvrfrEUFCiDBda2asuI++rblFCGKaj7z7OZSW1CgoadPTpx6+TX7DezWPZpgrXgAt3Qhw==","signatures":[{"sig":"MEYCIQC+r8OfxDYxnE3vqLQsdY5va+bUQZ72i+0CaD2B36VWbwIhALRq93rB0Cy1/R2VKNeCC7qAvXZS0farungg/XVsPWwk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbgspCRA9TVsSAnZWagAATEsP/i+fY+svpNinwW4c2kFQ\n1zCoWXNKjD7thR9M6W80tWMhmGYfdrYR+VLealPPVyDnnJc0SX0kh5aqtteA\nCO7iZXOnktBxxWbDh8DQcpLt7f3YOXWwte5pVXxfn4QMXscTxc1RjPNRj3Ek\nrfTajhbR4J6JPi9txcMYBjZwgAEQc0YBOW53DPyPUjcCLdvaxUUENsDSnGg3\ntjVTZwMDGwUmaAmAiyyhfYaKO6u7Oe8w0GQnkqDJSMsUyFVtuAphapW3Rzll\nLuIsTY2q5jC20hrCvED+UI8oS1ubdt5HPmTRfQrPoEJ50E0taaANwjr2XfMS\nANIxb6ZsZQAo9L/yKux6JzHAfk3qKdljqmVGNkpJMh/1cdZQu27tScyUdgpj\ndxzUM2bVRPoK0eYzd8AW731zmfEAr6CILtOvWpPxfArJ9FfO7vmKhzzruZqa\nZikqPvcg2LGnDLclHKo/84dFCygexyhEcSWhokMuAP90LKS7GpwbIjZjZPqu\nLDvLee6qJqW3qQZ02CY742iYXwDC5TppJZHYkYZNOrwA4gQ6dj9lcS/B4n+L\n5jy5FlUUcFRQjUosAOMqfahw1nqJ9l3KoSRUrhW/8bFD/AOB8zBoR2dmBGnj\nLErte1o6edHcdVyUZkjlTGvCMqqhTOfz7F2gGobFfB4tzDdCDZK6ZAfzmVCB\n3K3Z\r\n=6eFe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for HTTP caching related best practices","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-http-cache_1.0.1_1533938472624_0.278571645901172","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/hint-http-cache","version":"1.0.2","keywords":["webhint","webhint-hint","http-cache","http-cache-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"69a558376080ab628450d817e21428bf825f6aaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.2.tgz","fileCount":7,"integrity":"sha512-82/Ion3ccalr/wwESgxyLSghFotHsRPnbwKRQXHSlWPZx41mkVgybKRt4bYq3TjO7Ub1gasD7tbSUCWs/Q0ZGQ==","signatures":[{"sig":"MEQCICsVoSPcqroNBHC4bBLNtOHvYXcq2Rj4/kNscJxB2zZSAiBmFDHgYV6DbwY78vTBG2oxJoASoEdKGmZ3j0Egv4Ai5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcxrNCRA9TVsSAnZWagAAjPIP/2otTWsd9RR/ibH6z2sN\nu2cbqwDZi1YkxmXINbBXAfkcdkKhRIa/baUtdGSouRON9/eU/LGoPsTnSVLx\n1XcDThOrRekhG2gfq+x19vp0lU08CGdzW/FZpsWx2mP3V7U/MjmiQlP6STaI\nygsKWi/UD9nZcV2KCZtfb2JS9O3emwJbtofnPqAk91TXkF9OxAmazspzFlhI\nr+veBL2iiXffoVvaFXO0Ka8Q33o+2hlCqVRHA3JfaLmJGGs0IybzOYcMC9r+\nKuNyE9d/PRPzoIJXTiUk2OSWaxETm1dDn0jKWVWrNB7v/K034fXXTGDv5/Af\nzkd4aaSc2I8NWFKq8kYDIgulsbi1fLoBoH7iT+EvRUG19M/m3LAs55E59Gqb\nWidniNSopqmE8c7bglX+pk/y82M+z6owhLOJztrz+jgL/2sORM92AR5LaQyo\n027FXBiA4/LTfQmqrdF68vuh1AYTjN4EhdL/rsMClTu7nKSGdSHhlDAnIq4K\nk9BHzAlmxPpkcrvJv/3+ELMgAfMCLhSgg0u32JKvrhEu0OVV5S5hE2jYNDlE\n7OcZ2ojCKw/gQqFfNpTzyNESCoDEuwPb4WLILhnDmgfJuetRKT/LopQsyyHd\nFa9TWLXbvz6QQZOp60g/eA7iPRYbPPdEOZ+5QuQ1kG/x16JbXYNGeswL4DlQ\nzrsY\r\n=nmeC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","files":["dist/src","npm-shrinkwrap.json"],"engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm run clean && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"markdownlint --ignore CHANGELOG.md *.md","build:ts":"tsc","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true"},"_npmUser":{"name":"anonymous","email":"alrraa@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git"},"_npmVersion":"6.3.0","description":"hint for HTTP caching related best practices","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-http-cache_1.0.2_1534270156456_0.8892444193880336","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/hint-http-cache","version":"1.0.3","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c87393306ed8e3112b54247b2cf6ca0364e118e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.3.tgz","fileCount":6,"integrity":"sha512-LexG3I03P1oXFyKN7//iHIU0n+g2cuDjG4nn82lg9XdvYtXHnOT44BAw9nr9T1YxqvhGnRA0pXWIKk0dthNdfg==","signatures":[{"sig":"MEQCICICoxCxl4KWQnqyt9wOhDl72d3+EdRk1m8GNQCPlqSnAiAEPDXDwta1TY2Tqz3xDknAQfFPDzm98AcJERdesc+52g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZnBCRA9TVsSAnZWagAAbAMQAI9NwPMAYcaw2Gd13K04\nGShc8fBNBDgZurmAH6VXmyqsKvP8Y1XjVhtzpPvvPFnmzaUqoukImdjsLdTf\n9X0ROpEQiMrNp1zu1pvE4ZNKMQK43OJE8Hm4g+cAljuAtBY3p0eznbu2Hy4D\nCLYSeDIARFBvNrlBxHll5JtE11WHM5Ktuo+lboQu7AmDkHEzKL1PJycAn0kP\nqa9Tp7Z+JiHcihxzPL5ZPqLD2u6wuiLapRHshW1BbmqCbUWJxpzsQlCNt0lH\np5IXExejBkdyh+e6AlPhZLkFCt/eGRpwz3L2fIQxOSX0t5DEWse9n0kCYbaX\nZpOoJ8GjUm5xaL8gUn1unWdw2pw993hfXHw9WWGwGEwTQwoIb8FKTQrH3369\nXVa4tE2LmKBxoaucFq7+2fsB5wjQcUdQihGU73Ehj/c1210B/EiADG77MR7h\noyGPt8oPvSzS4wJC9tbLuRs6bOoU6e2NNBxafQ9tmns0aaKxRgFWYgGN+pr/\nhMgnbdU5bpyu7csgJDLfYPqKZDOOFgxJLB/H5Lx4VoPF70ssg+ZDAgqlrb+c\nHFHJk/MqrS02+LU994Dt65SYx/RmWzGMoSBMPnoRSuolDZIfEopEHtHD5//j\nztnVlZ/AA9jBWvESwRlAlFybsmx+XF2EaefBQSfyKAS6Fiadgjmh9BVq+Nb9\nybaf\r\n=/maZ\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 HTTP caching related best practices","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-http-cache_1.0.3_1536268736154_0.07091598139327382","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/hint-http-cache","version":"1.0.4","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"3352e4dedc96a9face8858e81ae9d094e477289a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-1.0.4.tgz","fileCount":6,"integrity":"sha512-20WIS/BSppvDJK9ZxjT+LkNitLfvnA9Xcy1Y7oExMZ0eY//L9WuwfStf7EIB0WaEuAzPyslqs6/jyJdH1Np/Uw==","signatures":[{"sig":"MEYCIQCm8u49BeAe/2ejAIaHTr8X4sQZrctgmHrfmncG51LV5wIhAIik6N2WzQCLUoiRURnTx7Tmr3nvE6ps4MS9NNtvXgwn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2je+CRA9TVsSAnZWagAAcVgP/0dM6Q31gkrGvnWsEZ07\nMFFAz1bm/YnSQGAVFJJKXcC+LYhOFCi65kITYrgNZXofafHISPo9pwxRB1wy\nCQqzsjB7seN3h3sdR+iPr5KkBAwuyyYJAxZYizLfEwlD7p+S1Z3PScI/XBpm\nTs5oVLV8xtNMIpEEVLlAHkwajbMRDsVNKp3cM3CbAUwhBhC0zWfw5oaLEztc\nvJsVO60myghwMGZznu6AMqia80dfNWSi8iGvXRHBbtP2CwHVLLTmYvI+eebg\nXTYPHpmyiYna+m9cIKmN2TDNC62n/7j70HsUZVntnyRFmLtXI1LjRxBnqU/L\nAVy+3+lyXEQcr8eCE9O4I4f+pJ9XNDup+ycCfPhDE8ncyS7SwYskWgA9CzVB\nvURPm/FjQ48VVBB3IPdRqYWKRBEt8pjegjtU/mswvvagHGYoBiP5dj9mS/NQ\nR3imMDqYTN1qO9IOATFQKl2k3aISlOnGIlpXZhDMs3VeQ7uw6lEGb0hfc7cH\nbIs776sMCgl0ZuQoqZSSWdtettnZw+hoQPjk+nsR+eiXor7J2OCK8YEjZ0Rz\nmrr5/yLjN7piqo2UCNdev9SGrJ/TX7UqDbuCdQ3oIRbChKZ3Up9RVUPKBNHP\nd6BxUz2qybDrcKGrtMTY+hxEBd9W5RICozc9nKamIBS3p2JuyWZYZ1HoWZ5Z\nEesp\r\n=2euu\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 HTTP caching related best practices","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-http-cache_1.0.4_1541027773516_0.20310917855789756","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@hint/hint-http-cache","version":"2.0.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0871bc602665e68554ef9157745efd4ca910211a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-2.0.0.tgz","fileCount":6,"integrity":"sha512-Pqk2te4lIG/ay5uO594/cRIKR6VZ87q6v2pJC/S4wbGesYQNpLw3Th6zqEJz72mYVMg5/4uc/5EX0hrX3lYD2Q==","signatures":[{"sig":"MEQCIEBOkL95MG3BETDiLRegGf5srLj9Qj5QY5k6i5vDtz/eAiBjmzMyGEMbtpMgrIdoAnGnzyWgFYl58Cs0p/y2HqWDUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42861,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4Ng2CRA9TVsSAnZWagAAy10P/Rtm4TWcGK+jFqRAXGyW\nPXuH9/pgWwgRJyD9Yw24CSyiVl/HJTyHQ/ZB2/ZxD/chF0DPJMeBNRU0F+2m\n537gfSlD9xbg67kplTAq5TrAH48eLHgQCrS+95we+GKrtxoYsxoUkp1vzc+o\nOD505gxqfyjHhpfWXT0L1M2zXMi+IJgyIUf/ucsz18WcpKzRjcSvtqrLlW11\nW+AZmXEGOPn5tBwK6twAXT4Xq2nWomHY55z4Paaq32Pe4j16vBtxLTjIs5YA\ngbfh5kV9Ll0T/hwuJ3AeUpndTAAcyKgvDzmBzIXFjjFYd3BetdJVXiPSnw4q\nWt683uZRnyM8I0xVwDv2xxLQogei0tGoX927PH0kaP46BsUkkBfo2EVEyGjG\n2GMYOLL9JTydXwni8gaGgDGu3HbR94DqsV0bE5DdDHpZAj6Pp9UvwE3uSB8Z\ngcsKxQSSG/+L2fr/LQGKU8KsNEqX16G6t8RHvAe96BBbOXqS7f2+YuBywg/H\nHenq9SG8oNsTS7CJKKYOewhnunYXPKOA8qRo0s5p8oUrDmMCWPJKlXRBEpDo\nXXgda7hbhWIUJw+PYdGCbWwXxbscGf2pSuVbCpFynop1ZhRcggta41sbQHh4\npV2CKREzMFOIF3nDtSzt7KK9CsRPjPabqWn54dqwgfhpJ3OUcWYG2CUYKpmg\nMBLP\r\n=GUUI\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 HTTP caching related best practices","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-http-cache_2.0.0_1541462069514_0.3341806647585399","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@hint/hint-http-cache","version":"2.1.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"98209e3664abe48c640ab047c5ea9094cf3fe76e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-2.1.0.tgz","fileCount":8,"integrity":"sha512-rPJf2X4cVgexnJdMDvxyZkuy7CkM+OBslJUNBokGn1bp6C6LqjX/mjRoJpQU5/xR5ko1J72HpkvqqD4m6utzfg==","signatures":[{"sig":"MEUCIBAF9qnl1yoHlkJnHFRsUKezFQXBxvPwqdsZO5As2tkRAiEAtqyqHD2FSMnNd21faOXdVCZuuBas2WuKJ67PKW4pVjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/jfTCRA9TVsSAnZWagAAO5YP/3DOrO5TQDsgrotMh7eh\nLTPP29wtLyk8ZDcOVbG74icIzDecdkucYTBJGWw+lo7GfnpCnRM+K3ItVbsA\nzyh/PjhaszBClUzTo3KPiQnxcBfdN9yEeo+bztPpyDzyogyMTVuUxFIGndNW\nAIQ9VmpzPwyqPOYnasFQNyanyIt0lfTPt2j/J9WvenxhJ5ci4OlavevHZSFf\nOholzsj8PAkLGEOmXH/dbffXaxMjS3qkQCLT7jFw94YE1pgMJgqqpPUIct+d\nWp1rDajxO9yia70dFtVlS8B1bLzJRPsPdBZD/h5/DMGCIEblgZVriqWKR08E\n/OiCypGCuuSA11MObeLfWufLLAOXsaL4bYg57PKp/tLPlMwkogxavKli/pJ5\nUpvQtqeDifb+alq1GiM7O9PizjE35ICOTW18MwEJrNtYBGDQ6mMV15LrTZnu\nbVDke6mTZQ0yQlKFFjdcoXdkN7j7p117mKSSqYSdJTIOydkHw0S+kBWQKsah\ndU6g4AYSvLnbyIXM3pZutfGMmyDeah/D/r9Ham9afSzo6dIxjs8Ms/FdFROw\nYNNFoN8jN6vAWOUPmMomZ1fG8gGiDnPdQK4m0nMsXjDYStuPakI/VtyTHbmD\n81oxMam+m8dFO9IEryNo7q6nA5Bt2DFAnnfKm+rxq31F+QxsrvH+YHBr2tJ8\nYdxb\r\n=5XY5\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 HTTP caching related best practices","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-http-cache_2.1.0_1543387090657_0.40377450074660604","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@hint/hint-http-cache","version":"2.1.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"9315d3a2e64ba0d8a8cd7f336d2dbc15a241935f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-2.1.1.tgz","fileCount":8,"integrity":"sha512-pjxOeA97LAIDCed0UnVXq5o43Jg5/0fpWTC9W+895X1GKyUDga/iH7wovV9DIbSW99+4R+F3hlB+kkVIC8/3XQ==","signatures":[{"sig":"MEUCIQCv3kyE11B3di4zF7bKFwHNDpvU/cBFBUJoQWaoxcAIpAIgYKSlpe61AitItz14y/3pE8WiivgDPRDMKQsFGGuBeLU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLRTVCRA9TVsSAnZWagAA49QP/ilOUfpgdm6wWmt827LB\nqD6sm9v6cEACykbPpOmQbMg3ynA8xrpjdbGuUcmw8chMrD32k+LTQ14l7SFr\nRtIsQAJnD7sxtHq6BWq34dZXMBCfUi9NVg/wppnJV9n0/dWmGcdgJBtgUzhz\nxYBbtdHR4FI+v1kE+tGoajutHaSjODjBILA5RTIUezVT8KdqOq8Kkho+h3wc\nvXu08IwNsZcqAz7Ekq/1g33k6++2FdeAQ5wesgvh/03UNad1ZzNmyCOryR8r\nqA5sbC4TNlsUHLm+xpp2olny0rplaIXfknN15P2O4u690jGN/Vux0OYWywgk\nB2hAEiMG+Hdr6cRYeF+msJfAZAwaQIBz1vST57vtGHOU9Ywjtd4juq9W996k\nxBEgqrIxlsV/dWPgeKQ8gI9GlNyMWjFAvKRtvyPZRPgTRKL0jv6l44ZkLA5w\n3Jjb7aP/2pZBZmxVAXJabThGrnEVghxj/ayYsdj8komuizwBHrgVxYH5X2sN\nsLjjtAffkFCcWfx47VZze5PkyPKLP8Pwj/NFbCOmmc0wsyqdYPDsJWHw0RlZ\n/Gp6br1ZydUGG+iMvMXEvQfhkAeMs0GBnvHTJBrY8vnNJKSSUViZS9WjX/tP\n2zl5s2XSY4VvEzEqPX5OkjTLIqglq3MhTgnTgKGt8n7xWN6DvakToLCVz0Ci\nKJh0\r\n=Wiw6\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 HTTP caching related best practices","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.2","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-rc.0","eslint-plugin-typescript":"0.14.0","typescript-eslint-parser":"21.0.2","@hint/utils-tests-helpers":"^2.0.3"},"peerDependencies":{"hint":"^4.1.2"},"_npmOperationalInternal":{"tmp":"tmp/hint-http-cache_2.1.1_1546458324716_0.14941158858843195","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@hint/hint-http-cache","version":"3.0.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c55d6431d73402246145cc3d7e946238fd983e72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.0.0.tgz","fileCount":10,"integrity":"sha512-xpa5Qmygt8mqCqwAda2s6kP12KCyE0eBBLFKeKYcXh8Nlck0/Wlj6m+kMWlp4FuGiAWZ0wD6L8QOayKzgR6pwA==","signatures":[{"sig":"MEUCIQCBLVX19BIpvjkqETGormIr+aMo/4sOyFuqqOlt13Tu2QIgaBYY8SCeiJ+jQzm18auHgNTxDihjeOjbIQgemr6Z8Sg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXLmbCRA9TVsSAnZWagAAyRgQAIvKGnsjaoJ1mfLTDpah\nzYSykU6POvru9SaQeFI+/9efscifxnKUR08mfH+cGoi/zwhl3b9uZUP7nbqq\n0XuL3u/+ZMANtStWw/JlkvkwTxmEykmC1utdXzgOaQowc8mTNbwEWTwUBnNl\nueM0AAK4K55ZKeDI8VJukZ2e7oTkbB2fyjv5gFaAr3PeuYG0Vh/iW4WKo5nm\n1GczRYGANfG9tzZQqPO5lsC2StV+kxGOHsbTh5Z2tWLkN7vwEX7WXzoPg/Bj\noLRnuHagPpqbvk5eZGGRItOA5pgegJMrD4h2WvisVH+mzNOksT6iPEpK/9fr\nSC6Bc/DG+/lGDT0138wFo2/3TtTa4eLuJw0QqYVm1o9NF5aJWc16ko+R4wAg\nOkyNCHh75F/7vlWXs5EaP8uiHslLtCFKLtASj2WD/mmxgSyDw/S/iU70E6eF\ne3MD2KH0L8C4W3CozC2Um0TpAd/mQ3VgvhTbTeZMKYJ6swiXYRRYknab7QG+\nA4U7esddZi0ObnIy8CFUePEa5Y0IcWQ+5FNwNkClZn3NpV6+VsLw0unghz7r\nnflPfu+YUSPy84ABK2ay8bYFvzLIi6zhffvcfXXzL1g4ujBgD49Oh0BAxkbm\nvjNQTgul7tWfUsYUIixOEAoxzme5x8qhWweBm+g4YSm2UrCaODL5ceWgPoSJ\n2fZm\r\n=vYec\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 HTTP caching related best practices","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-http-cache_3.0.0_1549580699123_0.5736341345780795","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@hint/hint-http-cache","version":"3.0.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"419012e5f574a049b9fa3e0c2cb2e10b6eb42c36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.0.1.tgz","fileCount":10,"integrity":"sha512-v2+Oc0ezuOXzQwN7X57gw9ZoxaVgm9bqnIPy4p0aT2lxgV41n6qbsLvmysjb4+lHpiLslIfXZXjBCzCHhyZ9CA==","signatures":[{"sig":"MEQCIE5UCtq7BKYUCssD9AuxeBzKQSIltcn+XaBSIEoiEFBcAiAUk1EvEaNm5jptT330S++Bcf4UqvZ333N/7RLViFO9pA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccCdECRA9TVsSAnZWagAAY9MP/je7bbaFVQsDCCR3wWZa\nUl28Yo5l/9Xrx/fcVW5S/0bS0ai5xsCc44cYOArMRX1F8HAD6W35SXwuJsy0\nEqYfHBw8JFcQV/XaS4QKTiTBVV/+/0jySF+fpGNxr2nTskri1nCk6ZMDGI8/\nYcT974NBJsYhmH5nvc6UnTg8ubOi9Pf025EpnYRitOLfPih7tNErl2fJRIsL\nnPM8gaViSTP4HFYg5fDRFkbBNxYZfIq4M9W7TQlCSxFczwOfT7Bk2jOE7sTZ\nA/Wiauov3cxvlKC8lXB08SwC3tD8BZnBmhHB2hDyLajgupHBHcmfgdXz25O8\nll+z3b6uTRyba5VcuqdheR+irdVsJmuWwklwhpzzC8x5K94aT2IESzw0XIpS\nBjWHHrdoSReqIzJt7bMfLND/2OMx+vtEd50sJBrIDIYVLW55cjegijQCPqCK\nvaU9c+zYnQn9IrrUub/Hx7xcYwP/Jp3HDaJaKiYJN1R2pOA9Rd7EI+XkPd9N\n7TpLqmHQru7H/ZL7zsR8RaQqHAygdy13ce3tQT4S7B8C0Bn0kM4KrpNbXvPP\nlVZZNjB3LTKohzAGMaUqlqIS+GgFjTlqNNzRP10iDaCYwr9N2VsT41W87Fft\nQHKEVDf28fBrLbQeT16tRlzS15FwjG5I21FIHj/ILDbEhDwMyLhkmem9cqm5\njyRU\r\n=KPk3\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 HTTP caching related best practices","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-http-cache_3.0.1_1550853955373_0.41204314351509774","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@hint/hint-http-cache","version":"3.1.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"6f53b31852707552911733818e1f006cbade4b19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.1.0.tgz","fileCount":10,"integrity":"sha512-YpqIcfD/i1aHOu8OHyoTvderBhmZpkPlJYVRx1Szx4zLyjuAsoYvBeY3tcqmXMa7NzD6/HJ6xfjnRaJkjlT5vA==","signatures":[{"sig":"MEUCIF8Yva6Yuf1dE7AvjALan+QOSMheXSIHvM6j3O7vQWBzAiEAzrYW/iMps2U+wqLnRMszqRemMJruUHJr7PBCqXzmtyQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc236pCRA9TVsSAnZWagAAkE4QAJ1cnCepzYat7hMy85Z1\n3ji58fe4xKMnpyEMKUp7DuzxSIB8txC3m+/C3ATB0r/v0vu6NbIpIb8Sespd\nVESah9gsm14yiYMZ0GhZ39C+i2Mgl70JXwDSDNXceh/xDJkxobUJKvLuBQ2C\nyZkv3DJHGbGYoF5meRSzkTIgi5Itzo3IbXnlyliXFvMe77GGifqho9W6r8AE\noa02nLiwHGT2uS+sefMHrkrIyxptci29dJ5TsXUw/hGM3AJMVyd9W3uL/Dbj\n3tQ2h613uo/v1qN5/gUB7cuubFUvlxdWzIyUKYNPgojXELzrQAdqRBea5Ind\n6RK5r6WJZ3aJJVIxwWHX8qSv9/za8aB5y5Jeb27M38VkilbaQf5GEutZSwUH\nr8ApQFVmx3TJV24yPRz1vERf/OanBwtHTMSzClGcfJHdkTqqxbpn/Oxr1akm\nqyx1c4DOSnN5DwC/AVvaX1OEGC8V+igZz/M9ufp9gS4JySWYiVuc5sxVZ+hp\nGuG2n2wc6WX9VHtKiSTQ6L4hZo6WOF9W5vVpT7NwqHmmuHLTW6O7XRXvIgx+\nc/7aHP80/r/a96fIIJQB5xbjzu3mIr2/pbL8ZPVgsBIgJzs85cQrjKmaJKaP\nIhEREetkB2jUT5rkYdTL4fiaXtMUIrpoP45LrUQ8+n528zzbq25834fo9/Wu\n4sa5\r\n=go7A\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 HTTP caching related best practices","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-http-cache_3.1.0_1557888679702_0.25546046552940704","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@hint/hint-http-cache","version":"3.1.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"e0535f9749db245f909096f64dc704ff4b059355","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.1.1.tgz","fileCount":10,"integrity":"sha512-lOlJCT+DTeYULNLyi1syw5XYbe9MLr2WPXYbGumv+RKJctwgw3RLla6kwERU7Yew4bjo8Ux7Hcdlr9n1UNY0Fg==","signatures":[{"sig":"MEQCICAUYQyv2+U0FW1CgZBUu6LimCd1UOCPn2BHCDYTeqLVAiBrppdK+iB5aDxOX7OUnrEKGxNRneqTOrwodJ3KNxwpiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc25OpCRA9TVsSAnZWagAAZAYP/0Whnai6kUdVxPVV0udE\nQAJqt1NysiYXza3a3MdvC2rijOygbT4K0J9qbwiV1z7EOPtqMbmjaZpe+WTQ\ncT2J6+b2GJo4X2pMLRUMEJhK7b0tGAt4SXC8r79wc7uTzLeAadisb//5mEah\n5xkkIMvAFQwuai4Dl9mqPgkKVq0OqWx3YcJJe+0dlx1tXSKG7TCgK+4BGqhT\nD9IUeib5pWaF6M/pgzaGtp64kz2gip1S3OsAXB1bdLY7VijYb6xrQq66CX6W\ngejezepnpgpzNntRCNb4F45SDY3abpC4RlcU2y+xe6KMdY9SLHQfZ3ZBaZOH\nbAqkOfXRVnuxRZfnUn1Iud5WLCqvx4f6JS0gmRuI03PRIszMRgNBZYJw4inI\n9iWh3v+Z44M58ehsIPfJV2XzKXyCHxcPI5cuJBsA35SqPrpj8S6HiKKSRznl\nsasBS/9wF2nBS9RR4Ph6ulCs3D3N5eFMS6OWL4TT0zktuAxu/XVMSeDIFaNJ\nPN+a80/AT5Od5F8iKOQm5JY6EZbz3j1D7bjXS04t1fYGEvJySKdwMcR84kNn\nnc5Twm3tHEd1sCC/2WnydQxvCNsLARiiUrIZOwYfeOKxlGdKo2jgpZaAl7km\nkVgmQqjvGjCnZYi5XH9QARdNMkfq5/u67LkcAr6hFPEu+icVn0EMEgSDCgdC\ne/9H\r\n=FZl9\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 HTTP caching related best practices","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-http-cache_3.1.1_1557894056639_0.5038784392447218","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@hint/hint-http-cache","version":"3.1.2","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"ce090cdd9bdcf5f994fa324d8ac1807b1ecfb80e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.1.2.tgz","fileCount":10,"integrity":"sha512-2H1ic7bKvv8PY4JocQjdXcqmcy0qSYiG3cu/75fh71q8UoUOyCZctJbT8VcDE1z4UmStxlx5+tYhERf6ypv/Qg==","signatures":[{"sig":"MEQCIAT/dff7p0x3xuYnHiLoLyWLfD2TS1OAOR2Ch04NO329AiAbUoogConKGlPWNQ7NcCsK3+ONhhWC5+oVVTuRNOvPLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5sDpCRA9TVsSAnZWagAAS9oP/27j9JS2b303voTKI5vi\nKzQ07tib3A7PDgtAQoyj65HpELb5IHbrLIE3q7S64ROD4MZ5AuK6CfNV6Wzn\n0MF7gJxGOmHwUNyzRzgj7fx/8k2E7fKR5SEHumGFB620nxgh/GZeCd/p4vE2\nX9HyW4Aemk9Jhr+eTYTCh+Ffk8/01PNgSy4lSUwLx3TsKCd8rMFAgfh4eN3k\nhxAYQZUC6ZZAM0nat0TG/SxfY/vEssGSivzj6KY/8C4ONYojZZHl15vKNcaD\nkKZv9LYBKEa0yEn1L8rFRJakS3Rw5AkD6kOZ+OFE3e2iare1vTU/4cckn8XA\ncbq+q+4dn+1pzdAeJ9IH2oaPh49OqTldTARSp/9Rx6EhDC67Y09g7OTiD1jK\nqaA+Lwm514qHRJwg1fy3Z8DshWfubrfw08tdo3swmAYwySQHcweiivIH4jZx\n2ffx5CXwFzxFu1XsAETNJjW1XxGDLzPfaYtypc10kSzZuJ4b9zr2Xtr1wf1B\nxm9NHOLHqWIQsM2HXUzuvdZHWKvz+OtZVKI+2QI8XwCCOYZTC8pdFbkJvQXg\necKmBzt4SaQ4t5RydZmzIOVRv3cRgDLPxTPCQEn5JyKmAd6F/HwDkf1Hn9mH\nW6nFtd5rqGAZOWUxEL5LOO0mv+GLMD75ARRPx+H2ugiydVF2FRRgSmo4H1GV\ngX2K\r\n=mB2v\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 HTTP caching related best practices","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-http-cache_3.1.2_1558626537160_0.28764883257781837","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@hint/hint-http-cache","version":"3.2.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"fdc870fb8efa75c70c53319ca9bae4885f121a36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.0.tgz","fileCount":14,"integrity":"sha512-+CrXssYEo0ht1g1dv74y/ekD3+XJjdKl9hcNWu8hMe/AbXwpoL/UymvFToGm2ca/7vGA0ZDxLLVk2r177ATuaQ==","signatures":[{"sig":"MEUCIF6EUeFLz9R0shFrw9QEX7kOnyxqNo9RXa8hgR2uxCqRAiEA6j9YkqSpW+HOcHJLiTJWwvzaZgEB2FbQ960EVtluUtA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNzZaCRA9TVsSAnZWagAAm1sQAKCxjdHm5/dOEdjIpyhg\nSi1hRqprFyjCRux/Am9iMAk23gC3PkF8SYOjaX41wZEW8GXIoiE4Fc/jXx9V\n2/E0kY5MhGrDGuk9LItJd1xsyuBWJYOY6+w5Moo0AtnEoCcEonpRxynPTs6t\nDxr/lvqLRR8PF9qBHkb2chz3kYoH9gND5I4BA8wWQwunu3KUT4DmaU3y0fWQ\nYAX3JCddvxm6xrvMDFPJh0VVDmUbBIsXN/gvvaAG8rum6ZFI8+8wAOh6J6D0\nr5TLRXJhyCIDWOUhnj/tJK5F4W9DWHU2zckDHWYFXt+dCO30kM53SnPobEYn\nlsHIc6IxEQkrYKEwf3u+OKAoHLXQzjoGtAATGFj8+NtJU/Sg7ePOhjKp/SpB\n5sZVPynSgYxhLCS0v0LAEPu0CdJCc1mrL+k81YooxsPKIX61bYIwcaGZUUFz\nAfsadZu4m1Fbz+Ohf2W7qNpBa9TV7+EwZ//3W0CJrNDT6UWlSimQ7VrSuvz3\nIt+dQB9mo/2PTnprJiXm9BGgjzI2TGlkwx2JgtAoLP89AtJfHvKRPIYmDdZj\nBfPJvISrBgP8JTWLFxh8kYIZT2MWpQiHe0crCspexWtDBAR2J7YPM4W8/Tq6\nLlmDFtjXbJxaVEWZ+DsdfxSftTuoWIzMCUZzNB3QPmPcRFu3Nsc323cV4kd1\npvQJ\r\n=wcUT\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 HTTP caching related best practices","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-http-cache_3.2.0_1563899481298_0.8604031839052533","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@hint/hint-http-cache","version":"3.2.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"2a399f7b1dfd98ce3307bbbfd8b1b439c15055ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.1.tgz","fileCount":14,"integrity":"sha512-J3NYv0s754pmkosJ96QGWRcJg9nPy+4hvSSf9+PE1DndJ4xYndbDU/lmrIbXW+naewAO+LbWAGgVoY8C/LFCvA==","signatures":[{"sig":"MEQCIH5Xpoq4CWPhn2GV7KvobA62qFpBuL1PTAMNlwEiz7zfAiAyzoZTdVEDZ4pLdyOU98b7Fc/KoaW40XviU2MHyy2UtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58759,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOMsxCRA9TVsSAnZWagAANZ0P/j/jY8hj3trKDoeYxutX\npMeRCdbhvz2YTtayGNhie+8XYZR0WgziVenaThJfEE5+GsS/8Zsj8yKihJMh\n8/n547gM7a9NP0KVRgfY/cUQBMuCnoxZXOVt4eH88mpEIqmb9IuMOQXz8os7\nL/3E1b4yXoEfeDSY+5NUqijeDdG78WVe0CMR3Cu/rCejUEZcsykPIls2UmLu\n/NRCpHWNFRyN+yiemt31/+eWlNYEAjsCCB7pTBSK1JuD5bCpxkAV0xMNmjFO\nJdjr8fU35XDGTIbbyiv2Hyzh7DK9UKcbeIO8RxwpNqhOl4w1zJAJjFenXADo\nlsqaJzd0J6TlLN68Uyf6ZGC0Qvk0BLY9ZCczhav1QjDDeLVoRUiFaQmaFT+p\nKxGrgvYXmzChBD+bZda5aaIcmx6bPI3nSa4ux5ksFQAI0L8OJR975NNZBC4H\nzl7qEfyWuef20Zzww1qJl1zigD7bGw5wkpJumdYtaNNWaOtdaHXlXdvQBYgv\ncSMG1LlncXQma90QcJSBqLKIdB8kIGzvRSaslaJZ3q87APBPxWi7/7oOJ1Pp\nShn9R0KWGZtL7C6h+0rt3iHXIdOHfr8BsTqrug+ddqcRgPX7ddBQhb6J9v6a\nJQfs+OyOYpPkodWKvFwElYT4iVGRwjVyMBLaD1IaDKPaqANCCPR6epZVFZUZ\nDVAD\r\n=y3Wg\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 HTTP caching related best practices","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-http-cache_3.2.1_1564003120617_0.29886746029988864","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@hint/hint-http-cache","version":"3.2.2","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"87779f9b53270c31b512732480fd1a0610fd923a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.2.tgz","fileCount":14,"integrity":"sha512-W4zessqwF1WjwmVwGJ+LAn4Q7wZM/hkan1cKHe6oyMxmxJ2EuFuUa8GG928+PvoHJ+mwfCz3sIbW8fKuxb0Sjw==","signatures":[{"sig":"MEQCIEAKdkyw6lT2M5b4n2hxxWsDnWm/L1RAVGYSc7oR6L2zAiBkjZntUGLWpJT/zXTGNg49HNTgg8EXUqK3fiYqJ4kYyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJqnCRA9TVsSAnZWagAANRcP/0Jh/+Nu+VJ0uZEkFmXA\n70ZzmbSaNWaBVfsG27VblEIMQznMAAFbn8ePmm4qn/DYfHbJUbNqOJygWD1x\nPo0npRYXhyWvssUUk8ZQS2iIUfu7aZaDBMeDUMzHIDW4B7RrQwkRLDWDj0Lk\nHXjMwJGSzE2IHIkvzuN5IATYGaYumFawEmBIYsb6q25uQaADKcQO/brg3ffv\niOXvJHMOzovQBnXcoXXZrLs8OMZrV0EtrqXZoh7Yb/+EJaDJZOmea+8m9FUb\nk9e1naSdSdRDHI7ecaHAXJgiuvfmg8Qv9Eq+Qg/MaCdJWXP0fHX4sROY7h7o\nb1Lg6/bTe3byXyFXMnkSDmG4QTIS9Y442v5ug7wxVP1iu5//1x/XanMAh9LV\nwlwGVYzMIlUojCLDlk0WtNgbCipEDFFJ6G/z3eAeV5umPHJHYBMT9bwrD8xJ\n3ZnS9IL4TweZI6b+GeaDcLd1BFK0a0N7U2ZnLocLD5rhVkTLcf97KHGAK+wc\n+CyWu2CAKOgsjpo6stKL7C39pRzcRd0fr1V92YGNdoz24D3OjtqYg3Cxp0mO\niz9poo6mcxhcFnX1Pq+hE/eGg6w7JJu935WOjaHF3m3PNgqkbKMD+5oBUCTD\nNjYahkw7cLevJSxB2KovD/0FesLvl4o6V9VxXKj3JMXax4F4JJdmy+XbFkrt\nVJDy\r\n=tUz2\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 HTTP caching related best practices","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-http-cache_3.2.2_1564514982828_0.007222793242635417","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"@hint/hint-http-cache","version":"3.2.3","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c6153990b3e6426ed5e635e3a2b6dbcecaaf2fb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.3.tgz","fileCount":14,"integrity":"sha512-T4dUaEfAr12FM0XDETMBagedL+vIhgFIvlsj4j5tXiGWOBVS6Kh9H8uo9KwgQzBWYxBFgKZWlplTDebHifOrKg==","signatures":[{"sig":"MEUCIAdU7ISd3zf3VE5ulPO7eCgqK+tutS27zzy9D87+Z0ZMAiEA0W2DibkelW7G+ETHlIrQxWWhfGOrJTUUmJqzlpKcnsw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSeXjCRA9TVsSAnZWagAARFkP/idw9BiAr7auCCGHtkv0\n/RMNnL8zHM7fDd01Vw1AixiVAgscd2gmbfNoY6De40A2M3JyW3pPQnYw3a6v\noquDEW2NTr9hOnqKwqty98VyOigzL6pki0Z4Y5w1QsQP3/WKfv74rj9MOCVf\nc1bq2pmkaC+dQ89laawEDyRjpow4RiH8Qbn6SnYi3q5dEisMCBpKIHxZYjNo\nIY2tbNOWLLg0bHt8Z8/6ikExajrraop1zWF2YJemDaaeTCdYh9UBHdIDGpHL\n58SguEjYNd+9w6YaJqJ9fz67PKC8BCSZpoj4+zwoM2D5xav5CZrCnsgq1P17\nUwVgk+u3JkCEKdR5KTDWUThLBcDu00uLcSP07c9rT2CX5sbdTA7FhtlIg2Z5\nPDDhrCxhbG2FW8knsdA/FxifjFDI8f9OxIomFudD6nYsYUt/uTxK2oi5daNI\nnLzkCdlP+ll+Cmy4G6K42qX+iaa2YeSqrN3giWPTm21OlUOIy/mQQvSMllOl\n3DrGrOVfRVM5f8Ndndt004yQEZq5yidq7JsyDhoNmxhnBXPfhG23JLBBT+bH\nyrUVdA8F55pvD/e9DSsfOyb7pqT9dbZ8ca80g/lEbvNZVC4TLaM3hFFvKQjV\ncEfjPWPOpRETw9rXmWNf/6HyKZFryxzdd6mEoayGFZ78SLEj2sFlq/FUsS2e\nbFEo\r\n=QKaC\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 HTTP caching related best practices","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-http-cache_3.2.3_1565124066424_0.2872671319409219","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"@hint/hint-http-cache","version":"3.2.4","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"1362875b51b26efa4fb0c424d8b4438612460d1e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.4.tgz","fileCount":14,"integrity":"sha512-CR5e1O8bqDoHUEuORvtzgEpYdVutDH2y79Y5legFhfLf35KcKzSmgivhXT8UAozDCl47SBk4ki9AuihAcVUgCg==","signatures":[{"sig":"MEYCIQCSEauXjjjNE7bAkX6IO123zVNri4x4zFbwixIeWJG3bwIhAOhZNPbJANCbQlA7LdMOSF1CZ+Nd+vu0EiHF6ReEHizd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVhcsCRA9TVsSAnZWagAAneMQAIaRxatedBlLFNxlVReM\n6bvGnh+gvLkR7webM8Dtpmi+h8ZF1pD70vueK5I3IEhkDaASRuWMeomsC89m\nLTEV4fFydEKPvcoDZguGn/FU5YMbBcRV9TFA7dIrZLSjZaObFe6ANM3kS7IS\nDOozi/g4gYzfsMSavgqo6oiYjeeQyGgZrw6brl4e4vVkoPD36CWc/Wa3l+2F\n90fXMHzJ6m4Hri5HSSs4WspZ0mpKUBZ04AAfsSPrFWYyM4YU/UlT46Iz+TKS\nQQcbQJpvqRkTF6LbZYcqd6kBH0OE1wQCoy4NAm+4zr5/SpI/ei70pv8u1epu\n5GqwGUAkva/bdxa0KRs5fzjKY/spMPWbdzrn0j9FeE91DTx5+EJdTMeovIOn\nUssmhhqksOghVhTI48edAYGtbVDSiPU2dvsgigF5l3a68sHojMZn19OCeL98\ndGOEjXfIieAB4epW+7IMfaOSsp4epvaYg+bykvppZ41uGcLHAhlxWfQDoYjm\neXyPMsJGVRhABQtLblZ3uVJo9HxjIRM47Yt6DVXEo9/8bA01OQdANCy+Lbe4\nAh3gQFuFt6SXxRlXEj5ddSCOd9bAEU28rbhB1OAntM8/m54jdpuMySyaKPti\n2C5rOjZHv4HUkFkUsocLTOihuWRIenRjYL/Hb/cthqMT6vUHygscqgZ4ESey\nxmls\r\n=BY9e\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 HTTP caching related best practices","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-http-cache_3.2.4_1565923115185_0.8515844104637991","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"@hint/hint-http-cache","version":"3.2.5","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"492021d5195b370cb4396492d179b846586eec58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.5.tgz","fileCount":14,"integrity":"sha512-KGxFu3kRhOdi/SUKTNLPGn88pi9VZYa/KhNxQBGD3qgD4JfViBbjazuIeS4sMhKNqPVuf7wAuD9tOaouZtC2Zg==","signatures":[{"sig":"MEQCIHiKsX+qpLsxPaQkhrQnyxwUmPDZHMIiO3CENtWoK5TjAiAyEtBw+y5/WUSWqeMIex/bLUmOTtU/hWNR9fuoYe3k+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ/TfCRA9TVsSAnZWagAA/gIQAIH7bN1Wfo19EnoBFNDz\nEVSr0T8JaH2TQqCIzb9D6yw7Bbs155s4VxvXrUErOLDSSC8rfWEc2nthWKPD\n73dXzbZK4ZOOP4s10wtLqOXhrO0+sJwnZ4HYXtNt4xX4OfgjH+37UiPikBwS\nolPVwuaEOkjbW2adTsNMvEknlVGEz93fDwu0RAEVKba1xvmpUkG/8mXvRYKK\nM8b1O0HHFh8DQo3ag50ePipf3fVQVRftkPF1nQE5BW9LN6j9adWBlwbaEyXF\nYEoOapykIyBzEbDbMM2KAYek9TZ94Owh9plllu3X2Nzw6mgxInmEzp2or4MP\nJQY3oaiqzKf6/UuCH2ApRo4kNhPDwnNf3ZK7WaFiNEWgFzhmrdpUgtbmKfjT\nc+97yJqyaWAJxMb4gpR4Cjqdim4sk2+/KOD1exs/gTYEjDw5ujhWwKtu5oC5\nWYzeSmvIt9W3FKZZXhYwkuYPFWoNnI13qwGYA8wYaxRpxTgfmpuqhm04rTeq\nMCqGrggTt02SqvVW61tTxRFx7o7otp+D5pEHzJEBH0ll01TB3c2Ag7crikJ7\nCmh8BoYvlbQnCdn83CuEQELObhfdR5gHZNRorWxPLVcqTw8O/9Sb1NCVO+cI\n7PNkhGcOEztKWWCfQNN99wdGGH9KBC+d9z+4Bx6SZyNHwAGGuozKzN6VQKsp\ndCQr\r\n=8PX2\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 HTTP caching related best practices","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-http-cache_3.2.5_1567093983093_0.055368064864365074","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"@hint/hint-http-cache","version":"3.2.6","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0e4c59c9ccd27e79d672f993ac852a59c28560ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.6.tgz","fileCount":14,"integrity":"sha512-4Vwpd16CsGVBrOh9wPYBn7TZ1B0yRxkf+mn0v1+keTbP2WYQvfxtrB3fyxqYl8eFFBN6poxp7hGfWKdbVrWRGw==","signatures":[{"sig":"MEYCIQDAYpWBOYaU9mNRHxyMXpc+kVQLq68RSkn1fjznbaUBUwIhALk+WtXducRIzKUVWbHs6+IoOk8mJ+cE+YsnUFU0bLBv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeXWTCRA9TVsSAnZWagAAjOAP/1t3jqTCKR7nLUrGIaTk\ndBUkkp+yWyv/+3yL7NzMQqkE5Vf9Qr3a6J8T/mGBf5iVYefxn1zqFAIc66H4\nOPv6xl/948x7aAxofroKxIYZckeoD7FaeiEys0K26B9EmGrgA2aRwrsYa9dH\nXbA0xJkq4eECuI0hT1OUM25KmhPSKU3lZucOkFxGSi3LDiKZQTdKNycYAezY\nYs6GdTQ4N2U7AwYUARvQopSuhvqFsFpzUMGdr1vKUjDkkoW5VRfuuxZ74GpO\nWSEVLzUdQZAQMfJVR0TVjGfv3LMx7mqCtZFy31b8HEbI8l6lBul8V5vTeHfa\nY8JkexL1Om9Hb3BuOI9DMtQ39rHc8rvxuoP+q/RxDfnAhhkqlMCxeLhRKm3X\n7XqY9uXcsxrkiAbZjUbUCujRnzVpnwygzgFhfZ4e4Xepy0Z2sy21S/MZ0MiM\nJKyTYYnIMeOmANcHcVesdFNECvutzKa0L7hL5f6jjRKgZVgqudzl6a7TqRuC\nYL0jcr/OflXvuEANk375Rxh7iYWSp+V6FkstZwJumsCcvE5ngVAzPTO/SSBv\nIS3XUq84+2orfmqDJ7nhNbjfixXp4E3tdkgajJvc5LtQjwx0S8B5AIwfCPve\n5n5oDj2poWNhNRMCD1dM49omr6TedDzVhQPieGi4rI5mRsu9pv7IctzveIdE\nX1v7\r\n=DMO/\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.6_1568241042459_0.9152528966931641","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"@hint/hint-http-cache","version":"3.2.7","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"f5d10bf8829a896402c12dd53cac72afd4c38b83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.7.tgz","fileCount":14,"integrity":"sha512-f6wfwt4nnFxkaljTs6Ibd9SqOJ454uFD4Ks/qDOz/gkmw7sgFz/jfxkAnuSBPYhdcgLV6mUx1G1PLjStR6Jo8A==","signatures":[{"sig":"MEYCIQC/i+s/MzQ7kiFguj0C7milBCILPiks8lv59wJm8JogKQIhAJ63faT+OpkrHa9f4i15zwesDHGnhdn7uibiQgsKCMgH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg8mXCRA9TVsSAnZWagAAh4IQAJBcmaXBSZXvkWVtH/2F\nIa8XY71SqUngJp00ml8tMyX0eCLSnFK9+jB9oXsn2/FIBuCjyiJQQn2FBTn5\nTESjXQ2MgpdOvcuUTQkyQLaqkcSCsCV0rL16ULEZLpTD9QD1R2/QB9k+iTXa\naA+NRI6IiLuB2LlySuk4sO8vejA2NQWHnHCkRaKQQ08u3F7dbTZIIkhi4lLi\nsD6o9GEqJ0mCncQvuTBY/VihLpQBtD2x2zzxGVEysq3uSBYP7eAjCw7tFXos\nCFp+iReOlW7q40PXEAj+FDeW/2PXAV/CJhRCMFawbGvJiujpCgw0SFLGgHre\nSDGECSSf+c+vw/Kc728iyjGOW8QhVBozMBKpdkVk5V0c9perArXaigCnGyGt\n7J5d3ho/VsiQBmXx90Uhd8jn6JLw126eKOkoBcNx8MPEJlDX0jXrJAy4nfP4\nBq52suPJslrCup5hNffqpmg3CK+SEJ5RSJMBVYSqbI4ze0mopR4/MCXEIbsa\nua4Zf9B3Yy97rqGPSd8mjLBj13Y1JVVi7/vbedQ/DFDRACcLe+xPMR0hOByA\n0X1Jg21PKFxhhz9d+L4BD/w4JL3IByMMdUwbCJT6BsVm+F9HXFt+lllvWyhv\nzb6tl6cqSEbwODJAShBh7x8SR2Fs1LmVAhAC40+xfh8nMAQJRMg/ejGEX0gz\nFNZR\r\n=e42W\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.7_1568917910267_0.2835514565511035","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"@hint/hint-http-cache","version":"3.2.8","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"00e157cb624058cfb20bcc6c22fefa18a943b746","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.8.tgz","fileCount":14,"integrity":"sha512-KbMYaF+XlTjlrKS3QkemnLKJD++L3wr90RiZIAlrYn8+Q9DWg1ZGeQ47GwVMDAkjtkB0qPtlDuFXk2Z1T2sxwQ==","signatures":[{"sig":"MEUCIG7rFROGNrAj+yilKUQYNEOtERgDfDaKt1cyMAFSiFNpAiEA5vsCmoPM2IpaSsvpJqOgYKsm0XB8TqGqlkMuQMY/1vI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdim7MCRA9TVsSAnZWagAA+BsP/0+t89AW5Ht2NnnKHn24\nhOErswInSYzOeBzsjbfySoWmhZ61spsKPoks9AAfbhSSlPHghssmjdW2+91+\nFY6yTGYjYWEowFjUQkapgMvfCYEZvFdfDA0oiZEuVE4lxnerztQzhUcFczqT\nehkDMvyoueU8TReF/omOFMlBlixHLMMb6Oga+1vmESk0SdpaZavauOnvwu/R\nZj0vvQ6jgfDt+77tcu+iv9ARU8kcuPVn2L6RKC2UTbQ2N522LNlf5S8rzlWN\nhJln1CqreQ2RywbpVBuGztpuw0fovGl04CyFDXpxPj7Y3bLJqbIgmqCb0sTJ\nQ70pD+MgNlL58nyXZrSr5lN9Rf1Av13mksce/9p7p+CskWnKWOk4xxbh2RDi\nqv2rU4fJdGr2FoQaROIE4o7RvJgLX7dpovpoj+eu79fT6XLK3N1OPb4pZaXh\nYoV5J+GsoAyzcDRNyEvrjjsrmAnZeB56BpcC+q7CnBH1PJiPK3g6ulzWeqnf\ntJmFyDdja+1XHq7y7NN4Fq3LIc6t+8118YwGK1eQ/OozjwbsAxvBLoJMmCeY\nMiyqZdMVXMsV4isonIONf0dqI8h5vCwXx4nYExeCcaA+m/bLUhWVxN6SR5OL\nvcxNN2UTIQu4psHq7DshXmScEnOEizIaaPaBQm9Zg1siYpEgmN2HaiQqdeE3\nIrIp\r\n=pni6\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.8_1569353419633_0.27238313756026655","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"@hint/hint-http-cache","version":"3.2.9","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"94c8b0cc44b14a4957f585b4692efb6a12418dbe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.9.tgz","fileCount":14,"integrity":"sha512-rpdgJeW41WQAWynl0W9nwRyJa8poayq8ZDY8pzs8gj0cG9M+7dHKJQ7pRAVQ+VbtlsHTl8Uo7/7TgvJq8P+vzA==","signatures":[{"sig":"MEQCIH3VYMjRWI7hbzddKX2GLpMFdzVZnJ41pxQN6Ro7AqnvAiAN4QlRCWHkcnuYUSeNnRTTMcUlQuBtvq3dekOJdS1z5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjStACRA9TVsSAnZWagAA7D8P/R0DAQwbh1p9lEKQ+1Hj\niDZxnahZHhR8++DRDyEwxYfJMIUJ1C1YGtBYiqY+kIRkUEXwKfDrGj2OFKLv\nb96o2V6ZN8OqmbFsTvZ8ePpmEuVeuUwA04M4m9mfwdkLtTEfYGTmm2oBz+W+\nM0ikCdft3VflQFDpgzssaCwJ76ifRcggcmiCgA1nuvjJccUtxG4zBSEeGlvV\nUhO43rnjZzI7AUGqppFxe/Yhc9eCffHShLboCPq02/nY7L4/aWFK3i28IsRU\nxwrd+I7VIPhC7twIUKtF/uryqSo8DWOIHE5rmfBBAEHehGvXzv1/Fj1LDwuA\nDvVYrbYSXQC0AzaIeqy6d1iIroARP9Rzrirq4vj7nStBKKzUJrwCKPvPqk/x\nwbglEneBuINaLxaXhJ+7RlNHxfonPNzYJpo38vTah9OXtmR+fv+G18RpdH2s\nArCDknk5sBiCKTvJIL0GBL1gFkHg80yl229Fa41yQndWi7X9ujXhRF2gslZi\nNdIj7n4LIzVqojbms95YGhPHEjcT61hhKKGK2QKeA6n/PJJW4l3r07mX1ngf\nXOL5k3QwFWuPAZQLeF/6o1sFL08FPiO96bF/byp8wnDdUZfIgeJ89qQzXi6y\nO9mCOeK9N8cqEaVAMl7fi42nUSQ1HWAfGc453otJ1xC3N+1ZbtMFEosMu+uL\n+CTQ\r\n=UnTM\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.9_1569532735859_0.4034803822206623","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"@hint/hint-http-cache","version":"3.2.10","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"9821ff1f2d2e1b9983568161d1657a8bcec28a3e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.10.tgz","fileCount":14,"integrity":"sha512-1Q/eZ/CF+If2fDVnCGuIdxOuaCTnoo76J28wHMBpGgiweFylTh5SdU0+Gr9tX5/1ikGX2EUvbDaUS2W08pZGKA==","signatures":[{"sig":"MEYCIQDje8FuRVjYZB09U1Fjue0dG3L0upBuirYCtpuGHU5VtwIhAPVGdmrJJZf0b4B4VNIoZ60+7HElX423ZwiyqqwpDIYw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63064,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp3MQCRA9TVsSAnZWagAAcAQP/0E7jAonD9nYSiTn4jj5\nT4toORAydFCOy9+OMOQzBPu5o06h2njbB3X2sK6JPhid1Jgw8ShV9MfpsqL1\nhePM1H7g+VrkFNx1kyzE957p4ncqc5zDBM6lh/LTVFlTrU/TH9ZPDlMfYUs0\nqs6vSCGZ29WMxZ6L1NWlnyt8LkKHDoVhyNjAMo2rFGeV+QfRc4LckgceFQQP\nnZEVS0pU1JZNkqA6L7w508hx+HMpk4HPqMUZp0X1sIj8AsxHWFecHC4xd09L\nLWy23NhWDlxdvYqiegXmVf01s/nRExYoZEPe+K2MI11cpNDEWsoLftnhh6cx\nSwW1WvbgceUK5JOqPByOYMWLLQAP00DzrR0QwmHAeKZor51/0ufNHxrBtXWX\nbQwFGJqHj7CMjWxgdAxsC/YWQwo/k80lMgt8IiL1IcOydEOIpP0m0Ax4ooSl\nh0Bc0qfkaPe6GowhYRDq26KxJI74UvIZpmtlJIPLAgvq+ZlfpxT/eFDtNm0v\nKwHsmWvsSlxWu+bQBbiB055AB2LNaMYvQh0fvl3AcvqqKePjjmIgbidXUVmP\nJZUCEiszXjW5SFA+HIvUYnqDLIs9ExGrsMxTGX+OMXPxopf/Qk+KgTNI8t7p\nAr7rmJL0CEO0JG2+cXLhRGUkDGgslgXn9OAOLLKBSAu8KM0W0OEBbZlRbCYc\nzaJG\r\n=z0pS\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.10_1571255056025_0.570467373918812","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"@hint/hint-http-cache","version":"3.2.11","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"5572124ca11aa27bbc14dd9606e7c70eb8b6e4ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.2.11.tgz","fileCount":14,"integrity":"sha512-epeHkqxGij5iKEqkA5SWhiOfMbkMOgCoQ1ickd2PBgWDXczCmA6EuzEKVnfF9FlsmL9ONsD2WURt6rIwVrgVfQ==","signatures":[{"sig":"MEUCICF8YroEL6weIrxveJUitXw4dusWY9QzIZdVq3lxEMW2AiEAkbCUNZnhOIdQt8FOsjlzGfLPf6sjhbnRwsUFnRG57NQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL02CRA9TVsSAnZWagAAulwQAIG3Mfrau6O3nM2T9LS9\n+cOFZIr4g/T+PX8CvfgiLa9IM6zc03D7QfoUIm0Y+2tsReWBEPZ+mxii/IxM\n1ovrdHtX1cr0SGiZhK7KL6giTYrNFZC558lVUxtj/Jv/206ZesRF+nbXHjMk\nIIz6VuU+ZtIIeYfRSfjYZTlVMPvOvV8zDwLSGkrHl3uXqnQPpSSxYB533xs0\nNGyF/lzdLP62xBct9Eo0DI/Lqi9whL+1ca0BGgB+yg5xiI/BDrONcQhGFLR4\nJjxryHEhmt38qciIojED8sQoepNoRZY9dH7Ihji9NNv4aiOxCwBWSFRaUwNN\nUng4a+5d2o3YKFWdQlAazTBR+VKdw8F/XPnEDjVjnj7mf0/JYESLQBRaje4Z\nHsrkoBpe4i8hW6LgqXJ+gL1dQvEVEVLSYN3e/6OJSbfgcrWCatHBQkCvy1bY\nmWLEbw4YkjVO9TWPCLsnzmb/ExmJUt00jI/Bh6cC6PZNZ2p6oIMJFuQvkE9k\n70a4OhpTpanjkujuAUv5MdE1xRE84A5SwD0qAgYRzmkAfWgBKU7aEEOwc2sL\nYdZPAcZ5smfVVJwunzRN3XLyVGOirqFhvaQHR1oFK+gUyptZ52dZFgLAMwK2\nTar0JasvymxQPUzmUmQ//eHZj/IfbHHUR4LGBGpBA9VObn10rhX6LLKw3u4y\nerHf\r\n=+ay6\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-http-cache_3.2.11_1572388149878_0.5122984794924972","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@hint/hint-http-cache","version":"3.3.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c62d8b267e95026fa21afba4c02d113de735aef1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.3.0.tgz","fileCount":14,"integrity":"sha512-HKOXbKZOYkbUTlczpzvIqvscc3xxFLxlUwsz3wOBRcjhaYtnHptMXjm9mdEusQniiAAhxHyIi/XaQKaq3iZUKw==","signatures":[{"sig":"MEQCIBVvqnb5O+4P8JqnbhasrOXU5SsbQBnPkXJGXW2rhMi+AiB9edwELfniKoIoa/W19bS1PDONaY0BqoEODXG2D8QpLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bPwCRA9TVsSAnZWagAAM6UP/RDukftj6NJkmJbcdZzv\n9/oHQKf2ggaUiPzAVRtY9+mhlcIE5k5ZXNxsecrRXf0YyQJEdziY8BaX3Hg/\nIFmmNzC1o7Z+PbonfuzlxZhpRkEe7R3+oUiuuFeIwxgPFv3JkrvG3c84bgaB\njbIwXb5gbFb/6CkcZeOB26Rs7AqG69DjwpYdTYrqXdYU08TpfzoZw1jw3L2c\nte90exopTOwp0jXGSAFUZThgz5DbWxGurwW1tQFb4F40PRrSIWu0NJ22hw9L\nmSVTm1ak6x6sifsq8UwnxUKsy+VUP1PVELIsKEtCy1uEO6GcSNIaqInpQeNs\nItMBNFmGy+WG+KqYe4yZz7nQHKmW2VBAvaIOz4HQpH7XMak4i2TUVxbrMXfQ\nNdoLYB0zhCnMSXSSstZ48uYJsJvSfF15Tsg8gn9Br+yjKhI7h0ejarmqEjP0\nwb/i4+jPf79ifG2w+lb5jAImIY3ypbvEonlViTq6ujt9xuDoCclIIVmCA0OE\nD0MP/el3fl+gsv/JlWTuLL41KNkvkOIR330JH06deTO27rDr19n6xqXVuMHj\n1QAQnH7hykTDTzHE9BMAI5C0wMorUneeSEFECfSakif+hN5tNnTspEWWKlRA\n6cfzLkBEudVY+DxBDlJL0qMMruopn4mJ4dZfl3g/cPliqidJq6ZlFM73uF/2\nMvlU\r\n=3p1A\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-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-http-cache_3.3.0_1575334895644_0.13106145137494507","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"@hint/hint-http-cache","version":"3.3.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"b74ec5e440a11a8bc3d8a17f9ffde8cc9465b061","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.3.1.tgz","fileCount":14,"integrity":"sha512-tdKVA0wzFTY70DMDhri358QUGWpjxgWBwSbE0mZ9cVy7pwQifA93PBmVOBigZvszikPSppQV6xXt3sALhxBMJQ==","signatures":[{"sig":"MEUCIQDGe5dG+MzanVVNzuF/2cvamenNLZR7PsonVB8TJQSVtwIgT3SU6bDo4Jes/e14dm1Gh0BrT5G0CXm8uLdXZJ3LkOU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6E2jCRA9TVsSAnZWagAAiaAP/jTJeKW255qxBoLywxaP\nuL8IHw/2e5FnRJeg4AgPh4GEmTqIByMWXr+SAlObX9tb/ZQ2X8okujHP/ENE\nfEVMSIJrPo9/8G5OQNySFDPgAVsWT2JN7gvokan42ZEQJd/SoiHA2L0leq2z\nt9xU9oo5wgjbsCxarjDZxlyuOJ+0fbi/8Iqm+6eUt3DK2zZe74r4j02ex4Bj\nvPmNnZNQTE+ut/26NlzdZ782OeTeJpNyEgE4RCcJPhwL1HUqrEj+2OlubmBK\nsEFDekkCpwU9E+s6MD7BrDDxm48bbriTwMIOxionaCY4Fvdy7KnjegsXQoDE\nzm5wQAfpaSUq8yWEMRXM957cUVHJcj1+hgszKfhhkaswGz7uDP+H8s2A493s\nYq7no2XhtQDe/J8aXkvhELEfSpVJH9dRCQMdbYYfFrIRWYeGEQEcFomrXRBj\n/e7o2kV2aW+zaXmwthGK0EQiCdfXmB6lZa0eWdqJw8nRqEM6NAw/gqeTotMu\nv7uSTac0hBUQ3EVPv+6DxOS9XLrzvIoCgpcwgw/9aRbqXWd8/gqAF+en261h\nDmOrZG6dzm1NZ6uHus5GDfIGnODiSHe/XL5yS2prCT9M1w3to92r1KlvCnRp\n9g7mVcfZZ6dq5ky4BfPKSM9qJOdyNtBMJToS86dG25XEzm0K5BRmjRIRoy/T\nhl+b\r\n=Jqx5\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-http-cache"},"_npmVersion":"6.9.0","description":"hint for HTTP caching related best practices","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-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-http-cache_3.3.1_1575505315239_0.033884763954687536","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"@hint/hint-http-cache","version":"3.3.2","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"85f26f2d95f8f7daffe9432679e30c5094d6c366","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.3.2.tgz","fileCount":14,"integrity":"sha512-zTdU+DhkS9Eylp9bBZfItE//rw6FB9QIYyrGN8IAwq4K8XjnsW2aGy7HL4x1ueKUxyIxbNxniE+aiq5BkCVTYQ==","signatures":[{"sig":"MEQCICRSq3QEsOArNwXQQ+KgGp3oxW1eFIYkHpskWtjsiuNAAiBrrx5UamB7eRIv8UtOSd4yzLPNStBB4/ZTX+pcuuttfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpjDCRA9TVsSAnZWagAA7M8P/RkT1E0Eri0YRfLdp014\n2DDMOs8wi3JI0iHnrYstiRztWk6NrvtaDQbMbsL/g7C3Hw3M1zAv+FFKQqC7\nYvudNynACA266w3C2QAZ271FXMjy/nJbM9Jc/RobFxiuUKQiBhl2ZORSKQJD\n90timW0EElSoWqB+2zvwl/wIb1Bahb6J6g49MQ/rPx3C41uej3fBZFNPHkjn\nnEWo6mb+PXdURxGXsSCjlobzZ3ym+IMjU0r8B9m9l7gjw3RTgMPgmlCzTxZ0\nCOBW7OHIXSTfqlwYwSNPZS8xLxE3c2kdD0ez2HnH+bqT6c2rCdxHcnbk8og7\nifUOy0zkmmUF5mVuV1Q0frF/9LSLq1eWVIUqKx25xUAc3tSa4itDO8Pox3qC\nR78xn8M3FLAnfJvJPD1UTFwwxuoybQPMrMoF4PgME9x9lI1Zxpb4+J6QzDAC\nwfpt2DL3lV+fVkDPCrw3/TB4o6aOA07Z+camIEmxtpOoRTejCgcUmhDLbHc9\nmcetsFQ3SNlg/5rSNixPMcb6Ktkjyc/Rv1GJX5iQC5YLxdYNbSK9zLhRW0RO\nVTzB6EZd+amrIY3HNvs1FGVfxgf66X88lo+1FaTJ8VX5yxhKohxN7YkXgLu4\nR3TdOodhC0UquQdMhW1SxxQ06CKsDLDHiHsYz91SEgbtFNFW4KUE+146CjUb\niuqN\r\n=zubC\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-http-cache"},"_npmVersion":"6.13.4","description":"hint for HTTP caching related best practices","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-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-http-cache_3.3.2_1584568515143_0.28166627623981144","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"@hint/hint-http-cache","version":"3.3.3","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"4f330358963e5060ce727bfd02db093b3e8f39d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-3.3.3.tgz","fileCount":14,"integrity":"sha512-olm1rh9F66HRWi0arIfYrU4FA4oOqDnHGnBS4llW9OhuUZBxv15sR6IZH2Bqgai/XIJWinkNk/8zoyzYjIFv+Q==","signatures":[{"sig":"MEUCIG6ry4eWHpD47EfKjBFvlTRmSLOqxxeNKDRWO0p/u5mqAiEAva9E46mVU6Ym6Gfadl4L20D/W8wC/uhbtaVNn1Uu9Hg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel14ACRA9TVsSAnZWagAAC/sP/1LGOpmXPcmFL2g7qf/Y\nAxtFX1tOI789mtTeiSfDNFdzhQRBWzmFjZQX6MyB+c8YNqFex8Vj0qZcdNA9\nxfcmDDiZGJqTDeafHBK3EP73wQYwocW3+wbEQsj7A9uE927gH3S5zdIlVqRM\nMsG3/ifoel+2XYpxIH6Imp+9DakJnNHYrfTOXHfhzOyNOeT6gxDv8NexXUq1\nvFrt23VScfwgsog2CPTabsRsn4P/2b9PRsFjrqQcx/6DbI+lRz0hls0/u4U4\nQ8ORQVrO9fDo19qm4tYGZ5xXLRuGb3xO7PFEqDmq2TC65mc7jGWQfKI0U4AD\nbXcbpmrMa5QF5fwH8Hmyr7xgNwGFKGRfS4zB3N7l2HJKQ7rfBOJzfbUj1drQ\nku37IH090H6txqP0hEa8CpfdRBXI0T8UY9bBu5R3r+VtB1l647GpKF2Akodh\nqNltlmFJHr+OjTZVTO39RJ1RWqN8f9cDp2X4USB8guTp9N4XBwscBElreV/R\nSdD4lX7TnVLT+XYV9B3fTpbwAAS3teuTD01Jwgz4sgPdeyx/Xe/RGBNKem0D\nvOh3uP3vEub/NZwhYQZgHGOjiF9rhsaLL3U46eKwejD7H1qmEZ09PkFB2Ft2\nuBhJFdHlKUP88gg7hAsaWle7634x14oypDb2P8MzBq57to2dZW/TZKwu/f91\nSulN\r\n=6Bp8\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-http-cache"},"_npmVersion":"6.14.4","description":"hint for HTTP caching related best practices","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-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-http-cache_3.3.3_1586978303821_0.9090904143206882","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@hint/hint-http-cache","version":"4.0.0","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0b10006cd7ea1cc734a21422da836484c3d08329","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.0.tgz","fileCount":14,"integrity":"sha512-+t6+96z9qYEfKkA+tMk/43MJb1rpEcIysVRkbmoqyCMIrZOrUNahz31z1oUt+hVF6lN859/bP+oGS59v5QZFpQ==","signatures":[{"sig":"MEUCIGslncExn9BGc2CWdR7gsNXRJ/DR6h7gKcLLSdL6pkuVAiEAs+r/D9wrJHW4mmS/pAvRsXHzCV/rij+yyvhQtb8TTXo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwkECRA9TVsSAnZWagAABkkP/jlzxlAwD2wae6lmli6q\nSrgxZtMb0jGtzjaWpZ9Xf1QQd+9VhwoT5InCefjHy3/N7EXMLH3GZSawPEIZ\niTMyjUF4bmELSK5efknogCu9P5pkq4eat2MUE1As3C3fPWL3DpFUxS09pCyu\nO1z4p1i8EnnThCyEuecIsh7da3HQdNAglsUSd0+vraLj1rrTvvdbVxvbu2EM\nj7DFfNBoZbj0uZZMhkW3ThP4uchHDBXavVPYUTA3w2aCqnvJXhJbqTBk3934\nZaccUUhQCP4uhPzAGPG1HtJQ6boMAtBh0HMKoK2o1xTjHeUVSVsLozEBcNzb\naaa6pUF5W3Pi0EbhlXd0eGcp/3UdWgHp2mefZfpfn18mNWSgNls6hYDbQXqI\nEfqi9zFooZCqhNZwJw8F7kW8/3tMUmFJ3NW3PnvW3elS2tzRdGYT8TmsHKcz\ntfoPncTyx7iOaai8yZ4undK6XG4xPwk/lP9B6eIcAY+i+H0cDMx11DPEnur8\nfFWnPRLtcWJ93YukH35B2+CjtjwyN/O29GVJWqmHqlTNiRsisE8kJt3L/Uws\n9f0R4vvgsBB4xr76wQ4/zHQl+biMmCDjT9fuQreeJcJgsQS3IJdLjrk8yE9X\n0oNor4HUXI5kzEsPUKr8LdFHhbmG0jPo5sIG6N8T3PfzZigY07hMxlrRyUA0\nplxP\r\n=Y2sk\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-http-cache"},"_npmVersion":"6.14.4","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.0_1589840132134_0.4933180480039958","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@hint/hint-http-cache","version":"4.0.1","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"25024b936b3d5727def123300d63c8027cae22bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.1.tgz","fileCount":14,"integrity":"sha512-v1k4VmhLz00wf1O8k3w6V2HMuO+nj9qNDhRdK8rPg6CUQhg2mTSJIBq+Tw/jtJrOXkOyMUgF7C5SNBVxd5cWnw==","signatures":[{"sig":"MEUCIQDxMyMaEGcpAObt2d+W7n3Bl5aioM4r/KhGWhMaBghzNgIgXkhnRM0B+cASOydSmJpJTCA/0U7QkYU8kttf5X1j/ro=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzrrCRA9TVsSAnZWagAAJdgP/A7XPn60uMGFJ2O07WJF\nNyqIwtsxSE93QFAzdvoRh/15TJEgsUHpMGarIqvaak1kdkmNzar/CeSAqOdt\n+bD2Waw3b4r5P25HrYvTr3COeWMDyBBUqQBTcMYEFsBLmMB501IHQ1L9u5bc\no/tD5ujqgmbA9B847qmcuQExLKcAymnorLenrp9nUGjJUKQG1MV2sOi5SGHl\navVuV2BD2T9YLRw+WKG+Jv/5G1e682XSOfs2fawFzPJ9KgEEeagQHi+JDowM\n6yjMBTxa2Vjigoi6txpiM6BhVgMJ5ZRB6TxtM2o3TEMk4+zVY53o6U9SeE7q\nxTy4R6ohKfFF2wV1f0d5nMs1sOYeCSPA27HPyGW9ehT5MDglUlYrd6MGqzgH\ne1g67qArUa4baEMcUMS1zYZqX6ywe4ktouEHfjiNPioNec+4h5TWkTymPtE4\ndGDTnb3H7BUgyGO5Mv27tfZ5gs7lArBMf1caHojp2vGBjD0K+upV0dDm0ce3\nLcm+gOymoDLKJ9TGrjRbzstX9xNAAhTpE6D1K3W3J/NkzDXmREjzhLmxA9/Y\nN/H87gOfrspPb5hl+p56z5vhHebUMils0MNLwhIy1fI011SgQAQ1XjBDxLT9\ntZGmpGvC7GNKfxY8Fms+k7U6E9sq8dRG4fWXA5iK9i4W3oBfLK/A41DVkAnl\negIo\r\n=fbcg\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-http-cache"},"_npmVersion":"6.14.4","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.1_1595882218899_0.8216619736508564","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@hint/hint-http-cache","version":"4.0.2","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"c573294a3dee406ed593757ffac817e7cd19525c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.2.tgz","fileCount":14,"integrity":"sha512-EJVSu/YZZdzo9J3Nbf4lGe0I3bfyFgcU2vW2mFkRyt4weiCUeRn4YeE8ae3DpGWn1LvIEKLwi0bid165gRFdqw==","signatures":[{"sig":"MEQCICJURawApv5AboVNBOIw5Xcn6rCWkLiTcfzp9RO9U9TGAiAr1zczqTSBjNksUVpTnlbuCSWYOlGEmfEmvbCEhZVJ6A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDdRCRA9TVsSAnZWagAALP8P/ixzLIpbtwYJoRt/plZ3\nfoNrV+ERxYPsnv9wADrRK+ZevTPE0QkMyTWpkkPafqyyhV195fqNgEZjeeQm\nrOEmcBWaaQSIbGfgTOsRKQwRmclQujJdP4/ooG/q66aRNc1/klN+OwsZpO9C\njx0qBvxYHa6lSKJliGJNHHbBDybkWY5QE/ma5XjNFcsNSg2F5yh53/QL6ack\nYe+DPXyX/iTF7c6tjL3HqJLKMWgNFHfPKfmvnkdv6dqUeSOLEhWRdNrBe9G2\nV7YWn5iXecAhJwxyv1SmJ7Xx+1TsvEmzsqVvooq1Gw2BCWRSXT0jejhL6Wrr\niUi2L3taS4SGlWNP3o+S294tJENRld8Vk1/3ej9DY5xCaICKo+iuaAe4mR5c\nOwVwmge4JcZgZ4+lzKSF3BFmD6DNq2bnUMkTDk1GtO+4J/0Qx8de75QE62td\n/M8DFuplvluljGjnMtwQSIpczhL2MSg8sSLhTCeURQRKYCrSMe+S6evxvsnU\nYD2Pm9m5HAXFKD7T9Dfybm4XXs26pe5/GbO3v4rFqd73Uur7uOoa4b5WjGuz\nGZ9xMRBeo/hEA0MYnBAj77ppfjRz5EdaJe7xMHr97pobgpOzaQgIPtYxIUla\npaPP0ktRmefdLxngh9el4awpsbOBtzXSTEIL60VOeysIHxBTCoAc4s9B4RhD\nY7h9\r\n=afRF\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-http-cache"},"_npmVersion":"6.14.6","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.2_1598306129394_0.1972551336660302","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@hint/hint-http-cache","version":"4.0.3","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"3204fb342e2a3b80b9446ca24a3149e87a8528e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.3.tgz","fileCount":14,"integrity":"sha512-1r4kjaUd8u2ICFRO9Tz0rtlDGIs0H0lf5rRlUd/qcyLFZC7l0C5xnwXHoQsXOvl78OKDNiHGmlRvAlZ4aKwhSg==","signatures":[{"sig":"MEUCIQDtwNHXLiI+UbR/N89u9lS15CogzfAsSLXSR8MxtJp6mwIgYv/gwr4iXBJRsDWZSE40ORqScxUW6cQrJFlPGI3sJQo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrEyECRA9TVsSAnZWagAA9QQP/RdTtGXWXzeh7TRjdqHm\nE5KwMyssZvzfO9Utt9cmWlYgT7OIGDKRwYrt3AvmZ6qYzjUrxpJ1FMh24mqr\nEAKWrhPDxwUl9KDSUAPy8H2/ZFe9yZVJgs+SbrEs2wuLYkGxvRBXkYglI7UG\nVsR6tEdg47APqQbPRlGS2fQuJ+uhi47tJlUYjkw68d+t1E0Hc89pMLjfZeGF\ndk//u4Z6GY9AZmWEt4RTYsJBXva2G//P9fFJYNHcyhlE/wq2sJMmPmjIdSAX\n/hrVXX0qrxsI9SGtNxbndYVf5hGuaUxBueS8nyb8Rb1FID1Z61roWwPHdmAj\nFGMcIrQgWn2lbkCLFimfpfIImVPIcMxDNqRWL1h+B1JCdQbJZlaiddN+cw12\nO27bZoZWpPlJ8x5Ayjj9dDgox8fMPf3vRqBZdUWEH9sDYQgbI8L3DBIAp7uS\nwsID9CWKI9RoGkK0uTTFWxPKBMo1eLeP+4PO7jrCCtXWuOqJmC9sSRkurXDC\nQeodDisPGwGaYOdSaEMn20D5VrnLdSwAJOd2waD2fCOVnhU7P0GBbtdP7Y9E\n8mp5uDNDUrx/Fm8i2KA2RsUAp0O2ovdKYzuy9Z0Fz9d6Zwd8FNEnw2qAhDGb\n+lLd70pOxQu14ZSaljjo9msz2Q3IB5cSaMlWLIFyBRdfhQbmrEv6mG1mbJOE\n8+PH\r\n=sAMD\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-http-cache"},"_npmVersion":"6.14.6","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.3_1605127299580_0.2210670999372708","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@hint/hint-http-cache","version":"4.0.4","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0979866ac5c4e34e47bcc12bc1e39324f7d2bd74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.4.tgz","fileCount":14,"integrity":"sha512-MdKP3NhLL0/Lskj7QASWYlsnwv5ZWpedkXDVN9ysp8USCtG5xgqzb3Wfje1xCJpi3/SGHno/Vj9eWlH/o93jgg==","signatures":[{"sig":"MEUCIQCBTgYqkft1DDF6cxIfCXnU2YN/7GVQpz3kjZfL9RWyVQIgc1TBEudUs4nLojyJmMKBuLt/0Wvuhz6DJIfDttDa6mk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEsZCRA9TVsSAnZWagAAZyEP+gOVQP4+xibY2iaapQxO\n3KuxPjYRBWsXouWcBe6LAVWYCB33G1V76Cq4E3LgIrvMQ1sD6apLHwx7keCa\n0BNabbajYOwfjIMA/ggYXBcJ6y9qN2T1Shz8YwGBbyRhQ99tygOYXwf1lUzw\nwBobV9P2WPCibqzifjGN43BBOig4FzSRHFghWvPm9mEoXFeiEV+x4FteZo2R\nB2w6Wo/pfy58HxyzEqsfZQvnDtKIWKixVIlLX6jNr9fmmrZNNpCEc/lvIHKD\nUcKBYyy2U27yBfYlxmuahnDhp6wMO7siEHansPigGtSZ2Pz4tejyQ+R8bgop\nlr2cojmwQrEBpUSRvi3w3xjR3fy7odESK9wTwy2zzYixYn3Tj5r4S9RATEL+\nKZe2GzN1gmrsYWqc+4ghv0XvBJjLYQAPlH3j8YZuqT4rsuqWCa2p8XLV6iyz\nMxj4whNZoYBVGzkmqA5m8Lm0pfX01s8a60CXcReOhJyk1W5j/5Tr79XxEnPf\n1zRYQMkZnKmhgXV59gSLdVHVpIJkGwLzxnEdWpvQ2kBi5ddCh2DcsK4nE9C6\nfcu4HoIS/I2D/DsR0JiC/bQPVXSerWhbqZu5Bxu/I5UswLTmM2y65ZJ41hjn\nLt6cCV0EiBtRbIhPE/T/iaiTOhN/Jq8N8W26C4GpXArIy5actCJLM2BeLzJA\nDKK+\r\n=FZtw\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-http-cache"},"_npmVersion":"6.14.6","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.4_1612466968687_0.639406507085023","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@hint/hint-http-cache","version":"4.0.5","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0cfb6b2d7452faa202bfbc6b12eed442b7f67606","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.5.tgz","fileCount":14,"integrity":"sha512-dVGlY744rbduSIOMRaHS1taa7PAN0/jt2B4oYYQxMRIWp0iKKRc2tN5GRysfluXRSUdsB7urK0wzqupw1XN2hw==","signatures":[{"sig":"MEUCIQCj8YQ5L11sh+xZATrjV+L+O2GhtlSnw0W0FtDuLuMlQAIgJSiF30vnywJLdpQiZ97kunvAHz9wucZ/LrH0yax3LQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeXECRA9TVsSAnZWagAAIAoQAJb+Eo8OzvPF4D9qkOmC\nhlX6TnwQ9sqeKctXTYRgiZ1IUF7fipHv6+D7s9gwgMaBbiK+xlIMWIukIx/v\nmEsQMgI6VS/XoD71/9lHCfRJdqM5+QLWBLSRtnrKUZT1EYM/nqmIHD6Y7kQJ\nMjMAaigKFTDpHuTcNfPCJ+y8ry3zpzsrWHVFBlyLOh5y099YVbv4oXROQhOM\nUah6GKZ/gu0FZa+QMXDEof7m5GzuyxpSxfadZ3rWI2C+sjVrPIFPSSqz1jmS\nt4PsTO6qFJfVvUFnoEuStiN43u69GPYcOBb6L9H7cmtg8VzEcixrbW9I48xD\nwOX95XSh2KzVXWMxGh+0alA/jCcc9p7C0vvfywYEvt2/mxzOWYk9hUzL/E3/\nYO5dmdEYwTnPGX8k3/53JO8/hTn+fU6W3CzzpqZIFQPJVggytu7Rjvexoqtu\nMvZSX1TD4Yqcfx2KYhG9JddMoekt+71zXVHRzjuj+rxsCkOl9HDEq9hlaZrZ\nu1rO8uBCxC7G48rLCMEQrljD3waUb64qhAbC4ZcDrvCmxRqiYsIeHkjYOPNv\np4Spww5Zt1BEkf2xWPykkoXeVA+Ej3FQYmHAWykY6EdnmdH5TqFSVfHsn0Yf\n/VmxOVhr5Djcc7HMumol9coZkTo7PeJGlVZ8Zl43YBQ/EdGyELQgatkTmrq7\nBQ+B\r\n=mTnZ\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-http-cache"},"_npmVersion":"6.14.6","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.5_1612572099806_0.9228938671521567","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"@hint/hint-http-cache","version":"4.0.6","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"b5daa9f955b8941583d902d712cb37042bb68b7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.6.tgz","fileCount":14,"integrity":"sha512-lqU1P4Ii7JDqeqVQewEUkaJKrA3mKo2cvnBclm5EY9r0KUZvM95Fq4ONknOMugdSPozApYM2uhP8Dn3XuHfXEg==","signatures":[{"sig":"MEUCIQCHR4hU98DW1F7s4xqwwAqRDDCKPmlE0TZmps8fP5hJHwIgDzYD/mS48mRw1bI+CMQ2axEOb8voXJrS9/VAd5W2r+c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRIhCRA9TVsSAnZWagAAh+8P/i1dPPSuUU0BxePwcpfc\nGu5a2nbNp+jSPAnOdaqmcYDH4BuffugNSQq/Pk4dQmBiePGtJpEpgzKfgIjl\noJKUJnBxv+eOxgPu8jQw5K75a5ru6OzKAzkaICpGvBwO2GWc3xMy68qzGuSz\nFIXNjNU4xQ6WGkFlWI7FgYF/gnsxAl1EGpl3RB22Dd6tiablTJLVK0k+k5S/\n0+DXGxqmgmu++4t2rU0fgJ0+zUJHkfdbDqXKDfbsJrVu7zWOy7AV6a/hdWeg\nALNPUwznItmlJYZuNE4B68AJTEkIkofM5ZBhfGJUw7Iw3YK6MSScNylwjCnI\nuJ2xg6gMJoz+u7eCvJ6IiU97oEBgM39EhOXCTex5GYKwjdwqhXrfjS4bXwm+\nyZXZ2SXr345CyrZVwBy/3kdewf7jRvTyWXxSJuKX0NcT67wwo9tuipdxrOS2\n969CuMxHPeLGOCPfQ96N3+RQ0vH0TN4IembPAp5Y6A/d92Luf6nVJ9V2onbI\nmF45u4UUoKKTOp5j2GQ/CTPDQJ0VIUir5QLyV0yFT1BSl/kVHZuw9vR0TvLc\n+RW8GFNLOztaycTtb3DX9iGhEZXnv063VePXfpBH5o46LZH4P1c5LwCjD/VB\negssl5QAMF6hyJBpZDDJKaHIzdFf0FvZeoG2rUIYovcCiT6FysZ3Rm7RlfrD\nJvmw\r\n=J6Ih\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-http-cache"},"_npmVersion":"6.14.12","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.6_1623265825488_0.07183417561824257","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"@hint/hint-http-cache","version":"4.0.7","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"3663d0652a36e31bbc56213f4220e52ad81ffdb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.7.tgz","fileCount":14,"integrity":"sha512-7z8Z/kmQzLAo1rzXOJg2cxzLIo+ankrtfw9oiRtGtjilyEDDYHhfoEqcQwNRNEw1pHEWw94+xQvOizmXzHrR2Q==","signatures":[{"sig":"MEUCIQCgHhuLKSUjNShRrzmUpX83QGyoFvDmm0qZHqSt/QMOlAIgbKBXNCCA1yMM78waf/06d8PLJwXfwGlFifqjRH61sF0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86511},"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-http-cache"},"_npmVersion":"6.14.15","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.7_1634833180939_0.2688575138975837","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"@hint/hint-http-cache","version":"4.0.8","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"1ff647897d35c96c8ba9e09b372127c65c6d2790","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.8.tgz","fileCount":14,"integrity":"sha512-sMLDXSqVM5MFE0zRK3zQsXXgqnZdo4jsAxZ7CGMIWHEiFkYrB0AaMGzj1GEr7oTj26vB8vAOaxVNVVJzSm77xA==","signatures":[{"sig":"MEUCICSRhAJq8haoGk4R4Db+tLCjq8VI/GyRv7envNODKPwfAiEAlimvsCnn2RTKKo/xzRNbign0CsKb2Yvo4tLwW6jtjxg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86511},"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-http-cache"},"_npmVersion":"6.14.15","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.8_1635537399548_0.5016519960808856","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"@hint/hint-http-cache","version":"4.0.9","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"7d63bdd2dee9ba37e887738800033943c99158d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.9.tgz","fileCount":14,"integrity":"sha512-96lywcggFuKmghdbx1Bxsq+koougVjm6BuwYQ+YLFTGF5w3gZPjq8hS5NErohLZJ0A5D4BYK5CnQxpnLPjjOXA==","signatures":[{"sig":"MEUCIG0abS0bP/KL4QIrZwm7IbBjkOgAIiLmhc1QgWpDanlrAiEA0GuTYbKD2ip0lTbStJ5yEfO5GS1HBgH9VkV7OCyytag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86776},"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-http-cache"},"_npmVersion":"7.5.2","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.9_1636050564579_0.6696431281152013","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"@hint/hint-http-cache","version":"4.0.10","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"f4c69891587a4c38bd1f69597e97ee35df82f785","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.10.tgz","fileCount":14,"integrity":"sha512-laTnjwaOhZLabgXY5xPam+Wa8F05jpJEOg6l5oiY3P8Upoc/Di1wsw1LbKpaHk+5UAtW2xHgRM0RpjH2a2CpYQ==","signatures":[{"sig":"MEQCIC/Vi3T34ZmxoUnuUKVQ3SpNtMgECMOtu5UiQuv9T4s7AiBf6InR9paygjsUf9AzL+BulA0l2R3cb+5xtGldPMqUng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87055,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KR2CRA9TVsSAnZWagAAksYP/350010hQFgBCDfvPD4c\nEkx965CdzfsRugRSnhohsC8+0Skc+2jolkLWAk0iXrpTkq7fALyqOxDAeONv\nLgKxBTK6XRAx8OfOnrK9ifZFj1A3sUCoRVGkIvaaRxkUZgy3hnNkSc7b7cGx\n5Xhvh9ChHk8NAU+MthGYvzlQ/FhxZNnm+yrvgNEij4zQ94i4IEQOio/J82B8\nhm9njpN2dXFkklFjCqzW4j3rlSQyhKg2OFpHhkGLVAsfFbL8cM6lBOMpi1J6\nUS9G6KHK2pbRekKArXtUAye/LL1ucDjn5kAkn05j1vYB3Sao55eog833wJWG\n1WLIPUP2Iqu2BcTnoobM+THqQlwNWh5C12VHOfdvzCHYK9kqauVWyWhxEjJs\nqrAGAnnHjjTOBjsCA3zmosbLluI0iHJVN29DQhXu2sFRjvDAnT7O+youaA7+\nPpYn5PZYO+zOg3Gy98VTJXfVGilP7SSzlmHD9bPQRDjnJO989HNsFuGVuOc/\n7XHEu4c1dodkmVrRMemoknIE02kfpXWbTHeA9LISw1hzDQzBNVPZiGPHpjVs\n+xz4SwqAOzMQRqJIpBZF+ZRdhaWfpIouEq1qLyqOQ+Z3KM/Conp1psfkXTx/\nC8xBYifZH+WhdOB6Er2rKT+RYfg9AEgoJJOlwjbXPJH0bzpnZkmbvlYp3JPL\nsYPH\r\n=KMSJ\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-http-cache"},"_npmVersion":"6.14.15","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.10_1637006954950_0.639187209029991","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"@hint/hint-http-cache","version":"4.0.11","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"930342c7cd5ef65e4d5d1e769e6ae757c65da819","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.11.tgz","fileCount":13,"integrity":"sha512-2+MU4qJKTWNsHS7VzEjO42cYDfBILxUvA+baM3kGfYfWCjP570jqmLukMrGADvxfzJ3pAuRLuqvewnZ3eIPIyw==","signatures":[{"sig":"MEUCIQDMhGiRuUVadZAfGigNVWZ5b7JxbtJL7VqjrR9C179y2wIgC1BJWWpTlAsKIIn0bnoB28O3XQYxsgYzBcXZtx9t05U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkY5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfRg/+Ls2QEgGVNzhTpU3EgSrsSqiZwBRZo2gb5UmS6h+qmOStiV4o\r\ngfmNboaetAF4eGYlU5t/JVgKXuBHzZ6imteMT3inK1BFbKGOIvI3en9ntSOA\r\nLAqOeDzhOhTpqwMoQ8TGiP24pnkheMaM1fMjVE/GlO44EpQqYEsTxg//0ncx\r\n8iusETORMAw9pnz1b+ic2ghaiVEjPtb4nhfAKiyBDlwVqQhDVN4JQLA1PvJ9\r\npgR4CppgqLu4HxGUrRXGHQBFjLAiFuoInX6vfiLsUl36l8PZQrhnUliHd/BF\r\nCV/tuILfVyTDpYxcJv4V/cXpqpQI515J3uzUMHmPWv5qPN9AmQEOHvSdUDZB\r\nvpE6yyFErEjMPE1uk/ROEi2CqT+ncYNmujZRh+fUycs9NENhZHyJlNyiHNiK\r\nFGERUl97L3/oWYIVAuyl7rQfsoXoxLuJrCDbjAIR/mHdS5MsIGmMt5olMy1v\r\nHA0TISqAKZhsS4DyGWDx9q6WyQhna4BbDdWS4WpCYtfwz0N1msEHa3lBsVVv\r\ngR0M1LljwJ+VAuChQjerSqRx3L/srQkUuuvLCDvsJo6H4uX4ufkqfZqLY0Uo\r\nRH4k1gNJYqHQoWbmnpX8H1zsZot1SnKdkBf8kFpaWaGJOXhaqhCkEebrkBF5\r\nr4x8YHv9enFWN4Y2kzMeuUm3oIzn2LWfCZI=\r\n=FPeg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/hint.js","types":"./dist/src/hint.d.ts","gitHead":"259226d420ada93e86c1ee0e5876251967abcf04","scripts":{"i18n":"node ../../scripts/create-i18n.js","lint":"npm-run-all lint:*","test":"npm run i18n && npm run lint && npm run build && npm run test-only","build":"npm run i18n && npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run i18n && npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run i18n && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/hint-http-cache"},"_npmVersion":"8.3.1","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.11_1646937657249_0.08987212488972651","host":"s3://npm-registry-packages"}},"4.0.12":{"name":"@hint/hint-http-cache","version":"4.0.12","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"3bd23e4f59401b43ceebc09569e295d3dbf1b0c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.12.tgz","fileCount":13,"integrity":"sha512-nbJfD4MLXBlhcWpsFw0Pp1HsKQqMdtg/CkA3XtWGLpKY8xOiC4NEO3eJzQCadPPNOdrWJ3NYfkItAeRL34ycOw==","signatures":[{"sig":"MEUCIAveqo5TXTy9wKxyT+46N2Ey/Rn7b1ako7Ywy/kv878SAiEAnJr/YSAfPTcPYbZP6NIQ7X3BrSKnLBnc+F6QGSpEOnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG3tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoA8A/+NDnMp6lDwJR1v8WgdHbWxWB2CBG3ouRyZL/RHWqF0XDrhyOZ\r\n/xKmC7PvJ5L2mTKkbAy/oLCI6KLeTeUfdhJGYo6PL4YP3WhlZb4MFIklWWcQ\r\nPnythI92XQXivPqPSCJUDyE9f6/Jc8gdYA3sxS6BpXWmOBg9YEECzryac08s\r\narGhzip7EcxryK6a8duymoJx86jU7NDSVAFcfku5fBRcB9UCmWPZlXkPAEA9\r\nC77qEdxYiHp03pmAJpgTL+HH5OIOEcx/6UW+X2aIWjPLIvxlJyIe0Cuov79j\r\n3JgcC0GPnFOdGLcru0zPMQcixpBMQN3Jhv9TdFX70sNk84QJNXNd8SI5X3F6\r\nsQtPJVGfZ7+4uTdBBBR4T8KbXmEWP8j8U/codHxQ1W7Xeh7c4uFNBinn+vLu\r\n1xRkkpxXRg+rbFernThnUZ/q0SpaKl7VGKisgMFcO5iX66H+DMQPiNkIEGMu\r\n943vxODBik/ajrrcH0dQMtE0ywkU23LfHjlIyPRYlKIbm5C0qDhLlS5ka8pj\r\nn/90WnDh2QwTTiCPkxv6zOXmJKAAIormk3+5g1KQOBx8SrVYbdG85W2wPqzI\r\nGieICwvZaJXKlgHHWnT5ln4sEERbnZkPdmLFPObqh7/B1TIdROhOcLwW55S0\r\nA/FvYXYW3LnoBfmJgwDVpq4rcrfyOz0mito=\r\n=51ko\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-http-cache"},"_npmVersion":"8.5.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.12_1651011052698_0.6249845990547727","host":"s3://npm-registry-packages"}},"4.0.13":{"name":"@hint/hint-http-cache","version":"4.0.13","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"78fb499e898564ccc1129c9a885c220ce0486d94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.13.tgz","fileCount":13,"integrity":"sha512-y6Cqy/vNFleTseZLF8RVxn7Qc4qtykCAUZ7rWz672QqrsoQMvpodDl+ekZ58ScYsbwor8YyBOw8ikePmqWDHfw==","signatures":[{"sig":"MEUCIGCaF/yAbHATPvP1uAyaJrH2kNfmzvvXY0Dt4LFJzRmJAiEAs/KXWG6siSorEXZ2qNce3bC7p/GHEWozZFH6oF/CweI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdo/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoT1A/+LX1Fk26y6ycKzS6h3r+DF6muU3EY5YmTW5NncaHc/v8oSrVu\r\n2jJfnpSZdn9ir4sXD/G3EECZ+J/DVPZlXpWPf7BXeDRT4gmNi9SmGDTdo3gr\r\nLC/zI9xQ4SeSyYT8GQelt1k/Fqz/hvbkCqgd2Di1iaDnTVTgvuWXPOXtsoLB\r\n1n0WXx9pvZAUaEWMGdsmRF6yNdYtbnnyRf5PoiU3hTaE9DJdkN5Wsapo6jHa\r\nByPOrGFei2rVAWRPrn13ewBnyd7Py1bgMcVskmX11AKp6ksAlKZ2F173R8Ri\r\naEEyHlENA7OhfK0HqoOsqEjbPLMV6RRtCObhwHakz3dhAix/1XYOaTDNoAN3\r\nBK3cKeQpzNmHlozbcz0N61uhZDuf5AlpTbTb5dDsl82GZNR35Gyw2f4ruk2w\r\n7tdiHzdISSH53Ya1Rxw2xVif/Sjl2wRZJNKw1A6gJEcjY5gSetRBxNybkbZ+\r\n5HG1dk3wWghWKxVT5516K/FpJ1m1FhaAw9E2JSCw51RODZR5rtRE54YyI5Ei\r\nlRNhdoITT4NLUurcY2lX+uw7U64lAck+/3xPiQUCi82oBCFQ/aft4Y3aBEsM\r\nhtlho4xlVipzPKroK0O4eGcbUGUNtSD+Uw0QD7F0aO7ruGwLEUJRR2us0NW2\r\nApd4h+qpzQg1wjwoQVEpLpblLL/Jhn8zTWM=\r\n=ctjP\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-http-cache"},"_npmVersion":"8.5.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.13_1651628607616_0.07960800099439158","host":"s3://npm-registry-packages"}},"4.0.15":{"name":"@hint/hint-http-cache","version":"4.0.15","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"11207c5ce895aab8e2f06797df4f469519e19857","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.15.tgz","fileCount":13,"integrity":"sha512-yyJJvxJCD8VvDMcjrvBWoPEvqMA/o00GvBKEae16IfW3BVsYbaWWwxImj/6qfyRNOT1osQJWFA0FrcW5CrSLVg==","signatures":[{"sig":"MEQCICK+lQcrZ4lKGkyA19mzVvRwAoYIKCEeTFuV3Rmoru2fAiAFynJaOAuoDSFu9fXH7iLgEcx0xyWGRRcg3nM8QOv2uA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6B0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoflxAAnwst50OkRLi5GZupQy4uNzuMS5UwOMHFEpy05dqEV7x54HMf\r\neZF+Ct0KRoJvR/36kPRd35Q0LGX3vq78OieYUxqhn52+4Bwze66X2JXEsIVO\r\nxBaEHJqCN18Npi/zigaTqbfEqPAbEuFMe3ZtgwupiW7c969GQWEJDpOxQ9ly\r\nwSFwPaEOT2Ui/ytvz4FpF8HSK8GKG45Or88pEAvyd3qLlCcZkZpMkGMm9W81\r\nVRRAvaY57/qVUx5nVpYdjGIPJs+fRQWNFNQlO0bcaUx6+5YWXJRrub/060D6\r\nxBsdDPv/iuZDuG9SmOKaWDEYowSiOxJ6ye/mIwS3HNor+Y1Xm/t8XcJsj7OM\r\n+nVJ1PcjRFcIbX7H8b2MnphmZevQfMLoXxSs4ky8NLwC2WXw+1+n6R/27hU2\r\nHld9YJshB3MLLV3rlOZzhARQ5beIRzR89RESbwVTCVpRBH7TD9otTRwB15VP\r\nYjqIOfeXZ4tnCLmxDw55+lkBOClykR0biFDUQdV5OOLKPiAyVRy8Z2rvjlw+\r\nzRhU2ne8q391s2xlqR4+3vB5XmYaHjKXX5g3vMYJvOuqq3urHZF20rZ6XSKv\r\nWYCDsu2gjk1jYwUpr1PDymuuFKTXTOTi92FaD9SX18KmvicsROK4S4EWl8mh\r\nM7rDgVMGzahe61zFqhmrVOuI8GmBK3NE3+U=\r\n=EEw6\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-http-cache"},"_npmVersion":"8.12.1","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.15_1655152755844_0.031141806565571306","host":"s3://npm-registry-packages"}},"4.0.16":{"name":"@hint/hint-http-cache","version":"4.0.16","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"8d6cc419037e7844e3d6e7455480229f9329631b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.16.tgz","fileCount":13,"integrity":"sha512-E2oXiVW7439fadkZUh3AarQ3yzx+565sxN3aJhSJWUqTngMhuHY2hwhQNrLrjQVCwz6BxK5vgk34hd1opgcrsw==","signatures":[{"sig":"MEUCIQDZGVQT+w4qubyojFK+yFCaWUiiW6BShLutR0ousHU4+QIgcdJritORqVyuCN1cPMDz2i/x4NfWW0X9x4QaGRn6rXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFQrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG9g/+OfVMKBnaIzMjRgkogKR8rtYGg4nQ1WG01+UgxW/18i/DMrcg\r\nkf2xjsmn5qWZGjmBoVdWkxSVEGDKEWBwXKiRTcavR9SsacBd9cngzW0+mFb1\r\nR/bmuSTj3N49oH9jCN4dy/6ogYSiTMGtCAwpEY/USveBwsCUyv5e2Wod5WEh\r\n6EBFCjpqajA5FPRKxG6RQLWw3tyJeOIvwSgMeptW5e/cVAwCOGML/zsml9hE\r\n4ktTGFxx3DxpGe3gj8STvZUP2Pj0msL1I4HMlLsTZ0+aUJEzLCt8FFSvzymr\r\nU6jZ5LEQOjUocPf7qWqu4TuJC3J8os6nT4d6DHk6d1u75wI8jHyUi9rJwrBH\r\nn9zl/HdxodQCiGmLwC31dYjJ5Gxrv8oxTfD65jiXarx0XI5EZ4UXEHC5UVfY\r\necl0vX58ylfzovDRHu6HpHnyQkA6VeIqpIyzGaJWibKJLUc4NhxgQwXpJe0I\r\n4F7iUrAfgrh2YzJKXtnCuON2JT9UAUNMAqAiFWNrDCKG7cl/jB3Kt7eZt5rk\r\n0pz6UEbG6hBrKbLbmPvoyyBaQPZTrWg7aZpNE6hWuSM3aI10Hb2v6I6RQe1F\r\nCjv/J/IdjGAXg888+AzFDJG+q1qXGQ5kAG/6YB5s+kRAOymU5df7ut1xZ0lw\r\nWJtO/MI6efgLtCJhM6uF4SgRS/kTyVwMauk=\r\n=NQ4K\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-http-cache"},"_npmVersion":"8.12.1","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.16_1657295914999_0.8477762178487958","host":"s3://npm-registry-packages"}},"4.0.17":{"name":"@hint/hint-http-cache","version":"4.0.17","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"d13a673eb098e009f55b09f98b2130147d238487","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.17.tgz","fileCount":13,"integrity":"sha512-IERV3Vk7hKXWKgKGCN2c0kzIWvSjts2tMaWOllErcTd48Rdv7Nk2hJZMnY86xsl7HamgMZI68LoaWMi/CIUFBQ==","signatures":[{"sig":"MEYCIQDBnIb5AvQnB9IMndsYgEUwrzFZxuLYGyqxWJAUzWceyQIhAMn2FPldlGs/2YTu35FNWQTYL786sYJy10yF2k10C+dp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2yvOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtKA//eYerbOo8Uo08HLxD7P7b5J+SoFbzu3f7qYFvri3bu8uFd22L\r\nX/WE+vSxuxIeuAF3X6CUAHK8mm6PITIYGNRRqRNQyMW7neMnApj0gvPwnVWO\r\nBwMX9gMqvT6EORPdxZaiGAUGzith+1EzN/OCXjUCzyvAA/ab8G8wmkwVNueO\r\nA1/dx2bIk91qEfx0oUMK9YOJJc1EKINlTijwhLOyheFADTfMve9b/TOM9JkH\r\nyUqhPQzttoTC8/pTx3p7l4GIxNgByOOI1U3yCkoNyeG562vekOHAEan+D8AI\r\nEN8EzUzc1oPzQIkwwwnUNXNLsofA4SsUCpkpxS3Vb1jQGh4R8wzI9sNElC0g\r\nvBFEp+4vstjUTgKcvLtH9+GD6wfQIzb9XKBfC6Bwz+OO3pZB7EnZNEv7OX4U\r\n9/i3tQMbxkqcIhIONQt0D2w3ltstx52Cj6DVflrZy/S3o6Oyn/cn0PToctEX\r\nZDxfUkFzydmOP+EPSSnGbSIGwu7x18h0DxgQTN8ldYBrbSvQ4CGO6ZGwwFzj\r\nTRqhhrvsbB7aGS9BB8QTzY7GaA2jZqIBoquKW5xplXKmwnTVq9GT6gG+l4se\r\no1DRMRzZGnjIiKZqVcSrr0Eds9mYJFF4jVWQM8AGugt2Z3DuTqQXGg1+aspK\r\nWrFW41c2ixpbXbWScrbKZhQ8fx9op8D5a3U=\r\n=xXic\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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.17_1658530766228_0.7636340119049729","host":"s3://npm-registry-packages"}},"4.0.18":{"name":"@hint/hint-http-cache","version":"4.0.18","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"0470e5c2e65bb5e2bf61d1b808a611324f941b98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.18.tgz","fileCount":13,"integrity":"sha512-Cf0CoHu2RRlG8DdhIF+yCIrfeQ8gPUUBGE9dFxtmANwGNPx5UALx180dgwgF1Mzsf6VMVLsXohOvPB43bwFVGQ==","signatures":[{"sig":"MEMCIGv3SDnrIzYSZ3LoaNukwmHqiAXan3M/n1D8dvqUv4kWAh8itwcfJhiO/TieNgkQp0pOGNTx0ezGkpF1U52UJKnG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3f8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGQxAAn6FnAyJoQiSQ94CKQiDN0dwQw8QfdBlWlayrFDS6cRbwWx8V\r\nnxUQaEx/prK1gIFnE0pyZBXnRXuoaZEWwkg6tdyQHaTcjhcsyRDuSyhqFxDS\r\na0Vq6OPAMPeMVrTumNuZt6opyZsseoy7qhzICwa5aJlzwfZkjHL9PGrx0HVW\r\namcifpjRntrJO09lot/U6lID+Kg1H90PsCorqrBQKlIe3s9/xPdRm+DoQBKl\r\nHDUoERNGXXGMfySCvIQ6oOwGUkkiMO2I/XWb13NIFDy5pWp2S8iBeXhIZvvL\r\nEOFQB5uNLztT94qAeALdUMHP/Af7y0MxsoQVI5jkqfYoEyzCco628HGTZPq6\r\n/YGChtijVTPrph8dKHoP/lNNlkLA+nfA9t3/Mlw7oS7cA+Ysrq7d4NHHghKw\r\nTGYx0DqNht70W0OMqCfmzurYEeZQdVJW9NdOf1DtGS8U+5fWmIr8qNBVdc0y\r\nACPoiOweGC85wMGbL4NiWS4YyV4eDM4LBjfhBHxztBu+5i4QlBdVk5htNhfB\r\n1lQGgfhzje9Dh8Nf3N+cMN5aUYveQAsMWSi81ycYkVRRdSrneUoI5w6nAQY+\r\nqn861UIOpduq0kenz1uLW+oaeXa6EPXsax7UVmxAHaEHjV8ZVVBzB0i0cAYp\r\nQ5bzhIV9hQ96p2q5jeesVEUeHWJUzd4jVk4=\r\n=1+LU\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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.18_1662482427815_0.6081928732023327","host":"s3://npm-registry-packages"}},"4.0.19":{"name":"@hint/hint-http-cache","version":"4.0.19","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"936b526d1c5818b72538c4be44fbd5395af72cf3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.19.tgz","fileCount":13,"integrity":"sha512-/LM2iaK67RcVuQ+FFypj3brXXddd7C0034G1m6tadVCB49n9mTfq4dvYayAoGVAtHPGQLJEtUZlkHF6JSYKkng==","signatures":[{"sig":"MEUCIQDrb0/8K1iBlwmkgNI6h+IT/adn531D8n3ks7Y8ElnwngIgJhCPaM4rnhAWFBK9fQRxGnxrFQ8xdFbi+8ufc7jWF2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPy//ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2jBAAmmW/jKF5IWxjXB9NsCJr1gE9kRgiNjQ5EOUD5TyYKlBx62/s\r\nuxTszlKnpfiTkBXCmh6Q+YScCr9r2Sg+4742bjyMIOJeXVTum/WsmbYQCZ6U\r\niv66JA3LHNvS98ThiVbUa0JSV9mHK/DME7ntZqMSx6ekZT3iUCXipzRz+Ihi\r\nCSHyQAkdUVMltdWmWJ3RjQNge9KNdCBnYsCLNdxFIffP5iiv6QN1DmiSl1p5\r\nwK+PU8G6Lp4AOGWwJJUIMa+Nn+AgNri7qh3Suvc8FVChRulAB4yxQG+mP8m8\r\nKziUUUbenNW2cTwlixKl87r6l+Y0oKE7ezZDrj7tI5wM1TZ095TiB7li2c7q\r\nuplpGgUo5tCN52IXs4i0pS3p869LdyVdlnQnVxx7mE0munF/YT2106QfIFBs\r\nh3Ny7DiwDZUh7TqKzIeoXAhBaoZELsx2aiLTeyoxDKdGdZiEUFZTaGukKniE\r\nrXY8ZrkSeqrSCAnXqXnwzqPMCFJtzT8Q5+E1FGnDPNydaMtzUWuJuGjoDCMb\r\nc+A+yYxFUA2yIM9L+pb6UwWRAAnqKXnZZPVXzZCVuUe+0JDNy1+Bb1dacG9q\r\nVFcK9sFoTV3Ae0PbT8tR0bb3hX+Qu41u6ouowhH5WXJsWwPLSAG77B0/tOdm\r\nyT28UYExVl9Og7Tdp3o0xKUXiuXNfIuptBg=\r\n=YwMX\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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.19_1665085439139_0.5363129453253772","host":"s3://npm-registry-packages"}},"4.0.20":{"name":"@hint/hint-http-cache","version":"4.0.20","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"d1002694d9d5fd5e5cc345a5ff557e5f4ea166b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.20.tgz","fileCount":13,"integrity":"sha512-jxphvAQ4CCIzgQnbsnFijjvJjjPuCV+sDkLGj2a6tfMtbQ+q6SsFlenuQsBOP4gaoDleOpfhiTXk7+rzF00Puw==","signatures":[{"sig":"MEYCIQCNB3H28HHw1tpPkLFZgqEnUxsa/phAnUrBUl79KgJmQAIhAIXNTlgE2dpfsz1CLU2lIvt0FSFzNq+f0JgmWm36R2N1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE50aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmryEg/+K+kmJLLVYib0gsOvetSrVFc3jdjYvr5jpa++AuvNArIbsZrk\r\nTlb6Vf4PrkQvGtrmijn4Eca0uDs8igpYEelGQDGT1tIICGPg5b/Pac9h8bf+\r\noSHNAY2sZcGFmXutgVzzKvqZ4SETA5rwN3HCRp9MUHhIdEe+Lob2+mUjxNM8\r\nGCWmirxNdvhlWDeneM2UeIbN1VgVZpAJebQXw7K6Q3B5QhZW9DtUjDuU6rmo\r\nFg6WrLfSOEoQ5+3rn7pYn6yqDhv7O5N9IyqTS8zF04tNxBfg8Sg8649PT5/Y\r\n4YDhQ/DfBRnZaq/+W3krbuljPC7XZ4W9czlPs6D2zVuM1PcJV+LqHTRut0/4\r\n7GODJedHEvkPwRbJNeFHeSsmWvhU9pSevb6koRb+JgkZTo0yg2bX8nQMmwSn\r\nmHw0p7TUmbwYc2PJyULn0CSr6nhfIvE6MADos996BmYiM5fTKSGOeUgGL86W\r\nX1euWFVkqgfLnKm/Kslln1aq6DWBTetGyfAxkN4ekZpyxqzjO8mkQaYVUIxu\r\nuNyqCevYL93NPyH+y1hUC2uL3v9R2Fp+DBgGtcPldHMg8HwU+YpMiCGztaz5\r\n3nsv374OBiGv6wY69qsMIGqzEuyN/W+svLLoBt5NiVw8AWp0/Ok2DwmodQng\r\nq3lTnWpbh4wjYy/gtyH2el7rsR4SCbSuEdY=\r\n=+o89\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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.20_1679007001877_0.4066412147165335","host":"s3://npm-registry-packages"}},"4.0.21":{"name":"@hint/hint-http-cache","version":"4.0.21","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"3105219aa62e88f8db5d62e5265084055a7e960f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.21.tgz","fileCount":13,"integrity":"sha512-+2MgUWfQOI4C90w9VVE0mXDNpIIsblQrs4qB1GGyakXcQ+9KGpQqnwhjOgYvsJar8ZWrRup6YfMXdpmwikDivg==","signatures":[{"sig":"MEQCICVE4nhLUTV73cGgvYjA9MofbQdOwIezZ2NLLOpFg9YSAiA1GW566A+KMiZ/eJ2YsI9H+li9+2npzr16oF79mNzDKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46838},"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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.21_1686328049611_0.02740375518456073","host":"s3://npm-registry-packages"}},"4.0.22":{"name":"@hint/hint-http-cache","version":"4.0.22","keywords":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","_id":"@hint/hint-http-cache@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":"6eeafc6d078e0f2129ed0804a9af3ff06b584dc5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.22.tgz","fileCount":13,"integrity":"sha512-3Y1Yb4oiJnmXuFUdGgHEca06vrp4X1M5Da86gkual/WNRJR4l+iGvWMCbD/Z7dbyP87awabCiFmtaUca8hEb2Q==","signatures":[{"sig":"MEUCIQCHaT53Z9dT+j2sRJuFW0vkPfDPrBxmBxlUkDODTyU5KQIgMEAeFlRIE5+a0v3tI6QraxQ/Pat7f0SrFoGNW1IQVNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46838},"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-http-cache"},"_npmVersion":"8.14.0","description":"hint for HTTP caching related best practices","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-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-http-cache_4.0.22_1687907332084_0.024262354993059176","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-types":"^1.2.1"},"description":"hint for HTTP caching related best practices","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":["http-cache","http-cache-hint","webhint","webhint-hint","webhint-recommended"],"license":"Apache-2.0","main":"dist/src/hint.js","name":"@hint/hint-http-cache","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"hint":"^7.0.0"},"repository":{"directory":"packages/hint-http-cache","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-http-cache@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-nUdeLHj+RdezmYp9prkoN6Nj6wp+q3fxyEtGc/xaXdf+Gizgbb+02n3Xocd8+OK8/k8y/n8lOXlfzzvDUkg+KA==","shasum":"4a905c17704d8dbcd28a4e48483c5f048ee2aaca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/hint-http-cache/-/hint-http-cache-4.0.23.tgz","fileCount":13,"unpackedSize":46882,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHDbDzAkaYJ/FzYABA+oodXe9MxPJDXI4oC4nJli2WSHAiEAqntKm/h4J//EmqZ8d9heLbgiShTPNrns6RKpr2i7nog="}]},"_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-http-cache_4.0.23_1724949350848_0.5602293710730064"},"_hasShrinkwrap":false}},"name":"@hint/hint-http-cache","time":{"created":"2018-07-16T23:40:12.347Z","modified":"2024-08-29T16:35:51.319Z","1.0.0-beta.0":"2018-07-16T23:40:12.455Z","1.0.0":"2018-08-06T21:30:50.921Z","1.0.1":"2018-08-10T22:01:12.694Z","1.0.2":"2018-08-14T18:09:16.538Z","1.0.3":"2018-09-06T21:18:56.403Z","1.0.4":"2018-10-31T23:16:13.658Z","2.0.0":"2018-11-05T23:54:29.728Z","2.1.0":"2018-11-28T06:38:10.769Z","2.1.1":"2019-01-02T19:45:25.145Z","3.0.0":"2019-02-07T23:04:59.228Z","3.0.1":"2019-02-22T16:45:55.564Z","3.1.0":"2019-05-15T02:51:20.168Z","3.1.1":"2019-05-15T04:20:56.845Z","3.1.2":"2019-05-23T15:48:57.300Z","3.2.0":"2019-07-23T16:31:21.700Z","3.2.1":"2019-07-24T21:18:40.739Z","3.2.2":"2019-07-30T19:29:42.980Z","3.2.3":"2019-08-06T20:41:06.581Z","3.2.4":"2019-08-16T02:38:35.353Z","3.2.5":"2019-08-29T15:53:03.229Z","3.2.6":"2019-09-11T22:30:42.620Z","3.2.7":"2019-09-19T18:31:50.493Z","3.2.8":"2019-09-24T19:30:19.782Z","3.2.9":"2019-09-26T21:18:56.030Z","3.2.10":"2019-10-16T19:44:16.162Z","3.2.11":"2019-10-29T22:29:10.016Z","3.3.0":"2019-12-03T01:01:35.815Z","3.3.1":"2019-12-05T00:21:55.403Z","3.3.2":"2020-03-18T21:55:15.247Z","3.3.3":"2020-04-15T19:18:23.940Z","4.0.0":"2020-05-18T22:15:32.312Z","4.0.1":"2020-07-27T20:36:59.016Z","4.0.2":"2020-08-24T21:55:29.476Z","4.0.3":"2020-11-11T20:41:39.729Z","4.0.4":"2021-02-04T19:29:28.856Z","4.0.5":"2021-02-06T00:41:39.917Z","4.0.6":"2021-06-09T19:10:25.617Z","4.0.7":"2021-10-21T16:19:41.100Z","4.0.8":"2021-10-29T19:56:39.684Z","4.0.9":"2021-11-04T18:29:24.766Z","4.0.10":"2021-11-15T20:09:15.087Z","4.0.11":"2022-03-10T18:40:57.432Z","4.0.12":"2022-04-26T22:10:52.994Z","4.0.13":"2022-05-04T01:43:27.721Z","4.0.15":"2022-06-13T20:39:16.018Z","4.0.16":"2022-07-08T15:58:35.148Z","4.0.17":"2022-07-22T22:59:26.481Z","4.0.18":"2022-09-06T16:40:28.034Z","4.0.19":"2022-10-06T19:43:59.312Z","4.0.20":"2023-03-16T22:50:02.092Z","4.0.21":"2023-06-09T16:27:29.816Z","4.0.22":"2023-06-27T23:08:52.264Z","4.0.23":"2024-08-29T16:35:51.044Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}