{"_id":"postcss-dir-pseudo-class","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"dist-tags":{"latest":"10.0.0"},"description":"Use the :dir pseudo-class in CSS","readme":"# PostCSS Dir Pseudo Class [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-dir-pseudo-class --save-dev`\n\n[PostCSS Dir Pseudo Class] lets you style by directionality using the `:dir()`\npseudo-class in CSS, following the [Selectors] specification.\n\n```css\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n\n/* becomes */\n\n[dir=\"rtl\"] article h3 {\n\tmargin-right: 10px;\n}\n\n[dir=\"ltr\"] article h3 {\n\tmargin-left: 10px;\n}\n```\n\n### Maintaining Specificity\n\nUsing [PostCSS Dir Pseudo Class] will not impact selector weight, but it will\nrequire having at least one `[dir]` attribute in your HTML. If you don’t have\n_any_ `[dir]` attributes, consider using the following JavaScript:\n\n```js\n// force at least one dir attribute (this can run at any time)\ndocument.documentElement.dir=document.documentElement.dir||'ltr';\n```\n\nIf you absolutely cannot add a `[dir]` attribute in your HTML or even force one\nvia JavaScript, you can still work around this by presuming a direction in your\nCSS using the [`dir` option](#dir), but understand that this will\nsometimes increase selector weight by one element (`html`).\n\n## Usage\n\nAdd [PostCSS Dir Pseudo Class] to your project:\n\n```bash\nnpm install postcss postcss-dir-pseudo-class --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssDirPseudoClass = require('postcss-dir-pseudo-class');\n\npostcss([\n\tpostcssDirPseudoClass(/* 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 not preserved.\n\n```js\npostcssDirPseudoClass({ preserve: true })\n```\n\n```css\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n\n/* becomes */\n\n[dir=\"rtl\"] article h3 {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\n[dir=\"ltr\"] article h3 {\n\tmargin-left: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n```\n\n### dir\n\nThe `dir` option allows you presume a direction in your CSS. By default, this\nis not specified and you are required to include a direction `[dir]` attribute\nsomewhere in your HTML, preferably on the `html` element.\n\n```js\npostcssDirPseudoClass({ dir: 'ltr' });\n```\n\n```css\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n\n/* becomes */\n\n[dir=\"rtl\"] article h3 {\n\tmargin-right: 10px;\n}\n\nhtml:not([dir=\"rtl\"]) article h3 {\n\tmargin-left: 10px;\n}\n```\n\n```js\npostcssDirPseudoClass({ dir: 'rtl' });\n```\n\n```css\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n\n/* becomes */\n\nhtml:not([dir=\"ltr\"]) article h3 {\n\tmargin-right: 10px;\n}\n\n[dir=\"ltr\"] article h3 {\n\tmargin-left: 10px;\n}\n```\n\n### shadow\n\nThe `shadow` option determines whether the CSS is assumed to be used in Shadow DOM with Custom Elements.\n\n```js\npostcssDirPseudoClass({ shadow: true })\n```\n\n```css\narticle h3:dir(rtl) {\n\tmargin-right: 10px;\n}\n\narticle h3:dir(ltr) {\n\tmargin-left: 10px;\n}\n\n/* becomes */\n\n:host-context([dir=\"rtl\"]) article h3 {\n\tmargin-right: 10px;\n}\n\n:host-context([dir=\"ltr\"]) article h3 {\n\tmargin-left: 10px;\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/#dir-pseudo-class\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-dir-pseudo-class\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Dir Pseudo Class]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class\n[Selectors]: https://www.w3.org/TR/selectors-4/#the-dir-pseudo\n","repository":{"type":"git","directory":"plugins/postcss-dir-pseudo-class","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"2.0.0":{"name":"postcss-dir-pseudo-class","version":"2.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"95deb7ab37a42602d9dbbcba8b1ff0c6065273bb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-2.0.0.tgz","integrity":"sha512-UoHqPhWT9wRjHMug4kvmTeWyGaQ5WN2wJxdsFua5H6Rga0qCeLUAiX9H8/Y+o+IBWJgBuEDQ6iEPGyae3eE+Xw==","signatures":[{"sig":"MEYCIQD5t1JTEfv+GidgkgVNR/hy5LtAi8/I3CouSxwryrtU7gIhAK5nvst8uiFd0u4E5bkO0buU15snRlPM9N5BsZ0CgqVj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js"],"engines":{"node":">=4.0.0"},"gitHead":"b725726f0bf31fe543a86c848b165d9c2c0ab600","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"5.0.3","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"8.1.4","dependencies":{"postcss":"^6.0.8","browserslist":"^2.2.2","postcss-selector-parser":"^2.2.3"},"eslintConfig":{"extends":"dev"},"devDependencies":{"eslint":"^4.3.0","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-dir-pseudo-class-2.0.0.tgz_1501000953215_0.6087846960872412","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-dir-pseudo-class","version":"7.0.1","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@7.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9462a609ae915d2bcea86112a637182598c0f338","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-7.0.1.tgz","fileCount":7,"integrity":"sha512-VjiqVOTz1op7bsiw7qd5CjZ0txA5yJY/oo1wb3f37qdleRTZQ9hzhAtLDqXimn0ZKh9XbtYawc4pmVBnV+LyMA==","signatures":[{"sig":"MEQCIHqEBt1yKDoQ75EbJK+C1+COHi4haSnUm7TyeMd+wEDfAiArWJmn0vuKacFPSV6E+PGZ4TmOa16ZOMZVo2TrhvqgjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NCBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdOA/+JqwpKUwi3UfooPIm0MNwP5ozcHGRFkyK77AOr5OBCT5JQ5+9\r\nXm9O4WOmC97pXpHiIFUWOxXOJdMbJt0ValnJN/0xCo/jwTdqIdWIz5JU/xhq\r\nUSqeMmfiEDpqkHpdzS3xe7urcV/5ZlT32nmwz+K7qrStwJfA5evndjxau8cO\r\n8qrt/YYNiPPvG03yR4S1MvRokRf5bgAcADVyHei8RMqc1Gl9kpTdT4DydYsJ\r\nFgy13hQ8IbL7v8zaDwmnyxA+e14qV4ao199/Tw2EWebdHeO8VCd85OL9Q+5c\r\nsVzILd81ZcdJ/h2Am0Jfluaj/ln953qU3Q5XVJ+cZ0JX8DC8k4NWMYUOaeeS\r\n9MAAWqFQjRESS/hb+4C3lX/Q+i+hD/0v9C+CG86/N6Nk9iEvzeZ0CBvdokOq\r\ndyoFfr5Yz5TNR0iT5ODFH61XjdqclzYTFM2A8f5tMM5XXzKEbs+vNx/mp3gs\r\nVTzESLl8eLqnrUUy3cxd0HN44zySB+KMwmtcbNFHKMjZjImlP7D+WS1FmeBF\r\nocjWGk8y+CmtiuuSR3fPQa6M7l4Rn3poowmD63nRyAKLH47OlNT5JBZXAa33\r\nuaCCeJdmEoxarTqnHNTUW6ANpaZit94XJEJH0RdDt/da55k57M+UqQDYCj9S\r\n4HnNRta3yC6jh83luNJFr50mbfD6TpLnq6k=\r\n=J4hG\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":"9c82b21e3ae4ade324d10b7bc2255df33df195f8","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":"dir-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-dir-pseudo","exportName":"postcssDirPseudoClass","humanReadableName":"PostCSS Dir Pseudo Class"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"8.18.0","description":"Use the :dir 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-dir-pseudo-class_7.0.1_1674891393734_0.5379057204454383","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"postcss-dir-pseudo-class","version":"2.1.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@2.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"d441b000688d0ecdd88cc040da922e72b62cf830","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-2.1.0.tgz","integrity":"sha512-B0ey1VD1Mg8k+CLQM6V5bJ4oI+OrNpQHbft/Pfxb5IuqADGueS6BxoK3FcHEfv6Bgh3E+cistFyYK6gwXfrFNA==","signatures":[{"sig":"MEQCICDWR1/u8cJJrvOlrxxtnHAmNLlHC9qhEs7zI/yqmtaUAiBoKbjRVeQILlpZ18lG8SRaJqEKdf9JOfv8Kht4BLLF4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js"],"engines":{"node":">=4.0.0"},"gitHead":"ce68791f405ba561e74b39b71866cf1fe4166383","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"5.4.2","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"8.5.0","dependencies":{"postcss":"^6.0.11","browserslist":"^2.4.0","postcss-selector-parser":"^2.2.3"},"eslintConfig":{"extends":"dev"},"devDependencies":{"eslint":"^4.7.1","pre-commit":"^1.2.2","postcss-tape":"2.1.0","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-dir-pseudo-class-2.1.0.tgz_1505853890525_0.16615524282678962","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"postcss-dir-pseudo-class","version":"7.0.2","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@7.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"71618b7eb4abe067845d11b3c8f322760c9b3e88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-7.0.2.tgz","fileCount":7,"integrity":"sha512-cMnslilYxBf9k3qejnovrUONZx1rXeUZJw06fgIUBzABJe3D2LiLL5WAER7Imt3nrkaIgG05XZBztueLEf5P8w==","signatures":[{"sig":"MEQCIDndjuiIq1HGQEfs8HYMnEwKoK9CKyEPfTKNihzOEjasAiAs2Nyq95bh04uKhUG9IiUMv/zXhPXs44QdaLNj6yF5Hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4TZ4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp52A/7BF60MUpmqpSKb2gzKe3LJkRfvaVW9Gpf7Xp7e/NhMXm9/I8D\r\nOKuftC7heEtRdjTYUbhjQxBhYWji4pvb/NgdUlI33Hq30BoHVeC3t5/JDtPU\r\nXY6h7Q4R9+jTvGynimItbi+YfbxehlVn3o7QHkWfJIjvqnBmTWwkfBG2xPpK\r\n97lbkYJrP5qCSn5TDl6zQBR7tBWJPLulH8bNEbMZjJcuQs1AgVWJTGaszSh1\r\n4kzmzneifR9zNtng+DmoawGsk8MFwOcveay/w35o+rn2V1u6oXiq3TBC9vDW\r\nD5P12BGkedwY9VOA5Tw2onoPx003L12zWQU+rX7UKq0Fpw6Foe99NQr5Wt4E\r\nkIxnNGZ8580TLNbGjPDAqlSeJPKBUGZFWabpZ47cTfCI6Sfse9xlqC23BA9p\r\ngprqXUKQG9evi/7fjgX0YFbpb5Lnc7ESognHO5n9eg61ie9R3vvsEFhix6U9\r\n0p5ZbpRj7HWEENtV8UAMHP6i7vLQDMcnp3OrajIVqm+D11pUnzTCMI7/3CHW\r\nGqOHeOhykr8psAoUjirlGgw8qT2YoFID4eEhchMG+R85M7r0UJ2+JHlctB4H\r\nRYGgZ4mO9Uvgy7Ze+GuVX4KKaXnx+nwoyrUSUTTLPz+D52JN7M/rPSSOIDOs\r\nLUpMdAfeft0i/mH8PvDLJgzkkyr1Qvls61Q=\r\n=YVqE\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":"9199d59185c79c7d494cfb47b74e6a6b771e3bd5","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":"dir-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-dir-pseudo","exportName":"postcssDirPseudoClass","humanReadableName":"PostCSS Dir Pseudo Class"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"9.4.1","description":"Use the :dir 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-dir-pseudo-class_7.0.2_1675703928525_0.3035801115182395","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"postcss-dir-pseudo-class","version":"9.0.0","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"MIT-0","_id":"postcss-dir-pseudo-class@9.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"44e2bc44e32d05a8a92723cb7d7e23da493b6859","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.0.tgz","fileCount":7,"integrity":"sha512-T59BG9lURiXmhcJMyKbyjNAK3KCyEQYEhaz9GAETHXfIy9XbGQeyz+H0zIwRJlrP4KKRPJolNYe3QjQPemMjBA==","signatures":[{"sig":"MEQCIATgFTgQjiE6cFOYzKrvNS0WNoL22iu5R8MwcNREzAmfAiAZsEe+i0rlO2YYzdB5ZaTp4vw/prtkfTIXAd58rmh1NA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11170},"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":"fa901337c3067fb624f8028804dae3d2b89325bd","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"10.7.0","description":"Use the :dir 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-dir-pseudo-class_9.0.0_1722720989154_0.23529898067241706","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-dir-pseudo-class","version":"9.0.1","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"MIT-0","_id":"postcss-dir-pseudo-class@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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"80d9e842c9ae9d29f6bf5fd3cf9972891d6cc0ca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz","fileCount":7,"integrity":"sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==","signatures":[{"sig":"MEUCIQCJp5fWGOLtzOC1nqo3vdoISgNDKGcA8mIVPpgTJayqKAIgHF+BnCmMdLeVtOQGQNhmA9RqFBpfmd5X3t59abfKR+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11167},"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":"8c40bb698c5b37edb171dda5881cd4d8aeb4b04d","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"10.7.0","description":"Use the :dir 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-dir-pseudo-class_9.0.1_1729719863727_0.0655947013694016","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-dir-pseudo-class","version":"7.0.0","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@7.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"15ddf8df823baae8f00c5ac575f90a5e2c69828c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-7.0.0.tgz","fileCount":7,"integrity":"sha512-i8I6vqB0T0fpanLBjFoMPp3iTgKPccZCyZ149Q1RuRVlnKD00DbRFSkbp4/XDJaNzKJeto/DM/Uj62icEtVh9A==","signatures":[{"sig":"MEYCIQCIc9mXqiiBPC10Xwqq1veJljEm+1vGlovTwpb8HQ0uPwIhAKJrYPd5HjzY6qOBSv4k4tuOhen42CUps71/dOGFtFdf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz508ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoC1Q/9FOLYC8zRQpSwU2T9GehOGe58ucZ5IT22wiZ6iBcc3ZSK3l/V\r\n0AfLmq2byu3A7foh6dk6WZDl/k+DtoA9P/TCXYuYUqXMpimDTPU5YZ7aVNRw\r\nQ4Hr5f4EDnZe74G618zzicrFuzkWE57mispRACE6TCQ1ReAC087O25Kxt2ml\r\nxDS1ZN2MZ7W7MM0sDF0qBKd6CLShxoOXYDV9rMzARjELmMpISVSI4xiCQQ46\r\narXafaLM0H5dfEd8IkmIzjMHHUN5XEsHxhgHhDFJ3OLySkprhCEzW8aNp5/m\r\nAtB5ebzJeoPqXRhaUFK3OSQF/ukosAEzH25vIqGFr0XSrRORNDw2l6Y+zAvM\r\nj352PgCGaVLZNwTNzCvbz39ivivpvdK2JnKQ+x0S19RFm1tMOvyPGnEAzsbs\r\nQjCBKTZTlEFR5XL+6nlE3ZoJKA1k1uuvWHYj8npvoZtqjzcnIybD4K5TI2PO\r\n63KidhqeU13mO9DseKJWOwNkxf0j6saOFJBmMU5KUOM5iJ99UzT6DnMvDT8Z\r\nZ7OUGJgrd8ndYT5qO64paEShDqFZscNlboDBpVZaL1f/muk4DNUfjDS5AVax\r\n9KdMhBUA/RtE1hTuYoe/zQryxm69rbf3204vKbwoSEWTiZq16vZfHHt5xyk7\r\nbvGdgg+e8/DB4nRdvCkLo26q+2/TN2pwuew=\r\n=e0lK\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":"5a05b57439585b5a4d974509df1810cdfee81e8f","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":"dir-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-dir-pseudo","exportName":"postcssDirPseudoClass","humanReadableName":"PostCSS Dir Pseudo Class"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"8.1.2","description":"Use the :dir 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-dir-pseudo-class_7.0.0_1674550588619_0.04903710114448678","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-dir-pseudo-class","version":"4.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"007dba154a0750cb3095eeae01077088a61dcef5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-4.0.0.tgz","fileCount":6,"integrity":"sha512-ZAeXMIyZukHHeDt5IFchWB+okPzasb8YnpkXIgTiJl4216X1IplMrODjihZIBDXNE2RdJRBCAOx8uGzCnGSxTA==","signatures":[{"sig":"MEUCIQD/kvOx+NcRyHxaq1PrT00uE8ce92rpQBFH8luNVclubwIgAaeroVrBsGmMXdbgQxSPBqgRrmazOWcWzQxSNKmexZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21911,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8SdSCRA9TVsSAnZWagAAD5YP/0QmARjr56A6Ux+9mi7g\nolpnSokxaIki1plafZmy6BmokTf4fVF8uWzpDiG/A9nKfUbVW2pJNTQP64t7\nkGD85XJNiOAVQVlJs3+4VnAarVNkaTT25gdMf9lrKk8jriuFVzYI7ENE0YfQ\n9/qjT8en2u3WDQCpULGyM7FO8rucNaCAAT00tw2WbtVisd671HcnyBaWqBqK\nQZHOTnuRGa+QGIawu4QwKIyMhZmDqvSZXrurdaQLbs4IeGcCoP4llVZG0kEx\nE5AhGDpV1UfogBFgfpZ4N+w6ZgAjg3A0EhF6AopoyZbrU8BDxCCL9iCBCWHx\n2vDShPNPyp99R0C1TzjzFuG52+c3KayGKWVfs4eLWA3ihrFxoB3m5Ju3Xx06\nSWhftDa8YrygWtxqxDesjDqVrsoBUfHrBs/a70bZ5js+8Ui4KVMVMbl5tc+0\nTPbQgK7p2TiVfBiNpX9OiPfHC7unsV77cFfnVqt1v4uKIkSPW+huZhn6DIiX\nJNfzFJcoS/CsxTyLXilJFQU7F+yjas/IwxuHIMs4slnJhU42Spd/oH4Tj1lh\nvhoKIDG7MvVO+8D37V6EwwliOFIAFW/XmMjTDYukfu//8cN8jGSvgblMykKq\nf1Y3E/hRfBxdQS9QD99DBnnZ43vMXj/4wxUksNIsfG0xM3lAMsoF5l9X898R\nUtNJ\r\n=b8hm\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":"62c1907d173b78bf521e3887b53f994eb1801b8e","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"6.0.0","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-selector-parser":"^4.0.0"},"eslintConfig":{"rules":{"complexity":["error",{"max":30}]},"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-dir-pseudo-class_4.0.0_1525753681574_0.15005391519515232","host":"s3://npm-registry-packages"}},"6.0.4":{"name":"postcss-dir-pseudo-class","version":"6.0.4","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.0.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9afe49ea631f0cb36fa0076e7c2feb4e7e3f049c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.4.tgz","fileCount":6,"integrity":"sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==","signatures":[{"sig":"MEYCIQDPyAxJPHo9N+X4chn/JKnoYlikwvYKBkrnG/zy+DVizAIhAI81iA5JvJwyuGBbeBcOPOGXR11LCzL4ypFWczpeJVoD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/q2DCRA9TVsSAnZWagAA3LIP/1QWc/MyWMRikJMkgklA\nF57MVwEOLx9UREqFVgk+HXX2+4J3ZCBexP0NvSyNVuxzlKyKIv5RDbbEaFoQ\n9dD8dOKCMor2+0kautstsBk8cWe5wNr0HiwzCDZbj9HPL1Sink1noo5vNBJw\njskY1ZOYpURVokuyQVT2UY5xoM3PdxRMer+0hu2uE4nAtxxyBgOftbYaP2bv\nBm7uCoMk1YRkPtBca5r6jjABY3pVXstd9ZdKG4lqYn5qmtp9ikwkqCuimPML\npvoP0+WuVw8cgh5i/AP3H07vZmzFNJp5U/vbs+Hpt2bjMegV8/PD3DDNZTOW\njOJJuAhiZuyFMAjreibEnq3VA3vxfNg9VC9k6DI35ZB1a/XnG/Qbi2/pLWpa\nDxIhzk/DhMRt/NZg80T/1bMfZ35ZI7dIuvrakhTl4boMseFh9LbBLokt2gVf\nnDEbQ3XPnM9PGw395gFSEOq5kf7NC6J3pmpBTlmp1rrzbzpRt2dSmXdXhTBz\nHC0lHbKQJAr4KUim3veuulec7dihnjdbTWJS7iy889F2vDQgyy4qz7lAsVli\nRAmofwopBUjlKVbFDu/dUj5uRgtrHKk8rFUzzpMKyI90wzcHUl0OTNpg7sbD\nrYPz/NBWczWuQU1j8QcMD1e3DnFVXXijgqTjC0AR0Ai0enmicTorKk191bs9\nj7GX\r\n=j8di\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":"492ec7a6e347050fb989925f3453f1130b012586","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-dir-pseudo-class"},"_npmVersion":"8.1.2","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.9"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-dir-pseudo-class_6.0.4_1644080515340_0.9972960832821267","host":"s3://npm-registry-packages"}},"6.0.5":{"name":"postcss-dir-pseudo-class","version":"6.0.5","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.0.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2bf31de5de76added44e0a25ecf60ae9f7c7c26c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz","fileCount":6,"integrity":"sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==","signatures":[{"sig":"MEYCIQDCf5CY9n9d/MsrkIGd1Z5cV3G4TDJzjcaW9xfeHGZwngIhAIjHHcfrDx0qb5m7cB6Y+eRJZui8haLPz/BFkSgcCjTr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19039,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFh1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoauA/+OZLRdICtk6kL/IaqCsdvcVYhp39ckh9CXMHzkYozZdOT4A2c\r\neUzRyXL4dUR68S4TAfx9XkP4IPud5Bz6rXzPQr4GWj66XJj/P7/emeXH+eJJ\r\nbhc+XqwfvjmEazM6CpKdNnjkBYvTNWblB3+7bDBRE29ScRuIWZcsVAMhbmkS\r\n2+KsxOMf3GIg6CrFqSMdTAPahUA9sPNo/2eTnqQXbfyplefdXweJGOL909IW\r\n7tEor8GJDAeWJN5cEM8s3TrPmp2o1wOptxDmYtqhPVI3X0gwve/njWje6aVh\r\ntlneH0TwPAPnxL2F6Q1Ev/2PJjaZMDCf050YzK4RpOnGjF8gB6lNfBZDzkyC\r\nY9nx0Q3IuqdRXxMddPckx7iEVEY5ldExKJdShtYXj4LBmyj+lQGQBtzuPYNU\r\nekw2FYjmT1e/EBuAhIo7hE/6FhnxyMQYhvJ51g9VUdt0AauhTUxW29gL7O/d\r\na17Y4jpSZsUFKLD9w0nAId+TBrxwzB2gnYTG0jSe69wa51xu0Yy7maDUhH1/\r\ngGJGUJzwKuQNYfKESm0fXbV83qeYODAUU8addh2ktzxvs9j4MMRkgc3CYijj\r\nY4v50V0DO/bL3u4kER5LaFyWPKB9GwS1uIamSAkAEf9mKNEmXsbFvNkGfovo\r\n9u4BViSxZFZQki44ljjnGevOOo9YGXTkl8I=\r\n=d6eN\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":"15f1458d3433fff7da696e19196824f6a433d28a","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":"postcssDirPseudoClass","humanReadableName":"PostCSS Dir Pseudo Class"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"8.1.2","description":"Use the :dir 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-dir-pseudo-class_6.0.5_1657297013321_0.1740367225999766","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"postcss-dir-pseudo-class","version":"6.0.2","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ba93f17f1a3ba27e79db9d66bbc4bbd3aa902796","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.2.tgz","fileCount":6,"integrity":"sha512-0X8kO0ICu+iuaQlXy8K9PBK1dpGpaMTqJ5P9BhEz/I9bMj0jD2/NeMpfYOeMnxhqgUfSjdZYXVWzucVtW3xvtg==","signatures":[{"sig":"MEYCIQDibDyaOPxcjmGfeuynwLr60rhcsFc843knMp/BxNpEAwIhAO0v1AKC9GDXwFuVNb8Sz1MiOniSzKMs0/x12MW2hNWk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0ce/CRA9TVsSAnZWagAAslkP/Aij+dza0/xUKvP50yst\n3Ywbjcg+7CzW4B4HwMtAeNFYbw0JtHHEWI5FTGePpRQotiZ+cPtwPhT14wdd\ncx0cni5WrRnmuEDyfFHpBgyLOj8074noSH213Bl1eXh8v+lpJ31Fc80FkaGP\nZYM769xwA4Ig48MHl0OvZQoxHgeintjgavL1yrVCknqh5s+GedWTEHblfQ+e\naF9Ek9ZfwCyP+6ndP8lsX+M4OzX5IxQf8yO2g/iN9ChepLm096pt1ifmKDO+\nWCoMZJ77iZdGla8Ylj/WqvmRa70TkHcz50D2DTqb/vJZuD3w/JJkbEqsI934\nHO39nXSh2gk7DJn7gATyRuDcsqirzEpmNXu22JtNwyzDYWLOehEQ8yUbZr9N\nsQGvbmUH01BqrmGxps0YY2TQXaR5KcByjHzY43VrsuXOdTGEm+kAltO28F+m\nuUoTpSh0ubY4ML8TS/MP0Af9Z4MhfiXDEH6swd05pDD6eSSDGBD9dW5v5NlR\nr9hoIyvDyAPd+pq5YTXHHLBeybMeu9+qH43agReQXIbnnjGz2bxx7NRDgvs9\nFbf7nTP0KUJof9MkRurc6y3C9i+5IZz2oGYrN1gIqMDbqqB6FzAOWVEWYkFt\n8c0r9VyA0AqVlasB1E02bU83srv3GHd8uqNsHzIBp7ayEwa3Uf0daYLTJ1z0\nl9GS\r\n=Zowv\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":"b662aa5544daa68a065dc762b18da2e71118192d","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-dir-pseudo-class"},"_npmVersion":"8.1.2","description":"Use the :dir 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-dir-pseudo-class_6.0.2_1641138111039_0.2397765419808766","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-dir-pseudo-class","version":"3.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"31a18af3b9b1b33be635599b998a9829896c3fed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-3.0.0.tgz","fileCount":6,"integrity":"sha512-iEVgue59Xs6vz9CQZtlyonW/BmVfpqWglcUyIP2rQaBpH1a2T8Iax61eXY2NjTAq5r3Xjxwk4lrA84acoAiWHw==","signatures":[{"sig":"MEYCIQDfviVTbSW/gS6Nz9HXuXlksmb13RARr8YY2Zg8+0I5qgIhAMRynFUgC3oYgAe80Wk2WDwqOMgt8dEyGfrbHaxPsPM8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21314},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"ba81d33008f6601bf199d682754080efcbf9fb39","scripts":{"test":"echo 'Running tests...'; npm run test:ec && 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-dir-pseudo-class.git","type":"git"},"_npmVersion":"5.7.1","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"9.8.0","dependencies":{"postcss":"^6.0.20","postcss-selector-parser":"^3.1.1"},"eslintConfig":{"rules":{"complexity":["error",{"max":30}]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^4.19.0","rollup":"^0.57.1","babel-core":"^6.26.0","pre-commit":"^1.2.2","babel-eslint":"^8.2.2","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-dir-pseudo-class_3.0.0_1521613891232_0.2213661172718846","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"postcss-dir-pseudo-class","version":"6.0.3","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.0.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"febfe305e75267913a53bf5094c7679f5cfa9b55","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.3.tgz","fileCount":6,"integrity":"sha512-qiPm+CNAlgXiMf0J5IbBBEXA9l/Q5HGsNGkL3znIwT2ZFRLGY9U2fTUpa4lqCUXQOxaLimpacHeQC80BD2qbDw==","signatures":[{"sig":"MEUCIQC6ooDORxJTTsgaGcHr/TcNb/7lsYYgtrCMUImiQjpnawIgd34VXrpsbC4aNNhVbd0x73RExOWGCBCSYioLuMxs0Hw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3qHFCRA9TVsSAnZWagAA7VgQAKOFihPbv+fibIXKRn+s\nNa6NJeDOIwR9x/77AXRfRTakJ1JWSZkpAwzKaFULa6Qm0Lbydb75n0JSziey\nDQ8TZKq9/jCdPh2Y2t8xU7lQzdtEy9KYLXPCCgp3bFr2y/OCQp54xRnyKOeC\nimGdNTNgflCeWmP5nXx8ahtyY5apVNdb2FZnxFY2KxUERBds7J3McJT7muH6\ni7NAYjeiHyuTznopv5GB5nVVckYArhilOn5rcAhZsQl64ia0ri2VpFkXZrTH\n7KqzjATC+sYH4v2zOUxMQPOjoiKnDZZLwZviKDrLT45kF0ySAuAt7+1uVsxd\nvB7YkGnY7oj2OU65Ipxb46l4hhUIB3cATuArvj7+ohhrCa4XqqZDEjoxjQxJ\nJVnmHIMTUM3/2gp2z0eAvNf/FaA4BmEvmU2FOYFhb+ktzX71iV4ryi5eAztb\nh7yEWfcntcCrjw1TOweZgP5VZMmAqOlPWNYIHgqw21KyZWJSbFgF4KBFsTyQ\npEIo6VuFqdf+Zs7Ntd3bqQlkZVQy6jr8eISMpjHfHzBOQBQIC+wLXh23XcWk\n5wk9X9akN6dp6CFugK0lcOc1AXqCJ8G1tt1BmHD7ddzH0d5H898dml3eTW+1\nyUmA6MHoMYxg9LAyoBbzx6SQZVc6Ew/QBVR5SKGaquxwz8zhwqWX0PuwcTSc\ndzo+\r\n=EuFE\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":"836fc20c129ad3ad600410845df2eecf4981a789","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-dir-pseudo-class"},"_npmVersion":"8.1.2","description":"Use the :dir 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-dir-pseudo-class_6.0.3_1641980357070_0.2611184275316303","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-dir-pseudo-class","version":"6.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"7026a070a4849072a232eaf0cdd960de3013658d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.0.tgz","fileCount":4,"integrity":"sha512-TC4eB5ZnLRSV1PLsAPualEjxFysU9IVEBx8h+Md2qzo8iWdNqwWCckx5fTWfe6dJxUpB0TWEpWEFhZ/YHvjSCA==","signatures":[{"sig":"MEYCIQCviUghifDHr8VA4mHKSrvlxw/4Qaod4LsWMJqbHSQBdQIhAM4ijYrlb7KRUeEdeoIrPK4waYF+WaeIq1u7Gj+pXuqu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16564},"engines":{"node":">=12"},"gitHead":"a33aebfcb7c0b68f4276d43d66dcca3ebfa24bf0","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-selector-parser":"6.0.6"},"eslintConfig":{"rules":{"complexity":["error",{"max":30}]},"extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","postcss":"8.3.6","pre-commit":"1.2.2","postcss-tape":"6.0.1","eslint-config-dev":"2.0.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-dir-pseudo-class_6.0.0_1631885476415_0.10707574566502998","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-dir-pseudo-class","description":"Use the :dir pseudo-class in CSS","version":"10.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-dir-pseudo-class#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-dir-pseudo-class"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"gitHead":"1044702e638c640563afbe57c7bd65f3c96c466e","_id":"postcss-dir-pseudo-class@10.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-DmtIzULpyC8XaH4b5AaUgt4Jic4QmrECqidNCdR7u7naQFdnxX80YI06u238a+ZVRXwURDxVzy0s/UQnWmpVeg==","shasum":"c5ead4e9af647b8acdf022a096727df12ff83968","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-10.0.0.tgz","fileCount":6,"unpackedSize":9178,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBXTBnMj34jVPmSypHpbQg947B4Lronuo8Nn77lVI54WAiEAjq+kXOkIhoy8W/2MHfj6U+t0HH/bkv3FaF9IpvfaKxY="}]},"_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-dir-pseudo-class_10.0.0_1768375328980_0.8167220048133437"},"_hasShrinkwrap":false},"6.0.1":{"name":"postcss-dir-pseudo-class","version":"6.0.1","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@6.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-dir-pseudo-class":"dist/cli.mjs"},"dist":{"shasum":"90958de910870b9c20bff4279a0b74d54c880224","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.1.tgz","fileCount":10,"integrity":"sha512-nA6+XVUc5VDe6LrJ5KWFqJ05dxZXzoYiUQJFZSuwLW/8aI462w7gCEhB+RnOA+N3dtrj8B2WTSfcjCac6RJW0A==","signatures":[{"sig":"MEYCIQDWcLaF2lUDELebgP8iNg6YPu6lD7Fhi/Zgpo6i2kdwowIhALH2knlDBNdgPm14kBpBM3nWFfEhWbikFRX/CtbcYVWP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtwxMCRA9TVsSAnZWagAAGRQP/R7MvEYzK97OJ+Gqi2BJ\noZixQrsITJ49bCMPfZ4jyXVWvsrh8NLqsfLAW8nT4ZC60qmGZn4lZ2fk/VOu\n9bUq/tziiuUf+SIeg+K/Q1nxVgHeDjXd0bCEVOcnC3SK/2ZsD9r8Tn07y9/8\nbgXpdGSkiicPfGci8r4AewC3d9BrLlE3zynl0mJuL7+uHAAuPPcsOqxo6J8j\n3FBXlgb0JpDdL9T64JRYkmYJULW03BpndkrSFZZe6XV3ou8oJw4w59GclVOc\nQv3HWU9s5FLvCz/9xxJH3xCqjYacKJncwJFyFt/sZ7ZsChNv0GZ8eMqoos64\nU7RLBDptbajlPsUB7MZmiT/o+49qlKjypcvbWGd2xKyKdK5GfSsAJy50qlvc\nXiSiq/IBfpHTIVIx8ndcSC26/PmUzSWiPuvZjcd1EL1f2NKM4AE6tqwODBC5\nzlhSbDU7WlGaMjxOsdJ9q0CFFIyoBp+YTr3rZ4E0/nNbIZWcIswS7vxiVmgw\ni8vsVyrLo6FErQue4Xl5X5iCHqZ5+g1Je3r9uCEkA5zHYVt7XcM7VDUlXTjX\n3S6dTrDBIbVLZwKVARKWFzEgZHu8dCi/u7FD86kJ4O7buMHy6JPkLWolgwm9\nF08i8lry1C96Bg4pfzJ5wh+j8Ihg7YGuCGCAaNTnzNtpndkREvnJ5MOTSRL4\nuFWV\r\n=4PHQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"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-dir-pseudo-class"},"_npmVersion":"7.8.0","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"14.17.6","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-dir-pseudo-class_6.0.1_1639386188813_0.05685442744346947","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-dir-pseudo-class","version":"8.0.0","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"MIT-0","_id":"postcss-dir-pseudo-class@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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9e4e37d170f672520d3f38fd8376db0ca04d4e9c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.0.tgz","fileCount":7,"integrity":"sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg==","signatures":[{"sig":"MEYCIQDbg69rCFkeINGwP6kSF4yV2JrY3S8MQhZOUKxT0ephiQIhAIicAJZrbNmKoOPwCPX8VILaihgrrHGxUqhCjBH0xKOh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14507},"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":"bd1d4e936c5658f094b193de2fceaeb6b6d6ab2c","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":"dir-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-dir-pseudo","exportName":"postcssDirPseudoClass","humanReadableName":"PostCSS Dir Pseudo Class"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"9.5.0","description":"Use the :dir 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-dir-pseudo-class_8.0.0_1688371913577_0.46250103964174016","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-dir-pseudo-class","version":"8.0.1","keywords":["attribute","css","directionality","directions","left","left-to-right","ltr","polyfill","postcss","postcss-plugin","right","right-to-left","rtl","selector"],"license":"MIT-0","_id":"postcss-dir-pseudo-class@8.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-dir-pseudo-class#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b93755f52fb90215301b1d3ecb7c5e6416930a1e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz","fileCount":7,"integrity":"sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==","signatures":[{"sig":"MEUCICAMs2+UBRCPQxPldIW9u1Sdqa8HoxXBaZVWhXccB9kcAiEA/5nLG7k0n9MFzQkcuR6YERPW3wergOP3Auce8fpPwy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12101},"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":"f0f268e7e199b0a79b19843ad81c11d45416ecca","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-dir-pseudo-class"},"_npmVersion":"10.2.3","description":"Use the :dir 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-dir-pseudo-class_8.0.1_1702682290091_0.7784338699469318","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-dir-pseudo-class","version":"5.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz","fileCount":8,"integrity":"sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==","signatures":[{"sig":"MEUCIET7YtYKavHFFTm5SVohs0bpHcnbJYyj/wKsqNcQf8/sAiEA9G7nY+CvvU9b/j377mnrrVQOiUmn7K1kETBnz/mne3M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboGphCRA9TVsSAnZWagAA13wQAJ3LZ7cNWxPe3obPCbUl\n0DmqkyNqPOwhYbBw6xDgehUy1FndRclEJshENRWjHI3pskmlXYtK/lcuqMUE\njSOvWg8/dVTBZi8OWbaFe0ax7jFkN9a+uORM43qH7OG8++KTSnM6mo9s0DeB\nW0Oi/wzCpzdUp47+V/pbOfp/wcLYsxyScwQS8UNfbEfKooXPSXoPOhpo0mtM\n0lqdBPgPA+MIfM2PEYhm5IijltNvBbElBVE6FfqVoJcx3+9+K/EGSLxqr9H1\nkYy4lzSHa4AHG8CWjWxLpMOpSw8Z4Rg/N1NB2LxzztTUaaWyvfxVPGZA97xp\nK8kPWoupAC6xeVFxytAjItdLTeiFc03nW8RalZ5lJB+8sax/xnHcVWmO5smW\nSoUiFiXjd/+sCVS1IeRqOXnxd6s2aECN4Yln8cGMGvo1kq7XrrbdKiepBqFq\nhrCc0IBy/NkJVmV/fCQVuesKS92gveTI0Ab+Kq1bMZ9LhTNW9Q7CgAChF5XX\nY2lgUm4ACxTHK8RgYYkf0orWUL0UhToGsd1g1nKiW2aH6Y/e1m4QWsHYvUSU\nI8NmU+XkZe5/deoRdaXMrUmHuN8VcHoBIJ3KOPRzeK8KAUwGaAD8o1eUTOqs\nP/IcJOMhBewqPhxLHfa2LaffU37w+2ADm8UfoA6XqdtJNK9pfwC0/elCRCCf\nC8nM\r\n=4/yG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=4.0.0"},"gitHead":"5d4fc6152f22f2961f8731420873e8dd4247184e","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"6.4.1","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-selector-parser":"^5.0.0-rc.3"},"eslintConfig":{"rules":{"complexity":["error",{"max":30}]},"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-dir-pseudo-class_5.0.0_1537239648426_0.96215529622686","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-dir-pseudo-class","version":"1.0.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"9efc21b5c84549289dff87269b3dd8fed92521bc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-1.0.0.tgz","integrity":"sha512-44NvO/NfsYjUx8z1eyw0NGTfiLe8jqDqVgumMTUBVQ35fiI7Kpx/YxtsRsJ98AXCgCL2h6EAKKLwEBtAlqg5Tw==","signatures":[{"sig":"MEUCIEiLYKzl3jI3nmToCbSuBAhMNU/OyqCQYVY8NfWyvd8CAiEAg/Gaz1H5gJqfdbJZ2yNCr46LaSTqsJ3HNEvQVsg1fHU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"9efc21b5c84549289dff87269b3dd8fed92521bc","engines":{"node":">=4.0.0"},"gitHead":"0f75c5a661bfd268458daab910a8b8147d9aa4b4","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"2.14.2","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"4.0.0","dependencies":{"postcss":"^6.0.1","postcss-selector-parser":"^2.2.3"},"eslintConfig":{"extends":"dev"},"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-dir-pseudo-class-1.0.0.tgz_1496339493617_0.6407984760589898","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"postcss-dir-pseudo-class","version":"1.1.0","keywords":["postcss","css","postcss-plugin","directionality","directions","selector","attribute","polyfill","left","left-to-right","ltr","right","right-to-left","rtl"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-dir-pseudo-class@1.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-dir-pseudo-class#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-dir-pseudo-class/issues"},"dist":{"shasum":"e0cbd815a73219422e778a6e4913d417664a9bb4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-1.1.0.tgz","integrity":"sha512-1Z/ThmJK3Dz6nDN+S5qtJajxDQ8curXa3mCi6C73pkejDFEKuBdDIEob/ObfwW8xSCKjIoxvYLfoPfgVYefUfw==","signatures":[{"sig":"MEQCICZJpoGpqc5VyiXdjEOIVNWwBHOx+OQUnaPe1g+t8K16AiAvI6QzVRamigIUkixwjO/ayDAfs7zy6qpJDe5ovny21Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"e0cbd815a73219422e778a6e4913d417664a9bb4","engines":{"node":">=4.0.0"},"gitHead":"39756e624b7253a5ad581ad17bba8166c797d654","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-dir-pseudo-class.git","type":"git"},"_npmVersion":"3.10.10","description":"Use the :dir pseudo-class in CSS","directories":{},"_nodeVersion":"6.10.3","dependencies":{"postcss":"^6.0.1","browserslist":"^2.1.4","postcss-selector-parser":"^2.2.3"},"eslintConfig":{"extends":"dev"},"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-dir-pseudo-class-1.1.0.tgz_1496425371533_0.23691985290497541","host":"s3://npm-registry-packages"}}},"name":"postcss-dir-pseudo-class","time":{"2.0.0":"2017-07-25T16:42:33.320Z","7.0.1":"2023-01-28T07:36:33.875Z","2.1.0":"2017-09-19T20:44:51.525Z","7.0.2":"2023-02-06T17:18:48.692Z","9.0.0":"2024-08-03T21:36:29.302Z","created":"2017-06-01T17:51:34.561Z","9.0.1":"2024-10-23T21:44:23.885Z","7.0.0":"2023-01-24T08:56:28.764Z","4.0.0":"2018-05-08T04:28:01.742Z","6.0.4":"2022-02-05T17:01:55.477Z","6.0.5":"2022-07-08T16:16:53.541Z","6.0.2":"2022-01-02T15:41:51.199Z","3.0.0":"2018-03-21T06:31:31.281Z","6.0.3":"2022-01-12T09:39:17.240Z","6.0.0":"2021-09-17T13:31:16.592Z","10.0.0":"2026-01-14T07:22:09.122Z","6.0.1":"2021-12-13T09:03:08.947Z","8.0.0":"2023-07-03T08:11:53.768Z","8.0.1":"2023-12-15T23:18:10.290Z","modified":"2026-02-16T13:28:11.732Z","5.0.0":"2018-09-18T03:00:48.588Z","1.0.0":"2017-06-01T17:51:34.561Z","1.1.0":"2017-06-02T17:42:52.406Z"},"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-dir-pseudo-class#readme"}