{"_id":"postcss-pseudo-class-any-link","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"dist-tags":{"latest":"11.0.0"},"description":"Use the :any-link pseudo-class in CSS","readme":"# PostCSS Pseudo Class Any Link [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-pseudo-class-any-link --save-dev`\n\n[PostCSS Pseudo Class Any Link] lets you `:any-link` pseudo-class in CSS,\nfollowing the [Selectors] specification.\n\n```css\nnav :any-link > span {\n\tbackground-color: yellow;\n}\n\n/* becomes */\n\nnav :link > span, nav :visited > span {\n\tbackground-color: yellow;\n}\nnav :any-link > span {\n\tbackground-color: yellow;\n}\n```\n\n## Usage\n\nAdd [PostCSS Pseudo Class Any Link] to your project:\n\n```bash\nnpm install postcss postcss-pseudo-class-any-link --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssPseudoClassAnyLink = require('postcss-pseudo-class-any-link');\n\npostcss([\n\tpostcssPseudoClassAnyLink(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n\n\n## Options\n\n### preserve\n\nThe `preserve` option determines whether the original notation\nis preserved. By default, it is preserved.\n\n```js\npostcssPseudoClassAnyLink({ preserve: false })\n```\n\n```css\nnav :any-link > span {\n\tbackground-color: yellow;\n}\n\n/* becomes */\n\nnav :link > span, nav :visited > span {\n\tbackground-color: yellow;\n}\n```\n\n### subFeatures\n\n#### areaHrefNeedsFixing\n\nThe `subFeatures.areaHrefNeedsFixing` option determines if `<area href>` elements should match `:any-link` pseudo-class.<br>\nIn IE and Edge these do not match `:link` or `:visited`.\n\n_This increased CSS bundle size and is disabled by default._\n\n```js\npostcssPseudoClassAnyLink({\n\tsubFeatures: {\n\t\tareaHrefNeedsFixing: true\n\t}\n})\n```\n\n```css\nnav :any-link > span {\n\tbackground-color: yellow;\n}\n\n/* becomes */\n\nnav :link > span, nav :visited > span, nav area[href] > span {\n\tbackground-color: yellow;\n}\nnav :any-link > span {\n\tbackground-color: yellow;\n}\n```\n\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#any-link-pseudo-class\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-pseudo-class-any-link\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Pseudo Class Any Link]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link\n[Selectors]: https://www.w3.org/TR/selectors-4/#the-any-link-pseudo\n","repository":{"type":"git","directory":"plugins/postcss-pseudo-class-any-link","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"11.0.0":{"name":"postcss-pseudo-class-any-link","description":"Use the :any-link pseudo-class in CSS","version":"11.0.0","contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"license":"MIT-0","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"dependencies":{"postcss-selector-parser":"^7.1.1"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-pseudo-class-any-link"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"gitHead":"0c5384a271488a2839ba5d0b6074f3955a0c558e","_id":"postcss-pseudo-class-any-link@11.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-DNFZ4GMa3C3pU5dM+UCTG1CEeLtS1ZqV5DKSqCTJQMn1G5jnd/30fS8+A7H4o5bSD3MOcnx+VgI+xPE9Z5Wvig==","shasum":"3d80d934b5b1e0d67de1458b5b433a582d2d19a2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-11.0.0.tgz","fileCount":6,"unpackedSize":8467,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIFs7zIEMEaqr7f4FqflZ2K5v2FOYkXcCGQCxoiGlzNFBAiEA+mtkvR6yQPOAirrolDjexEXlg0TQmR2GVP+ETe0O6UA="}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-pseudo-class-any-link_11.0.0_1768375474408_0.006385238493404444"},"_hasShrinkwrap":false},"9.0.0":{"name":"postcss-pseudo-class-any-link","version":"9.0.0","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"MIT-0","_id":"postcss-pseudo-class-any-link@9.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5fb5b700e0ecdc845a94eb433b8ccff756cbf660","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.0.tgz","fileCount":8,"integrity":"sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA==","signatures":[{"sig":"MEYCIQCWQyZ3E4jJGL/v1kSj3+Vt8cDt45r69+T5s/Svqmm8mQIhAOf+lCKxb1CBzTCnLsE0bSTJ8/4Tb4hmnJv6jeDriNi8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15439},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"9b39d3736b58259601a18d2b1ddfe343f563b4a8","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"any-link-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-any-link-pseudo","exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"9.5.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-selector-parser":"^6.0.13"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_9.0.0_1688372209412_0.5793203844902552","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-pseudo-class-any-link","version":"9.0.1","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"MIT-0","_id":"postcss-pseudo-class-any-link@9.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"71c24a886765763d4e37e21a27ecc6f1c1a5d698","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz","fileCount":7,"integrity":"sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==","signatures":[{"sig":"MEUCIQDRfaOKY288umDqm5N+THKFbh5fdeYFQyLpntRLGYvFhgIgDqKls7pmT0NUp4eauqUnBnkcQZFI/h1UvLhqrO42hB8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12010},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"311872ce7c7ec62cb073d757fdf251529b1ff4fd","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"10.2.3","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-selector-parser":"^6.0.13"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_9.0.1_1702682451698_0.9643056941149113","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"postcss-pseudo-class-any-link","version":"9.0.2","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"MIT-0","_id":"postcss-pseudo-class-any-link@9.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e436a7db1421f8a347fff3f19951a27d4e791987","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.2.tgz","fileCount":7,"integrity":"sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g==","signatures":[{"sig":"MEQCIHUdA73Z9pxLIlEFeEA63SF7xwlBzUAm+k8roFmng+JXAiA3V0441XgxBKNvuFv2l76lLdAgyTQelMJs6w+YD/CzjA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12331},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"0da2c0efb923424a12887ff104a8d759e9cc431c","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"10.2.4","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"postcss-selector-parser":"^6.0.13"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_9.0.2_1713711304801_0.18872060701895976","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-pseudo-class-any-link","version":"4.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"9152a0613d3450720513e8892854bae42d0ee68e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-4.0.0.tgz","integrity":"sha512-xindgr9qqu6HDnHKk7lJSIII6nvNmGKxIb8BOUUfteLctichwaNEGtwWvq66Sc/EuTu/bK/+fAyLRwWkPx/nFA==","signatures":[{"sig":"MEYCIQD6UJqA7Kb5HoG01lK2a6B20x016y/HlhJ1ltBC6mBmzQIhAP8WpS/nhvNcew5qtA+HsvFwq4mT9oNOsLJPdu5ovaz9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"9152a0613d3450720513e8892854bae42d0ee68e","engines":{"node":">=4.0.0"},"gitHead":"877bfc48f6b7ab46f76cc8dd92476585f6ee6287","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","clean":"git clean -X -d -f","test:js":"eslint *.js --cache --ignore-pattern .gitignore","test:tape":"postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.14.2","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"4.0.0","dependencies":{"postcss":"^6.0.1","postcss-selector-parser":"^2.2.3"},"eslintConfig":{"extends":"dev","parserOptions":{"sourceType":"module"}},"devDependencies":{"eslint":"^3.19.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link-4.0.0.tgz_1494452353034_0.06308793765492737","host":"packages-18-east.internal.npmjs.com"}},"0.2.0":{"name":"postcss-pseudo-class-any-link","version":"0.2.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@0.2.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"dd4e5a599f5497694bec607e55f853f1f9dd4b3a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-0.2.0.tgz","integrity":"sha512-MvVTzIjqry8TMOQpF+Z4BPkiJPpTmQoAWR5lcGPakWjBt8NXav+LAob/tsghG5TTYc9AESDPU6LclGrcINzF8w==","signatures":[{"sig":"MEYCIQDuLxb9zI349a3iJmsJ9jlJ+S1osOfZhBsSihLBu2q5agIhAK2JaB3N0xAirV9bFET3MY1a0iChWtpIPXeDMuBv1N61","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"dd4e5a599f5497694bec607e55f853f1f9dd4b3a","gitHead":"4031e178f990669a927008584d5bf821ab24d54c","scripts":{"test":"gulp"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.4.1","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"0.10.32","dependencies":{"postcss":"^4.1.9"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0","postcss-selector-parser":"^1.0.0"}},"0.2.1":{"name":"postcss-pseudo-class-any-link","version":"0.2.1","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@0.2.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"ca3bee223bafd624dc628df36129e7b4937c35f7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-0.2.1.tgz","integrity":"sha512-xjbb2KlVLTbVy+D8PFUj6vQqduKGjSnyiMn5XimuKRAdDUwwGpyMybDGpM1v+FWqrnDOrZPwOcrJZhaosEo0mA==","signatures":[{"sig":"MEQCICS59wENfyKbEDjNSrttvXkSFfNlbv6EFmGGEOALq456AiBOASm+kbMoDzgapMvAey4EFWjbzL49lxhxcALPlvoJjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ca3bee223bafd624dc628df36129e7b4937c35f7","gitHead":"3066056db0900fa2b4b61d92bdd9806cdbd90e05","scripts":{"test":"gulp"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.4.1","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"0.10.32","dependencies":{"postcss":"^4.1.9","postcss-selector-parser":"^1.0.0"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"0.3.0":{"name":"postcss-pseudo-class-any-link","version":"0.3.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@0.3.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"747fa3a335cf645703abddef552cd7f6131f48b9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-0.3.0.tgz","integrity":"sha512-0GIjOY6vrjVG2e75EnYI2h/hz8Lc6OYNWU5ni/02eNu2lgaRHC31VRy0rYTRN2ipes87+bTMRZ8JxNtotmvKJQ==","signatures":[{"sig":"MEUCIQCFHiPHFnv7AfYo6C2K47iPFhV7qJnMuXgAJkdI/xC1kQIgUXXmeLF9NGlx+xjsAJ2Kq47R45POGBEalLSb9w7V74M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"747fa3a335cf645703abddef552cd7f6131f48b9","gitHead":"71472948206e164f679f55bb2e224b29feb948b2","scripts":{"test":"gulp"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.4.1","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"0.10.32","dependencies":{"postcss":"^4.1.9","postcss-selector-parser":"^1.0.0"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"0.1.0":{"name":"postcss-pseudo-class-any-link","version":"0.1.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@0.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"aa8160d9c70a808493967d8bf391da2d234f3745","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-0.1.0.tgz","integrity":"sha512-Z3TC0WcTZ+pMrKms8XCzBJpYeGDkk3HUaPiXZTi53UILCGu9QYZQC8gN5Pvd9EHV+HEMNj1B6VOj3/a/fbl88Q==","signatures":[{"sig":"MEYCIQDTtmcL6EgImABL4yu1uETTJApmFS1hpIe4SsUsawe4UQIhAN2F+/EhFe9mw+Jl7aJusTx/ZXFTURNfm/0/KlzXVDqr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"aa8160d9c70a808493967d8bf391da2d234f3745","gitHead":"c489a1f0fbf0732927671661c67ed84ce81cee31","scripts":{"test":"gulp"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.4.1","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"0.10.32","dependencies":{"postcss":"^4.1.9"},"devDependencies":{"chai":"^2.3.0","gulp":"^3.8.11","gulp-mocha":"^2.0.1","gulp-eslint":"^0.12.0"}},"3.0.0":{"name":"postcss-pseudo-class-any-link","version":"3.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"639dec897ec122dd0b81a21cda0a612803d920c0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-3.0.0.tgz","integrity":"sha512-wFZZkoArseVhvGD2c+AXj7nf3Ojy0SbHR0ZY7ifAWLH8EbGZ+GRnjRLah3imNmeWiZ46u2OeAmEOl4M7fT7eAg==","signatures":[{"sig":"MEUCICCShnYfA7QRp3U2QOG4z51qbwGJzavn9A6FZyrJMrxeAiEA8lLnUP6iOFZbCDApyYADZSGUbFmZunQFC0CXSrrng1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"echint":{"extends":"dev"},"_shasum":"639dec897ec122dd0b81a21cda0a612803d920c0","engines":{"node":">=6.9.1"},"gitHead":"3b8eaa5783d68b1e8032a1e51c7d59727de34cc8","scripts":{"lint":"echint && eslint index.js && jscs index.js","tape":"postcss-tape","test":"npm run lint && postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"jscsConfig":{"preset":"dev"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"3.10.9","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"7.2.0","dependencies":{"postcss":"^5.2.6","postcss-selector-parser":"^2.2.2"},"eslintConfig":{"extends":"dev","parserOptions":{"sourceType":"module"}},"devDependencies":{"jscs":"^3.0.7","echint":"^2.1.0","eslint":"^3.11.1","postcss-tape":"1.0.1","jscs-config-dev":"1.0.1","echint-config-dev":"1.0.0","eslint-config-dev":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link-3.0.0.tgz_1481054288568_0.7965149953961372","host":"packages-18-east.internal.npmjs.com"}},"8.0.2":{"name":"postcss-pseudo-class-any-link","version":"8.0.2","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@8.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f5738503f2045de0c4dc216eca99bd835f74e42e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-8.0.2.tgz","fileCount":8,"integrity":"sha512-FYTIuRE07jZ2CW8POvctRgArQJ43yxhr5vLmImdKUvjFCkR09kh8pIdlCwdx/jbFm7MiW4QP58L4oOUv3grQYA==","signatures":[{"sig":"MEQCIBfgv+km/1rUlQc94SP5XfHSmOmKlNMsr1KVoA5HVkdoAiBGsl0vQO8fXGOLcub5dYpZkiHE4mpOS6OyD/L2XePgtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5Tm0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtthAAjAozXdCe6qo87vT+71G6y0Am9L5zbsq6SYBaA1s0s3C5QBw/\r\n8Tk9XSmHy+iH//tvtEXtjnW0Jx9ksBFhJHeuIV+JMDMjfwLfMJrMn0lir/C1\r\n9wwfcp3wrFxAYNVNHp3ZQIxSzgChSmDM9/pcSkfrhgBbCqKjTDrpJSgw+fe7\r\nPOZiY99CIHEHnEbo0hbmMe4evqzQGFvQX45xXcMttPDdPRg0si0rfZaaIQmg\r\n5HJ4mqdBFZeQbaNS5r6QLWFPC0psBjAvO4OMe2zfMLCamMrqazoDQWLhjtc+\r\nimehTJ5JBCx1OjxPkCb80eKbMGqZk8i2qmsMXsbtRRvrrgzaCzXcJVhctFwX\r\nqxoU7vJpUDPG88oPsck/hhkuZINMRoLF9McFgQsT4QVWt1PkPnSZFfouYQkm\r\nBYYx1onUL82MoyDXRvBN7fu6xDnXYwUAFuPhJRWQRdNqv6Sx186urTVeIJC8\r\njaiNiKNGoyzoJLbMgh2ISmh81bFlEHXztV9mUcfPHX6XOJxTcLIlqWE/eWli\r\nwtMIy6+E14IPtns2jPAjMIixjtiTAg/bAp7ZB/8rmIPr4CCybPH+/9R1AApo\r\n2cC8S97rwTFmpSreCL4QTiTnimZidK/SAvNsXS1o+RsnSvauw5Hj35+r/fdl\r\nvNCccJTXsaz9SCShBWGA8wxT4T/Gs5UrfXY=\r\n=h/Jn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"b0ae4cbff3543e39641c1439cc4b943b3fb2a16f","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"any-link-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-any-link-pseudo","exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"9.4.1","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_8.0.2_1675966900441_0.2432107897401785","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-pseudo-class-any-link","version":"8.0.0","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@8.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"66afd0470bc5845ec7a1827f53b8c66e4f4908dd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-8.0.0.tgz","fileCount":8,"integrity":"sha512-9+SUrDDrmyQijQBRSZFfx5eL0N9sdtHhibcGPgmyQyYCshFZbhH22vfbo2z84U2TI8kh1TrN86t5N2xN2ojq0w==","signatures":[{"sig":"MEUCIQCQDiKh7rdjwoZMyElEBaS6JIXzXByX3ScbmFjW4JmhagIgWjGAs54h621j32cU2jas5vIQ58g7yFPm/uO8GMa64FI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz6HYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfQA/5AYz9+dmMIEpM6p/cptQgAsMhHCqEwSykeQjwoJROqERV76SO\r\nzwetEmlJEf3Z3BnSvnYBwTTZSR76eGqJrHHfC9RpKVgN3VyQnZtvBrzt3Qp5\r\nu2Un773Q6o5VjL4HKutUVh2ZuTHrC9VKnmb0vnXAYy8JIOCvgo+dD/BnH1fk\r\nzl2fKLNsmvav7OlsoYXxL7zABi/zQRGpJQK5Q+EB0s2GVFfcF/WoYwU/aWPv\r\nb/bAHxf7GL/e1XBk1eWfOw4fefcCKMEhLmw6Bp7SAuIYtW7pdwx1nKQjnUlx\r\niU7zCZM/lr6rGIDTi7GDyD5D+4ymau5bIUPrHimTOtXuDxxtLF2L8sboVww1\r\njOdtKfGlXxeIGGK45v0QsAVQl20X9Ys4f2xuN172+Xt/A/s9L/w6+YpqYJqd\r\nidjhtXh4fw3RaoET9iejcFrzwjJ3W78o4eQ84C+1t3UvrRrzIqwJZK1iRIT5\r\nEQn90qYMCDT6wgqjF3kI6+S0RqJgP9u7dKaog5RDlpa6pW5a+cPfhuwK6DcC\r\n9whzvheORGh3Hgdv+SnqZkVg52ZC/OOvn5jUR7iTIx+1wBUbcl/PR2mk4j3E\r\n18/d5/MFdaqpopt9feiWXwa725azH0s0QkYIZZVJuDGRzhQVvb4jmH9jSvhN\r\ntwO63r0/REGwTaOG8+XNosRT2Ait/L9SwF0=\r\n=dxfu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"7f301aaee754f684bbf24db6e712eeafe8c0f502","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"any-link-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-any-link-pseudo","exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_8.0.0_1674551767904_0.3460729641656113","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-pseudo-class-any-link","version":"8.0.1","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@8.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"8cbbeb9dbe4514406ab3ccb21c85c6205f31c93d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-8.0.1.tgz","fileCount":8,"integrity":"sha512-CYcLGofbGDhx6BmNFQGFH0cqW+qlXVk9PR4LZ8Y7g24m6TopYKt6FSwhMGAIyme6lQxgB32XMhpYRwZAcPnMXA==","signatures":[{"sig":"MEUCIAPwWTem2TbqG1CLbXEE+uCos+9aXLveqDd4SDZEqXCaAiEA22t/hNVDsrfYhRHlrXK2HVzXJ8Ssw8JPk+WUB2/HteY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NWOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZIQ//VS4avfZ9xrUfTPCZIcBXVdiq61bzzNsTbs0CC23RzS/9goKd\r\nhppXPzY+fw/fTyHkKvirB9pA8x4R8hEDXtimMsBR16RDrhiWeJiJsnxGVfN7\r\n1tDTn43zFtw9Uc2n4dF430Bf8UsdNihzCAWREmc25+HGYp5oB/PwjMyip5vT\r\nDR4LvqxSBgnfbel4QRYB6p6Fmqk8YLSrE3kqw6lsfOm8Qh3X6h4RF2gjDXsE\r\n1dYRbfTZDG57dc685eEVyNq95GukHlArKYeby90JnGE6vTtGbyk947pPE7sX\r\nz6JRD1+EXe90TUG/QNgoqHA3e9Hvsc+u8il6x5FWxuN2o5haRrsAil7ksAf0\r\nl+McM+mJrt4M3Ncxbk6OnNax9aliVEMmMEfP3UI3LDSFI4TzAeASag8YjWAu\r\n0nhNd0PJkq+9REbPygJCsjSb35pHHqFLgP4/M7V0tk4/y0YULAN0FgVSPMkr\r\nANVyKiSx6EZB3lcuNyTRP+qFmAnSCTDjY31G5GL0ecf7TwjELF79zUdD86Kf\r\nSkaTJQ8d6YIjFkfGStldCPjzSpAE7LfaHxGudccIwHfov2aBkkAnMxMW3ili\r\nvvxrjaUmL0SZwIr6XfjO/VQAnNiu1A4eMMgr4WDz+VSiyMfIog+o/n2+ZDXa\r\nhrX+xrHquvuyyERANEFJ30Qx2Xg89VjwyQM=\r\n=VvaO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"89234a6945cd9986a8a1dde543e865c2b331ed44","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"any-link-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-any-link-pseudo","exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.18.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_8.0.1_1674892686350_0.6242204444297896","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-pseudo-class-any-link","version":"3.0.1","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@3.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"6109f6e001864a3f1e2e6c32937c960b0b5b35ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-3.0.1.tgz","integrity":"sha512-Dvu/+6OjSvTNnTvtPvjrG7TdnFIOmaN8K4hPXkde6xOFO6yH/7YiJ27NwPwh5QnmAS8yhTQojWTRORRepcUloA==","signatures":[{"sig":"MEUCIQD+t8Q1PeqNGsQgje8x1ul51ruPtAnvY1O/vEBGKxCvQQIgdJDkrXKcDhwdgqcRt9GoEVsX1UW5+Cnzsa0y7A2yJQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"echint":{"extends":"dev"},"_shasum":"6109f6e001864a3f1e2e6c32937c960b0b5b35ec","engines":{"node":">=6.9.1"},"gitHead":"c2ac7986239e9f447808b16fd211654b09918a7f","scripts":{"lint":"echint && eslint index.js && jscs index.js","tape":"postcss-tape","test":"npm run lint && postcss-tape","prepublish":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"jscsConfig":{"preset":"dev"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"4.0.3","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"7.2.1","dependencies":{"postcss":"^5.2.6","postcss-selector-parser":"^2.2.2"},"eslintConfig":{"extends":"dev","parserOptions":{"sourceType":"module"}},"devDependencies":{"jscs":"^3.0.7","echint":"^2.1.0","eslint":"^3.12.1","postcss-tape":"1.3.0","jscs-config-dev":"1.0.1","echint-config-dev":"1.0.0","eslint-config-dev":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link-3.0.1.tgz_1481739348646_0.25723769469186664","host":"packages-18-east.internal.npmjs.com"}},"7.1.4":{"name":"postcss-pseudo-class-any-link","version":"7.1.4","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ac72aac4fe11fc4a0a368691f8fd5fe89e95aba4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.4.tgz","fileCount":6,"integrity":"sha512-JxRcLXm96u14N3RzFavPIE9cRPuOqLDuzKeBsqi4oRk4vt8n0A7I0plFs/VXTg7U2n7g/XkQi0OwqTO3VWBfEg==","signatures":[{"sig":"MEQCIAr4CziOeY5ug9apSTATfc6o2yPbIl763WRd82TV8+QIAiACQ3Kga15DPAh07aoeFf3iJL8t3oPafIGa5lq03MidVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20370,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigzIHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpaCxAAhuzwG/9YsLuN9TVJgCGXyK+63SozQ50chVHP6BRFz5gdNu1U\r\n6ST+34QQiRf2waYfgytU0yS+iXNu+1DINo498BZBw3sX4SO1LMYA2CQ2gmqW\r\nC4Zc8Va542stphkkAethmFnbYVY4k5gTlRLqJUG+jZjl42wp2Kg2G4i3MVmZ\r\ny5t4bcXHp1o9bTKQwazL9PkOqohtOGVcVVEdPDJktBZRnMpjeln+td4Vrbzd\r\nN4JVoHRnnzNMk7E/RR/tkR+Noi9Kqn1ivD9e+pggICWlM08YLK1XQStcSOxK\r\nyIlwRaS+Iqp+YzVuZk0j0vX2UY/b2mA/nBMFoB7N9xLhE+0N2m5Q0lQyGaSE\r\nAecR1RCcNy2l/4pzSl131MZJA3QAIfryngyKRYGu4mROvsa5QTtq6LiVORMB\r\nMBGGfIMrggZn8SdKeP4ZiPt3f91bBjTyA5m8apVJde5ebR9VyD/DMYhgR+Ru\r\nkZ7c3kS8XfYrETKqima72uxTv+06mad98YKXpz+nDVgkrT6J53jdKXgRa9Di\r\nD643kzLfDQpk+476TzK8Sxt6F1gUQIrxKx4aHQ121ML1Y1gy7oSmNOIBDkOE\r\nzPxWous9zdfTQ/jpxxH1ZudiOuTB+gnMpGQmVGUc70BXXds6hXfjsR2UwVmx\r\necO7yuOVNP3JSzN9w2vCcqQDHNk5192wOY8=\r\n=+7YN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"0530b05bb161490af8d9af632b2d8f692299b89a","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.4_1652765190979_0.7748178809748769","host":"s3://npm-registry-packages"}},"7.1.5":{"name":"postcss-pseudo-class-any-link","version":"7.1.5","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.5","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1233b054004c386c681c553af35f68ec03fffaa6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.5.tgz","fileCount":6,"integrity":"sha512-nSGKGScwFTaaV8Cyi27W9FegX3l3b7tmNxujxmykI/j3++cBAiq8fTUAU3ZK0s2aneN2T8cTUvKdNedzp3JIEA==","signatures":[{"sig":"MEUCIQCLRJ4B4BEqX1e6CmgPHsi2PLwvSJxb8h7/o3wd9hjkGQIgXlIbIeoLBq01/QYcG4i4iCd615lq85B5Tgfgg/+yYe0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitGR1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrq8w/+OPLw12Mw5aIRxxwsy1adIGIRJpaBgkoiClcm83f+HAs+LcsH\r\neXwjFlIi4jXx3cpGuHAJkTA5vxzmM18sQakqryRfSdLQLBqbhiEaaswVunqN\r\nDZN/m/4Csg6aXHHiO0S20yUz3jV3hI1/fAw+igGhuExcYZonYtNYEWGak5EP\r\niR9RS2UaX/fnxpkC8GrRJmgYihOQLWF+1GgARqE1LkNUPjLkjWIN+smP8Z5G\r\nLzqpYIrkLnObmJ06dgCusZXFjCCh8tzHDSIc12VyY90seOE29pirT6hrx4X2\r\nQvvUJoD1VP/0A/Kv9x05huyjqkXJvZZJPZXT52fBC4mJy5iASOObBC9D3mkZ\r\n4cH6qSYFf+EZsEHC+6SyU1PtvontvKgqdrP8W0nwFwmSPdFGyWPzZzdWCueN\r\ndh1vFOHAZ9x5nKJL99x451yCsAvttd7l+eRuaBqnOZJOWjU1MGaEXcq7c7s7\r\ncDyA+NjC9o1xWn3n07icIpAJ/3PJs8cXh+lFBSrl7YONpZR9nH9L8TrQJ+Y4\r\nX4jYrlAKSvocnaATVghqJbeNdLwEqkZQ0TzznxX1ypnjH1qAKgVMLmMHG+SP\r\n+3/BNOf9UBVizHMimO6jnQpJsn4zISYrEve4uLyWDY20ZqXd28zJZ306HmJl\r\nl48TNKU44qsMf+xzvm+PsiU8koOUYy4B9Qc=\r\n=uXDq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"6f422611149fe8b22210be8fdf1db28215f4e383","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.5_1655989365662_0.2740548177142026","host":"s3://npm-registry-packages"}},"7.1.6":{"name":"postcss-pseudo-class-any-link","version":"7.1.6","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.6","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2693b221902da772c278def85a4d9a64b6e617ab","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz","fileCount":6,"integrity":"sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==","signatures":[{"sig":"MEYCIQDmhh3aorgvz7gNQq09O+63wpASXufCOfzEyWE5VB205gIhALSvmrjCip7YDwjx8oda0O8qAHMsnaQFBFL69ZBxfWYo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19862,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyGQsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfrQ//WXiO3/95uzqXXhr29r9gREsuJgu0kavxkdQ1SM6C/3Yt4igO\r\nNNA3TQquhl5FPCWQ8y7vH4DhcK+4wrlspj6w/3vR3rtidfo8J6gWCH2xYc7C\r\nUndLIo2lJnKD2956nC1Ev6dvWZDnME1WDRNJLN6D+UKfCv92n7MyMqIFWoZb\r\nJLC60NBnJ+N+ulp3UfNj83kDA2ync4CDUa4GWyeSyQFNbPg2wuG43WbA06H5\r\nPpgwKv6KA+7ZnnShr71ODRUNAVkuk1p/ahjPa3mSnreW5ZX/LirvjbGU4pbj\r\nE5hdqWwrYWStr1l2fPIb8WybJOZSEkGCMjiXjsmLNZj1aUT7qWiEhkc6XwxR\r\nrhxpiUzm2GuACxSyw6fcsM4SPkXwsaN14oyZcf2qXV4NKgl8tep9UPj90JE/\r\nNmvCalhgp0GEWwIt98gvZZI8kaABDySNw+/aFnxX9+G//2r6zzvgj9LFMAbT\r\nj2xTh6+B1Eddt/3/rqUhAF40QSTeKlla+ZbhGCQAc0doKOVOIvF3kD6YTTio\r\nocB8l3/Q/tRDPl4ihAip/cOz6Qy1MftGKiy7iJfnBCBoNTnZmH+d7Qy9oYAx\r\n9MGrrubzlJN7g8HWoCcVy39ushKjtOq3AQI55UUjiE4GKOe2sCm/1gBUSvYS\r\nhBV4LK+bbIq3WUC+eRiUkJpgjc/1slaSFHI=\r\n=dSeg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"9b383bfc0e3f00a8d5ecacb653654a64708e4fce","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.6_1657300012145_0.6677890445745049","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-pseudo-class-any-link","version":"7.0.1","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-pseudo-class-any-link":"dist/cli.mjs"},"dist":{"shasum":"9b7b3572b78b0d6e2016bcc8762b254e341ebdde","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.0.1.tgz","fileCount":10,"integrity":"sha512-Zt+VMw9qX7Um/cYOaywOQvXipDw/U3U83L6MFHocbjVIhLd+x5G4SSDmKm8sW2/HlaTno2Cazub8USrDvJ4DLA==","signatures":[{"sig":"MEQCICgkjK+h6a8BkVGnkb4aeMRntyZ3tONT6OsMLvtxc3FPAiA0wf0aF6a/C6q38w8FEULxuemtiCExuuBfbLhPdXvE0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxd3CRA9TVsSAnZWagAAqPkP/2meUuelLYKk91wQmUfu\nhGUhRA7nVR9UDLkruzjaMudtBWgQsXk6kzFSo9sriyD19WAnP7IGu+Y5a9Q+\nQ8iBQ19BoFtzGDKCiw7dJoK6jfX9jZ0KiM0X/OFDOhzfQ5RNKwT3v4ORhFJQ\n57Pp94mRfxUDgrGYXhDyYTVSCUz+Vnsr8AgllUpIq2lUH9OqE7k8IY+xolSU\nJFp2Q6ThoKoY0nO3+SCbkOD6m+rEqoXLTmsyshcDvkwOyTgyQ1te6KZo85OM\nJcnzz9ajyI0MHxQLAUFhHopFPnPq+cRSFUycHYaPG1FzGBLIYA+lAVSjyH9S\nKZ3jBhzc8iuqcZVLP8Aj1nC4D3KIQOQB7QCdVO42sEfN+WedXc4rISYXI95d\nwzby/JqWc5pCyC9TiZ3JPwwKAmsg+gu476C0Q7V+nX1WVVOmFNBeIMEgr95A\nZZJz285Av/yrNzgYd3t5tMJpw5ylRwetgqBuadm+VpMNyHUaAczwhivjFo5L\nXw00pX9+FlSmy1tjogLLOKOGDnUa9F7UTJSlRMjtpLgFEiZiNVVqhFrMR4Q1\nL+mGVzEm96f5n32QAPwGjGOmN5anlWs+vXq2S/FVj0N1o0y9KGsfv1ABC4yB\nM7fBNdLKFbhDy9bTICWDPsvnZsftY2GZAAqI0zszs5BDa5KPx8SdKGeeNqJ+\nM2/S\r\n=P6ja\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"e571c6e27c4eb385f03473e96ae2f3e0838e8b0d","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-selector-parser":"^6.0.7"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.0.1_1639389047769_0.9563120148889597","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"postcss-pseudo-class-any-link","version":"7.1.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"88eb02b9529c5458ffebc68df3760534b6c9fbbf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.0.tgz","fileCount":6,"integrity":"sha512-l7sAkLmm3bYq8wt8/0r/dn6o9mVCPq7MOiNrb/Xi2zBlw/+w1V2jKFo/3IijKHfJ92SwDqkVLPwQfGO3xxUdAw==","signatures":[{"sig":"MEQCIFlbYOOT5u2zAF70VfPN223g73GiA94G/9tli6o9Nb2+AiBgtgrrOMV5GGACCOr5W6qWaua76GE69hk4AfW/DP15Fw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh95ZECRA9TVsSAnZWagAACcYQAJyF5aO5gC9yVbNPVbia\nk57SZ3Wpw9Z+zIBbCCOViCg+oOxGkXT0LB3ZlDyey1zIXZNzNh8Cb7blFAZu\nsmeM4zUIixShVjw9WlnKXth4eQKn3Q6gq0CzkR0OxctfksUpodyOi1zpUCbI\n7VUPI70IYaGAP0jRa5l1gygPCb3CZOxpBJrJC6MxE6/K6yMYxwyek8t0FlfQ\nf+Xq9DGWe+iLRG5q4RK0sDSESHiSPFjFAjXW7ivnK1LP7FTICnBnvwIfK9NL\nbS8L9cyO/0vZZHTJoHmpmxxx8TFgEWpEkf4gQ8rExTPi7rV7ViP7AOniRCS9\n6eoL9zerC9M73DsB4bT7Vm8NmzQ1V3fsdk/H2/MvJtUMG+sQZzQ5+Ko4IoYf\nmjXwf/UApC+BuvtWavEwh6PGb21pVP8U0aSsUdKS8B7T2SXwe4NRAUdu7J1B\nFuFgQtBpvtawpAgnCHDdPBv34PRzV5woijpFQzcAJ2Ufa/IItp0daesX7dkM\nhyUfqECc27RKXaZpQA8BlAe2g1A+Uqs244KffRGe7InI0fXMWPsDJW8U/Fy+\nWtSbLNLxeT8OqJvjBzirbOU1sCdT/L+2IeVT72Uwn0JRnHxB42pbKN8C+VPZ\nTzDBv9yW0J51ooqfJ00Vn5Lw0iRh0nBNfuNE0XDuPlFShLwf3n9dI7F6wHRv\n4Med\r\n=1b7z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"ff6122eb2266fc6ff1c9c19a09771d67190c2c82","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.0_1643615811873_0.6086390476326131","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"postcss-pseudo-class-any-link","version":"7.0.2","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6284c2f970715c78fe992d2fac1130e9991585c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.0.2.tgz","fileCount":6,"integrity":"sha512-CG35J1COUH7OOBgpw5O+0koOLUd5N4vUGKUqSAuIe4GiuLHWU96Pqp+UPC8QITTd12zYAFx76pV7qWT/0Aj/TA==","signatures":[{"sig":"MEUCIFw7AkqTwX0vsg4dQomOCCNLG0ISFTDCiarKJZwmv84aAiEAjpPFJ1GvrJL4mflc6tYMV+7uRiMkfgb3xyGfCmbO7p0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cMdCRA9TVsSAnZWagAAVBgQAJZB5yYEggmzDrtr4J3e\n3DxSgccAQRq6g08wj/yhOLI4coMWv3r1q1KnxeKfYEB0He2EucOtP4+x3Lxr\nSzGv0+oR4aewQ5/ogP1T2YZEpce7fSRurX2H4ycPlzf8YqtHTwjigY2WZgtO\n7c7iOvxT/tmf7cMzKV4CEaN6oDmbNZ+aLcHY22BBmMdvQSVYL/NfgdJHexzd\nSH10XQ2Xu70zoKKy8QY9mfUDUss3m0/XYZqxua2EFQ5+pPmviX9004hx43dz\ndkhfOcDsP77JzxHchq3MeaVsT1iQFuoSyLp0UuSm4a9d9/6/rLleRVX3UM+I\n7GyIdBZuMkJvasaN0IUYeDiEMJZmnJfM6grtgKXI9MOXYP30QHkSnzyjO3Pe\ntsPoA5Koqv51FBzGmw4+syqvMUoB0cNlKOSJSr6hk3hHONnB0s7fAWcCTOHy\n5c3lP3Idt0o/6rNJNsiU/E/VMo2KMchsZ7XIRQri9Fm+zh5Gmkr6Oc0rvIN0\nWwoeePdFvGKg2IXUWHBGF7BIg26yC1NtbZsfoJqdhM5B36csyz5VeFfGO/VZ\ndshivnYug2V5rJfmsnd1OJkkjT5EglkBydOC1N7gSZGHfFnNLFywFVyYB1xp\nAWitBhzNimFTmO7tTvYVjNhfLZ6xrw7ri7re0Skq7+BeLQOxRqZwf5SVKbyd\ntJwo\r\n=dcyZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"0a26bcd576a0cf042e6156af027ab69b2e88f705","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.8"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.0.2_1641136925677_0.11665954357369146","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"postcss-pseudo-class-any-link","version":"7.1.1","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"534eb1dadd9945eb07830dbcc06fb4d5d865b8e0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.1.tgz","fileCount":6,"integrity":"sha512-JRoLFvPEX/1YTPxRxp1JO4WxBVXJYrSY7NHeak5LImwJ+VobFMwYDQHvfTXEpcn+7fYIeGkC29zYFhFWIZD8fg==","signatures":[{"sig":"MEQCIHS11JZUOuTXCy2wtOWPd7D/YjTCzDoYcVqpdal3VX4sAiAshE2s759gI+kg/YT2T/nGUss5PyydZXl+65M0HzaGCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/rK1CRA9TVsSAnZWagAAZs4P/3CEaC47jK9DOg1xk7Au\n5i4RyA2rNzob3/SUsWuM/nGvUU3P/eGZlD7V+YChbpCtCRvpa8+NGIsB1aZi\nMTQlFEVPHRyHwICOm6U7xwIlbcavHtbkcI/HW0dHImMGbBXhNK04wag06XKx\n6i/o9JUlGGRklZ97m1sfNeyXsi2vzYxkGs8sp1HTwsYUnH9UhJdJpLpxh1iq\nokkb2iN0lDnSIcTgMHJ3pC3kF5ZLBuFumZJvroDvyQBHKTAlfangpkKbrWn0\n0PDsvu4LnaJOB83EDM8ytRuE2lGwllPBrR+g1z24TiSEVIaWLO7orMYocefV\nEN1AoE7xd9Kg/5FoVmojLiuMRVU/Y2S5xrxzsEIbSft8GLQV7mbtNoR6Z6cJ\ni9SxWdecIQtYWICgFD/SUYeoiccuU+znYw/+VO9LUXum5pyRFTSj7zLhx3fU\niKqYa2tITmQvmWeUOcplAg5V4gj91BQ9/d+RodRctNQuRAjUSFxm+liJ+4Nq\nJ4aiGB4fXo1Wqgqjtz38PCSv9zJji05P218ELaoLt7HE4w0r4YbagM10Bdmu\nb177FNnmrGqy1bmp9Jh6VU9BRO83pV1rZ6HxzJi6iBRZvKahz88HARg7WaZ+\n0x/Hjr9gDLhq9z9J3vLatbC0VU4e+M1/TZhcZ6pYmCpg4aiNk2+xLg8DDHFP\nqt7B\r\n=ongz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"37268486d290b4863a0332a485a49eaa66599126","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.1_1644081845194_0.09323341184074829","host":"s3://npm-registry-packages"}},"7.1.2":{"name":"postcss-pseudo-class-any-link","version":"7.1.2","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"81ec491aa43f97f9015e998b7a14263b4630bdf0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.2.tgz","fileCount":6,"integrity":"sha512-76XzEQv3g+Vgnz3tmqh3pqQyRojkcJ+pjaePsyhcyf164p9aZsu3t+NWxkZYbcHLK1ju5Qmalti2jPI5IWCe5w==","signatures":[{"sig":"MEUCIDsjLYhDu0F/gkZBB3nxt0zIqGzghbFlh90qJJpMrsVEAiEAtJkIsWX3Rx3sP6sY9sZVYdWF7nA/tia5Xs7Y6md0eaw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19484,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSojpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8NA/9FP7Qgh+dF3Mzni/QxAeghm6QJxO0sauw80ww1tS9KoAgWc4R\r\n+LqT4XnTmPhAp3lqE8MmlEXEHlpmsz9+ZEdqtl42QM6ShNEOX7uqGMFhGKxl\r\nBfab4cll5/7jNq9aQaQXEqqzSQqf1frIAr17kOJ30ChJZDY6c8ToDeRiMq7z\r\n0dabt2KsSUWwmyxiEeOCNiPpve3WZt+ca+1Ps1qQw6H+cE0gkY26s3RqoPrA\r\nLbmxqUdIOWD2S/58UDPedZhA26maSFz2pUFAzhJtmbJS4cD+gaTZuTaGVX1z\r\n8Eqb9rsoJ/jFhp0vofWN8fuOxy3lztJNVfAc4rVLdi+jbmfCJKRhq6o85ATt\r\nqejV3+ReUym8A21Qtfxn5HGEOF94jdTf6XC20tXNuRsTw837AFmC7F2jcfnZ\r\n74ZrUroapr861Tr11STkbBHakrouJA60fxGao7wrt0BFEvcMbva8fV5LyaVe\r\nxITJfazUIwodYuiKVnpyqwmF8grk3saKlozZowARRqQ+GzBUvUn503rvHzKR\r\nqqoS76XMpKhvJgocLoKjVIdX6HqAD1mhIWaEEBpVkjs9ruj1xKwjYsWd3kYl\r\nP/6GbTxC61PiFPHIlsxTrBd329RwXJrn3G1jBD2+9sWXUeIFU4sYxjP3Ta6U\r\n6eVDCDhrqCq0omcRRjAqcQr7dqoBx5LtZGU=\r\n=kYza\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"e39c13c3fb8520bd568eb3186866815e100df98c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.2_1649051881553_0.7464943296418785","host":"s3://npm-registry-packages"}},"7.1.3":{"name":"postcss-pseudo-class-any-link","version":"7.1.3","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.1.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0e4753518b9f6caa8b649c75b56e69e391d0c12f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.3.tgz","fileCount":6,"integrity":"sha512-I9Yp1VV2r8xFwg/JrnAlPCcKmutv6f6Ig6/CHFPqGJiDgYXM9C+0kgLfK4KOXbKNw+63QYl4agRUB0Wi9ftUIg==","signatures":[{"sig":"MEQCIDTrNPolIgUkQ3fHsLDKu0iPqgiT4Qvq3c1oFjvW/dEnAiAHbpXjuic0sBn0TydL8McpAjTdC0OVRDPmTpY4sjmr5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidUGOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrL3Q/9Gu3o8ARQ6rm8wamHuHT4K+w2R6/21FHhJ+6dUZeMjZk/bDjU\r\nwoP7UrGESQQIRhBlZXvWafFkB9Z1fKJlzWJMkwoM19YmIH2ZTHe1TELt9VY3\r\nk+UkOVFOoXZ0t3CLwes9tYDDVaVF+AAQ1EEsE0BdwbGUWK4d0+T93kYuJmBY\r\nKLIn4nbYpr5iqtk1jXXxXXEZ+ovZTI3j5+SgjGTu5HjAHedjvgamPPVqMsk4\r\n4UyY+dMnzePHFXNu3r1I1mqtnCa+CJ+/jE3fOdFlG0cwl7m4t4HVwLzu6+n2\r\nFWHtgZvo8zJkH/z2BAAvUHLbKkLto5xuk9N+eaaZnpWP7+WQp2PKv49TfFNI\r\nJJ4XtsmUiAjyC0cTTpVh9nE8EUGRSoe+XE0NHRpjfgyTmGIyvmCB7u/Jmlie\r\neXj+4knpXiadegGQJh1YZso/hxDxT1qnez2n8igyyPzAwMPt8g1K78KfHeUX\r\nJfusS59JPs5A4STypAPgyMwObIcffUYYSALKYgcckw4v39nqrSk+/WEe6KLP\r\nhNFZvY+w0KmCqK34/yHqhx8t74vup7RgksqwmmkxQWGKqSLqXRuk0oaEKmeq\r\nGAPY/hNhoJNQI8+HiHjsrLZqxEEIFQ10O56J3TBkK+q5G6dSjBnEasUVwpwP\r\nL688W5eQYxIbU4djkawTVHOvldGgn9PPEFM=\r\n=jjpX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"08767a5e9a0d19091ae8a172484c8553c2cb0ffe","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssPseudoClassAnyLink","humanReadableName":"PostCSS Pseudo Class Any Link"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"8.1.2","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.1.3_1651851662528_0.9984006884591081","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-pseudo-class-any-link","version":"7.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@7.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"b06483c8a241cee1e420f9ebd08680d4f95b2b20","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.0.0.tgz","fileCount":14,"integrity":"sha512-Q4KjHlyBo91nvW+wTDZHGYcjtlSSkYwxweMuq1g8+dx1S8qAnedItvHLnbdAAdqJCZP1is5dLqiI8TvfJ+cjVQ==","signatures":[{"sig":"MEUCIB0lAgUyWA2by382s0TCTG8R9C3ak5XzhRoUc5wv6x+RAiEAvi3V7D3LzEwRJXqkBFLShMsw8iQBH6r9LYg7oLJG3A4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22002},"main":"index.js","engines":{"node":">=12"},"gitHead":"b1da2a1297423de739d70be88c4b6d75603bbf76","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-selector-parser":"^6"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parserOptions":{"sourceType":"module"}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","postcss":"8.3.6","postcss-tape":"6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_7.0.0_1631922969623_0.6037850111036871","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"postcss-pseudo-class-any-link","version":"10.0.1","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"MIT-0","_id":"postcss-pseudo-class-any-link@10.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"06455431171bf44b84d79ebaeee9fd1c05946544","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz","fileCount":7,"integrity":"sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==","signatures":[{"sig":"MEQCIBeVjfXoPKYyGHsOZlVjGvncm5y3ISaz3RzsomA7hWlmAiB2/kaRniBbIL4UJhQKoLusNurRaafQcexf3MnVeOMgQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11249},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"f10e1eebfd7ffaa75b8242a8d79df2058c5f5e36","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"10.7.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-selector-parser":"^7.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_10.0.1_1729719894293_0.08793131380860197","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-pseudo-class-any-link","version":"6.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@6.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"2ed3eed393b3702879dec4a87032b210daeb04d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz","fileCount":8,"integrity":"sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==","signatures":[{"sig":"MEUCIQDx5bTVYcrlfopols5ZTVHpiUUuSXkFmsF+YdKRs47cyAIgfsMZh/PDmO3Dzxu19qJ5F0E4DDm27cqbXwI5l4aad7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboHsbCRA9TVsSAnZWagAA3PgP/24l7LA5AJKGvo4Et0ZX\nISlCD+oZNQLr05ovrwDu3khvNlG5F55Vl8Nd4OzE84o4oyMgHB0W9+KUSN3q\nj+11N4/vUSMFUMh+oAZuq43Lbjs9ZXpJZ8qsXDn7IDOx+g9xZsf1zOCATgkh\niiSG9pdDU5okdgnRqa/CICftJHAqcm2Arrj7qNpPB8AYtl70CBy2s/tADvp5\n4NJC+YQQQ2BDDdzVOE6x6pXdjyIwb90ABFLROlC1icFOL9IXRNtALcpk8uTw\nibce8Tq4o7ccIkFp6NWRdHqQ4h29cs5aDtv7SIgXt6znC52AXxr3GsopiSKs\nYnsgE4lEhmGXaKC8QoiaHSVT/GSOBJr7dsoxqyspgkbzgBRmUfrWCBC30HGN\n+RqfrsnMtlEk7OkJ70ndcbvnaK9QkSfjUaM2Da7bJR7eikjgKVQ93vURFt8z\nHG1882tkWaffR0bdlVE9D7HZ143WQxBrk9LrroxjWu2gv2+F6DJdEEXvO3TW\nWdT/cJcPrLO1EA4LIFzDBHcSb43pKTrI+DiwsfZlGwYoQk0uIxIb/TqUJm4f\nPvib47Dvi6qgitSSnZiAkKYAX7T8CtUSbie25FuVfmQEzD0F4uuUjLWKidrb\nfq+kJNx2KAPmx5ZMz8YdG/4V2Mz+6z1wwV6KYhdFu6R08OepfTrwC8XStqom\nECtJ\r\n=KuNn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"9ff821af0d9f8af6d60e0e7adb6eaa29488c176f","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"6.4.1","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-selector-parser":"^5.0.0-rc.3"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_6.0.0_1537243931024_0.5596169031671316","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-pseudo-class-any-link","version":"10.0.0","keywords":["a","any-link","area","css","href","hyperlink","link","postcss","postcss-plugin","visited"],"license":"MIT-0","_id":"postcss-pseudo-class-any-link@10.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ca8a1392c0ae207ccfa44f4de84984bf7cfdf93a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.0.tgz","fileCount":7,"integrity":"sha512-bde8VE08Gq3ekKDq2BQ0ESOjNX54lrFDK3U9zABPINaqHblbZL/4Wfo5Y2vk6U64yVd/sjDwTzuiisFBpGNNIQ==","signatures":[{"sig":"MEYCIQDlZn0ND7HS1+dijAeadKHZ58XYUP0EpUpHL1GW0Az7UwIhAPJxk2HHWYh6CDAANhp2AtEZFyU26TgLSwLKrBEbtgSY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11252},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"9bc8024cf4cd17c6153d5beb0c1806e407f4f3ee","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-pseudo-class-any-link"},"_npmVersion":"10.7.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-selector-parser":"^6.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_10.0.0_1722721111472_0.581590940610403","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-pseudo-class-any-link","version":"5.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"9979a55a75956c402c5d270a667632cf8ee8eccb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-5.0.0.tgz","fileCount":6,"integrity":"sha512-rA5grdRhLLMMI654eOZVuKGr4fUBQNGSH0K+7j5839CiBA/IvNt/Ewt7aIrkGZPySKI3nqzs34HefO8U0Fxahg==","signatures":[{"sig":"MEUCIQDWytBsfdc5N/fyuW302M/QG7pz2skcVyuEntNb58lWQwIgApeg8pQ2ET3J21GIQW1bOyqA6649Cnz5D9yRAsv4aBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8SFECRA9TVsSAnZWagAAUmAQAKICQzmvT+A/BShDXO91\n6NjAVtRNnmmhwhoJMjXA36TedyC+zSDjJWf9LqhBGy30m3mrSAUSLV299KCR\nB+n1jGALe6J6fH4Kcw4YmWf21l58JaS6Ow7NwDtMcr9b2qtStuOp5BrH4ME/\n9HsbZgxJ5kzgSUO60zcuq0KjO/OaBswsyr5gfBESChlAgEpectJBYnzTaG8J\nhtTOu3qq/jlf8lggf8W8WUik8YsgDxswYGtoQQrm+4SlZKkK2tNTa7J9WG6Z\nlShq7/9tHGnlPMopZ9DdCEVOQluheOlY3xtN6HUEBH0fHtOmanVtHJzw1X0m\nhRqMPI6hNdd/4VJwLIaOEqpWqJkfekRYwI5SknVRU+hJ8qeAWsCMbV6+5d29\nq/Qo1iAsj+UfqfExmfITHXmEMHv41RWThimmOlSdvS4q+teNP1cINRpiVeQf\nIGwyASnC2TZRK0iX97wE4MJhfah980wNWRB583TtTpCaHDDZOH8iE7U0aGEF\n248+hh9GPZXf5u7ALncUnjW1YNd8fIJmEJJKh7zye8upq3nBvPCWNpu4H4FS\nDOMICU4f6Mrp/UbccfUke4dFv1MHgn3kBi6F3r/I0DWQxnBRbhQ+AUvmkDFP\n9rd0AzDRhFi1vWwGotxX417vlz5qcuJKLUnl5UjBMbslX7/+oUnmiAxGGkfL\nwt1M\r\n=gKPv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"3c97d97d5d173728ba242a4e1495fcf943553aca","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"6.0.0","description":"Use the :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-selector-parser":"^4.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-pseudo-class-any-link_5.0.0_1525752131328_0.8976216554308729","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-pseudo-class-any-link","version":"1.0.0","keywords":["postcss","css","postcss-plugin","link","visited","any-link","a","area","hyperlink","href"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-pseudo-class-any-link@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-pseudo-class-any-link","bugs":{"url":"https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues"},"dist":{"shasum":"903239196401d335fe73ac756186fa62e693af26","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-1.0.0.tgz","integrity":"sha512-rzDdAGAZTjNlNsMvG/rbx7NYeiEbdAdt5c36j4gHjWp5lNtYVIPtatnwmLCbSW5GtC0EvnnBtOrX2mHAaBe6iw==","signatures":[{"sig":"MEQCIBzWcYl06WZvqU744gqkfeaE9KhTLl1/aWp0+93HEQXEAiAub8URb/4bsoQqFcZPm1MeFeJlXvR4iNsu0dgK0JrWtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"903239196401d335fe73ac756186fa62e693af26","gitHead":"54e8aa45fce71075a9e5e587ea891c0d57bf740b","scripts":{"test":"gulp"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git","type":"git"},"_npmVersion":"2.12.1","description":"Use the proposed :any-link pseudo-class in CSS","directories":{},"_nodeVersion":"0.12.5","dependencies":{"postcss":"^5.0.3","postcss-selector-parser":"^1.1.4"},"devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0"}}},"name":"postcss-pseudo-class-any-link","time":{"11.0.0":"2026-01-14T07:24:34.535Z","9.0.0":"2023-07-03T08:16:49.622Z","9.0.1":"2023-12-15T23:20:51.927Z","9.0.2":"2024-04-21T14:55:04.956Z","4.0.0":"2017-05-10T21:39:15.018Z","0.2.0":"2015-06-15T13:15:03.092Z","0.2.1":"2015-06-16T00:04:22.194Z","0.3.0":"2015-06-16T03:41:41.549Z","0.1.0":"2015-06-15T00:36:08.128Z","3.0.0":"2016-12-06T19:58:10.476Z","8.0.2":"2023-02-09T18:21:40.640Z","8.0.0":"2023-01-24T09:16:08.037Z","8.0.1":"2023-01-28T07:58:06.481Z","modified":"2026-02-16T13:27:53.313Z","3.0.1":"2016-12-14T18:15:50.577Z","7.1.4":"2022-05-17T05:26:31.173Z","7.1.5":"2022-06-23T13:02:45.858Z","7.1.6":"2022-07-08T17:06:52.362Z","7.0.1":"2021-12-13T09:50:47.914Z","7.1.0":"2022-01-31T07:56:52.006Z","7.0.2":"2022-01-02T15:22:05.817Z","7.1.1":"2022-02-05T17:24:05.339Z","7.1.2":"2022-04-04T05:58:01.680Z","7.1.3":"2022-05-06T15:41:02.656Z","created":"2015-06-15T00:36:08.128Z","7.0.0":"2021-09-17T23:56:09.777Z","10.0.1":"2024-10-23T21:44:54.479Z","6.0.0":"2018-09-18T04:12:11.166Z","10.0.0":"2024-08-03T21:38:31.629Z","5.0.0":"2018-05-08T04:02:11.599Z","1.0.0":"2015-08-31T22:33:44.664Z"},"contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link#readme"}