{"_id":"postcss-logical","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"dist-tags":{"latest":"9.0.0"},"description":"Use logical properties and values in CSS","readme":"# PostCSS Logical Properties and Values [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-logical --save-dev`\n\n[PostCSS Logical Properties and Values]  lets you use logical, rather than physical, direction and dimension mappings in CSS, following the [CSS Logical Properties and Values] specification.\n\n```css\n.element {\n\tblock-size: 100px;\n\tmax-inline-size: 400px;\n\tinline-size: 200px;\n\tpadding-block: 10px 20px;\n\tmargin-inline: auto;\n\tborder-block-width: 2px;\n\tborder-block-style: solid;\n}\n\n/* becomes */\n\n.element {\n\theight: 100px;\n\tmax-width: 400px;\n\twidth: 200px;\n\tpadding-top: 10px;\n\tpadding-bottom: 20px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tborder-top-width: 2px;\n\tborder-bottom-width: 2px;\n\tborder-top-style: solid;\n\tborder-bottom-style: solid;\n}\n```\n\n## Usage\n\nAdd [PostCSS Logical Properties and Values] to your project:\n\n```bash\nnpm install postcss postcss-logical --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssLogical = require('postcss-logical');\n\npostcss([\n\tpostcssLogical(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n\n\n## Options\n\n### `blockDirection` and `inlineDirection`\n\nThe `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.\n\n**You should tweak these values so that they are specific to your language and writing mode.**\n\n```js\npostcssLogical({\n\tblockDirection: 'right-to-left',\n\tinlineDirection: 'top-to-bottom'\n})\n```\n\n```css\n.element {\n\tblock-size: 100px;\n\tmax-inline-size: 400px;\n\tinline-size: 200px;\n\tpadding-block: 10px 20px;\n\tmargin-inline: auto;\n\tborder-block-width: 2px;\n\tborder-block-style: solid;\n}\n\n/* becomes */\n\n.element {\n\twidth: 100px;\n\tmax-height: 400px;\n\theight: 200px;\n\tpadding-right: 10px;\n\tpadding-left: 20px;\n\tmargin-top: auto;\n\tmargin-bottom: auto;\n\tborder-right-width: 2px;\n\tborder-left-width: 2px;\n\tborder-right-style: solid;\n\tborder-left-style: solid;\n}\n```\n\nEach direction must be one of the following:\n\n- `top-to-bottom`\n- `bottom-to-top`\n- `left-to-right`\n- `right-to-left`\n\nYou can't mix two vertical directions or two horizontal directions so for example `top-to-bottom` and `right-to-left` are valid, but `top-to-bottom` and `bottom-to-top` are not.\n\nPlease do note that `text-align` won't be transformed if `inlineDirection` becomes vertical.\n\n### `ignoreCustomProperties`\n\nThe `ignoreCustomProperties` option allows you to ignore any properties containing `var()`.  \n`postcss-logical` assumes that all custom properties are single value (e.g. `--foo: 10px;`) and will assign these to physical properties as fallbacks for logical properties.  \n\nThis will produce broken declarations when your custom properties contain multiple values instead (e.g. `--foo: 1px 2px;`).\n\n```css\n:root {\n\t--inset-a: 10px;\n}\n\n.foo {\n\tinset: var(--inset-a);\n}\n\n:root {\n\t--inset-b: 1px 2px 3px 4px;\n}\n\n.bar {\n\tinset: var(--inset-b);\n}\n\n/* becomes */\n\n:root {\n\t--inset-a: 10px;\n}\n\n.foo {\n\ttop: var(--inset-a);\n\tright: var(--inset-a);\n\tbottom: var(--inset-a);\n\tleft: var(--inset-a);\n}\n\n:root {\n\t--inset-b: 1px 2px 3px 4px;\n}\n\n.bar {\n\ttop: var(--inset-b);\n\tright: var(--inset-b);\n\tbottom: var(--inset-b);\n\tleft: var(--inset-b);\n}\n```\n\nWith `ignoreCustomProperties` set to `true`:\n\n```css\n:root {\n\t--inset-a: 10px;\n}\n\n.foo {\n\tinset: var(--inset-a);\n}\n\n:root {\n\t--inset-b: 1px 2px 3px 4px;\n}\n\n.bar {\n\tinset: var(--inset-b);\n}\n\n/* becomes */\n\n:root {\n\t--inset-a: 10px;\n}\n\n.foo {\n\tinset: var(--inset-a);\n}\n\n:root {\n\t--inset-b: 1px 2px 3px 4px;\n}\n\n.bar {\n\tinset: var(--inset-b);\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/#logical-properties-and-values\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-logical\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Logical Properties and Values]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical\n[CSS Logical Properties and Values]: https://www.w3.org/TR/css-logical-1/\n","repository":{"type":"git","directory":"plugins/postcss-logical","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-logical","version":"2.0.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical/issues"},"dist":{"shasum":"800a0a6dd3f423d530f1fa30f089be1fbdb2d1bc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-2.0.0.tgz","fileCount":8,"integrity":"sha512-kN8858jRTpeE5cEv2aqd6f9WGSDvA5toq35gLc1z514MaaYM+4yLLHLol1WsiofUEVYT6YUD6QrmixRICjv3/g==","signatures":[{"sig":"MEQCIG+dGvRKccuB/wHYTCA64Lsw9hLDAtcFvT4Pc0iJhkW1AiBURgaCF1YNBT0RijwOZ6MD5JGZT6bG71BqnhLxdcqCmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127656,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboH0lCRA9TVsSAnZWagAAlGoP/12E1AFnAaJ3IPOrFrjP\ni9oLk1fcGH/F6kdSTtVwgr9K33ITgjVxMY8++oZDNrvh6YsLDrHLci4m+vwN\njCzoWv7VJA5V/34LkNdoSQ24iHqViauJxNssRiL5wpPt02+CM37paYmvSkm0\n+JOpyjw8uWjldL+UuWToGUlsJzrIdbCrtmw60dsr2oGNKKUeaTUkhxD8heU+\nC4kTbyrz5jppR2GzgapxcBuBa6BJ2EvTQIQJUuouo0oZvhw+frFf7Uxc1dwo\nRaDxgs/XVt3e4mpNf2oOyRgQJ9iHy2RV9Isapbgzu5Xazrb2cIbldNoqYeZE\nUlZGL2AkY2/TWb3YtS03dDY60qRBdsYJj0zU8dTMprRPx+5nUPfohSlT73a7\nyp8uV/XeQm2c5aW7TjbrkX24G2WjFAPtZGD2AGt5JDEbq/Xd+1nxWGvaKQJ6\nRFpFG/23uSxiZxEPDlZMpnb7XdQ5ZD3MmcGkGeKjaz6svFwoEbGNcXoJRkPq\ntz92OvS6d8oJk6PodzgMOm2gIxoDr14f70IczYWed6hjX8/pVyFJ1nbYJELr\ns1Y3KDdy2yw+fRZdUwyf32+UufvUFC713XgI6FPlilK/gtaIBLQzW3dqGyGk\nIZ8OWnePVroDKfvgBraqMdokQdO8GlyYKyBGnhLZ3ZsQrjuFTwyFRA8knMvb\nNm4R\r\n=aW3w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"581ba23d7c32f472b6785fa37c6a3dd0e467b74f","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-logical.git","type":"git"},"_npmVersion":"6.4.1","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","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-logical_2.0.0_1537244453108_0.02518712729529038","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-logical","version":"7.0.1","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"MIT-0","_id":"postcss-logical@7.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a3121f6510591b195321b16e65fbe13b1cfd3115","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-7.0.1.tgz","fileCount":7,"integrity":"sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==","signatures":[{"sig":"MEUCIDKCS3wLVHZDODGB5CsBMk2AugaKyzOioBcoMHirVrrhAiEA3PoVt9Ov2n/vaq3nM2jou+bZzsTAxNrhHy/zuTEn3YY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32443},"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":"a29bf95c88580c02a324fafcfb72598b0c302a96","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"10.2.3","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_7.0.1_1702682349496_0.9957052356296339","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"postcss-logical","description":"Use logical properties and values in CSS","version":"9.0.0","contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.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-value-parser":"^4.2.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-logical"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"gitHead":"755e92402306dbddd0ad66a8d902e35a62c21c2a","_id":"postcss-logical@9.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-A4LNd9dk3q/juEUA9Gd8ALhBO3TeOeYurnyHLlf2aAToD94VHR8c5Uv7KNmf8YVRhTxvWsyug4c5fKtARzyIRQ==","shasum":"76d09cf580aef4af7987a63a69675e8a84feffa4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-9.0.0.tgz","fileCount":6,"unpackedSize":20444,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCkbfXzoYAfpY5pmtgtV44PowrBgP0sJ+AzTJls/N5AvwIga4Grx6xIy88FxFYWyruDMs/Pib957jjbyZsgWB8vtYk="}]},"_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-logical_9.0.0_1768375393453_0.8112823584907194"},"_hasShrinkwrap":false},"7.0.0":{"name":"postcss-logical","version":"7.0.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"MIT-0","_id":"postcss-logical@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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9a83426e716e3c8f957dda3fd874edbcf22c754e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-7.0.0.tgz","fileCount":21,"integrity":"sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw==","signatures":[{"sig":"MEUCIQCEBm6G48CbQRa2IJwUv/VpnmVP1C8UY62CALaTWlWgAQIgH4FMWKdL/8DMJBQBy4hbNbJEIqEdY/R7vS7teTMcaQg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39892},"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":"3c8d24b162ebafd746044b834069cc7baab287fd","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":"logical-properties-and-values","specUrl":"https://www.w3.org/TR/css-logical-1/","exportName":"postcssLogical","humanReadableName":"PostCSS Logical Properties and Values"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"9.5.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_7.0.0_1688372060844_0.08177454099056924","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-logical","version":"4.0.2","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@4.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-logical/issues"},"dist":{"shasum":"63f5207bae63f1f646462c26509185c2eae22c72","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-4.0.2.tgz","fileCount":8,"integrity":"sha512-tlX1n19np6/JznvyymZM6SIe0FymD5Ngwcg2j825vNKhADu0p1PTgEmsCjakCbvn78kaIFzYTI32NpgOEwgifQ==","signatures":[{"sig":"MEUCIDIeBo4aYCFwnS3NroUxmbHHw56Wy2ODmLm1vpL5xtgWAiEAv5jmlXFf2HBc/WVL8v3g+H7+DbNp8zBS0O8HzoR5Zx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":158684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/qQWCRA9TVsSAnZWagAA3ZIQAKNsU8OW8avOVY61LOUY\nyjbhDSAxTC2L7bJUQ6ULZc1vwiQ4SGT9yAXSKsSn5PSWSMZmc6y4ojTYMNKz\no2sFlmbca/tKdN8oEoAwkBASEQB1PsRcIo4h61XQC4a4ssdvKb5B3YeSbxIj\naGHso0hnWBSUitsgwhpgys+hfogLrb3FX1HVacf9MAjCq85IeSaOprvdpL5V\nobc60s+iG7Mni/FX9wdDO+Pq2l+HR0lKiPio1ABTZM/GMkhXLptwj9jMBuCx\ncU2ijixnav8MOy4R/7Qts21avOUyG+b58wyfZ7EaJ35j+wWX3fpsg9NlPo3l\nyhIviwPrr6tNqUxQPJy82DbhCt5VQm6jFvQf9IjWqQJIrE3oNU+F7fYSC+yc\nDvJ1ABHEW2APi/1ruP8JFsklVylE3T1+0e7QOH1hajzQ5J2j+T2WgAcuZMzV\nMrCeUi/Qr0V+Afh4E8HYkYgPGxJrNKk0iRm3JCpCdr5aiiwdZiAZDylKNS6/\noVX8TtC9ohQepRTwUKX4Tzm6rkEPiT2fHf2BHIVh/AjekFMDFxcvoUO2L0WR\nYiyC5i8XtULUnYva2VX5/fYkml0owW/sLZ9P4pz63ZFKpk+23Sc/LubPJGqy\nvgxlHrPSsP6nrKauwz/7hOZ8nAIrFOfSZvTdBjSCL+1IJ6Junqn6NfOOE8FC\nivTd\r\n=sTPI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"8d26b47cc20f6afc4a0a2853b5c2215f7187d511","scripts":{"test":"npm run test:ec && npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-logical.git","type":"git"},"_npmVersion":"6.9.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.2","eslint":"^5.16.0","rollup":"^1.14.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.1","postcss-tape":"^5.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_4.0.2_1560192021423_0.2817078716738577","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-logical","version":"4.0.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical/issues"},"dist":{"shasum":"c2805b079c721118ab5d7473fc00d618d24a39d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-4.0.0.tgz","fileCount":8,"integrity":"sha512-z0BR7UdjlHUim1EMMUeVD/qE5xp3kBHJ9sIHjXEsCdYOwV/NBChObf0YbGKEP3ucDH9sTFNIQwSrR9MEpmNu9A==","signatures":[{"sig":"MEUCIBeM+ZSRyGPl6+n/I3kR3XaH4wV83vgcEEfX1t/GzIqYAiEAuJcR0FrZh9qybkckosiGfItWzMbXrzHjJhsaqDXq3sQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":157371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+T1pCRA9TVsSAnZWagAA4R8P/A9qMcey7scV3Q4M4G7o\nrIBGWVV/d2tFt60B0/MC7oifkFEvOGudS3LXxoqidU3bwNrU5IAiC6AhBz4Z\ngIirNgjzAYXxuXHMbm9oQquZ5dER6w7mKETKyADKORCZBhyDsYBXqnGdYe9m\nQbDrZ2bi01kTwko9Y98ffjt87acb8ly1FAnH5dMdKZso0pv8gDcwJlHLOw3z\nI3haL0t/ApX3HTK79ASKQ5t24k3gV8xZdguikofvxM9zdac/f4tpIoWf9bnH\nsrcRjY6K05R9qFIbMdC+LUS5zmgRp95+Y6dSc9R13+CEo6cgTuzGwccflaUa\ncDsZ1QZHnMmUUaGKV8Bn2loomAKptBSAGX0PGw+ydfkaryMYNCePzHwS7OQn\nzeP/NO5/fI4zIPBkm2QCg3RsawStzODNWzNSploXcbRpShnTOOjemaGDI2bQ\nfM/2VrpGEmLStYPpXKnq4rY2pm7Dj2buftGbVRC7Q1p8vQGqP/qW/XxNVQEr\nYy1XvwAFM/o6tTYDy6zWZQlMe5jBH7bEaW3xGpJMolNS+Og6hJU2yDz/kB50\n+SEgnXXIc2Wo+UdPNOo9jTEOuPT53Xmk09n/4cfPk8QGCWpcS22Ffvnpow5D\n79WCSqPR65Sr/Lumujxz3UY3RlVD7dZorzRs6S3LSOsPPN3sV1cbZ7e49o1X\nRM1r\r\n=VBoy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"51ddacb541c48c01805ecc64c93358126451c950","scripts":{"test":"npm run test:ec && npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-logical.git","type":"git"},"_npmVersion":"6.9.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.16"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.2","eslint":"^5.16.0","rollup":"^1.14.2","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.1","postcss-tape":"^5.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_4.0.0_1559838056148_0.40374774393558166","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-logical","version":"4.0.1","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@4.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-logical/issues"},"dist":{"shasum":"47aea0a0d31c16fe6ac0d635b46f6fe895d6addc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-4.0.1.tgz","fileCount":8,"integrity":"sha512-Poc3u5gjlRzUhXrGWrw3PQQ1oIoRuuSwkYDMk1sA8Dab0OU/KV+U/q3B+poMvgBxO97vpgC2BmQhFumUwfMxIg==","signatures":[{"sig":"MEYCIQC3JowPb9RszMi9bTScXcirWyZQSABCBKPDoyHKnrBRZQIhAJg5dNz+nXgsOG9Mk6Avbl7h1Q5KeZ9iJ8zKLX2UTSF6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":157451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/qBGCRA9TVsSAnZWagAAV6gP/A6BrX8iENjaTW6PDz8E\nb9kTPwroGT9JMQsIdlIGe3fl/S71BujyI4hePWIPh8uClw0ddt8qRKTpc284\ncxrmbhDohbJhF3PS8/ejaNdgSwRd2jLnRbHZNREok15Cu70KuCzT1U35gGpM\nFTI9Cdaepw+3zFoKA0FsJPnG6n21ezhYBhSDPwk458vSROuKcLQ0jr2Hj0I9\nmUT3Xnu0tjF9+z6Yy8dMpO75OrBbcfMPY65nDKa8GqcnjxDf0uw021BYVbUK\nmAXZe/Z6xvHx1Bw/lZx4fBWEBh0W7/mds9g/rRTQGPiYllAZYSdHeFUnm/vA\nQI9Nti4m2C9UqfXq8h7wenwC+D2KMAHjsroIhRkOoniIEI1jxcO9/ACtAsyA\ned9c51gB1QfCf/CNknrWHCDaO7wy24jtmH55fj4IZ4O//PKq/lHd9IxmFLqe\nVlNZPRQn1UILYhpzGBeXKtOVjJ+SpmcnVL0qW7o2gT9VCqe0hZwU8ivhdGUc\n9wX6SmO6J2u5BMfEUoEpAb1qgCT3bE/WckXqxf30JrbAZw+NQeActGWy9inq\nNk+mIrdNLlKPrtRvA9l102q9NqG/Wpl5FhhDlnsTheTs0dviOfiiMRWmr/w8\nD0Sh56Zh/imujQeoRRt2TbREaylrVhfedRDz9bv8eZrrhAtXNHpYsYJhP5xj\nKNgc\r\n=81fx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"80d5a09e1b9f5d3ec45b6c86b9a7ee99b85c76a4","scripts":{"test":"npm run test:ec && npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-logical.git","type":"git"},"_npmVersion":"6.9.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.2","eslint":"^5.16.0","rollup":"^1.14.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.1","postcss-tape":"^5.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_4.0.1_1560191045932_0.17184036650629397","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"postcss-logical","version":"6.2.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"CC0-1.0","_id":"postcss-logical@6.2.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"85e49cfee3ffda839d4befcab9f70c70a7bb337a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-6.2.0.tgz","fileCount":21,"integrity":"sha512-aqlfKGaY0nnbgI9jwUikp4gJKBqcH5noU/EdnIVceghaaDPYhZuyJVxlvWNy55tlTG5tunRKCTAX9yljLiFgmw==","signatures":[{"sig":"MEQCIDIwUFou3h2QavSWjQ37cPh1w0ql4Q+Tkw0hiK3y/6JFAiBtOYbI1khECE7q579s2uXO80eGk3z0g1eLiJJ6xLHvFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45588},"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":"4282a4629b39093295e72b3f629f808734cb1435","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":"logical-properties-and-values","specUrl":"https://www.w3.org/TR/css-logical-1/","exportName":"postcssLogical","humanReadableName":"PostCSS Logical Properties and Values"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"9.5.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_6.2.0_1684510695333_0.4264687818880397","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-logical","version":"3.0.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical/issues"},"dist":{"shasum":"2495d0f8b82e9f262725f75f9401b34e7b45d5b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-3.0.0.tgz","fileCount":8,"integrity":"sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==","signatures":[{"sig":"MEUCIFGCgvELpjSXmOOmk+6A0kxXakvLI+LU4GBZFRJpXTswAiEApM286K5FzXVT279vS8ucpE5Si5OlyBgBab/mGwgSu/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo4HPCRA9TVsSAnZWagAAL0MP/3OQMVqcjo0gSPt8o7/9\nk7PRQqfgsfnFInaleRv9RVMu0FNIlcgb2+eEJ6/mjaEAq86T2lQ8NS8VS2q3\nTvpFHfSjj6/whJY/h9LeP+FZPh36M/Amv8C4X3y/UdUf6U4/WJjTrrCa5FzR\nn3KbkYCr/bzmQJXfWJC4pUp+vNmQc2wTQGy8wI/Zsk0aJZWzX1n63t8Jl6Ga\n517s+KeFm/K03HzqAe9QToW7q7DN3c6of5aJtV7B6Xdn9x0ZK4YxKIjXokZK\nupMNvIdFhKpMED5007rVfF0dpsJea17oPSe0L/xzIT4UsmSo3pdEIO08NF2/\njOO3uqMFKz4fIcvy/88VyDO10GCIfy+OHwZx35/rwCeAK1QNPo9sOSyRYfOh\nG4xKQTodC8ZZNW7qf7vDSsgftqT0+J/6YsRt6oOTSp8BtmnWmrD0hy7P4U8X\nBeb1xAP0uyKReSD2NdQ1LRAN58WEzJ8D1Z9DY5RKHt3Mk+CfwNMTOzoAZdmj\ns1M+aGuOsk1vJvA7oxEkaMaa5c5oahbkObK2PEpFplYC2UFsXgcloSzh74Nv\n9FN5XUUnq0ZY+R3/4+EUbpa6waN+dpYGxi58D6TwgPaeDheLZlFUtS6wPs1/\nslX2PiUVSysSXbE7B3mGjE9hANPnLsVE8swEZoNdyqKPHrkLWNarTgutPkfp\nZBMa\r\n=f8KZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"606e09248830f49534d61b2c36ed2add09ee52a5","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-logical.git","type":"git"},"_npmVersion":"6.4.1","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^5.6.0","rollup":"^0.66.1","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_3.0.0_1537442255066_0.8845229586327465","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-logical","version":"6.0.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"CC0-1.0","_id":"postcss-logical@6.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"065b196c0935f4124996748a2382ec0c880615d2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-6.0.0.tgz","fileCount":19,"integrity":"sha512-pn50jY5c+PmpYiTZ7KfYQ4aKXAVaFfZgNevtUwXglD22TxfLrrYD5d8m7UDQkT9CAfYvBgSkzPSBWTyE0WuQmA==","signatures":[{"sig":"MEYCIQC4+BTwYbMEIviQqJqsvJ6l6UZtZbjfDJUz4CEgiRGsbgIhAJR9uerNYsKEosB1WKq91JPkXSgMN5TPOW9dgYlr6z/+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz6BwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ3Q/+PRizbjGOQDVm2JkIXvSJ0cncQYKAwN3eWJSxM7Qn2fbI85jx\r\nb501GEaiy8XWZN0SfmM/xQo32cwzaia2yQrAYjqI2yGU1NSE/PpX8VnFEV1v\r\ngSCwZOhM1BwOAOjPmnqmr2giA0RLeJ81eHmnGOlNguDaPR+wZoU3k7W7zyFZ\r\n7hAaOIQGZ8VkBktd3bk4H0dBGe1yw1MaVqJg0o0W5tAy5eG+Rccw51z78unl\r\n+B4pQq45LQ6CMLzZ9hlLIYtxr7gUgTV3JRAQ0bYxUh2CRM7kbQwjY0NQUixn\r\nfHB4EQpP5Dc5CAsrRZBZu+yXA8s1AhhJhvzsh0dIuGK5gX3hi99KXMOWOhK/\r\n/xfGLnM2Kzf+FFJ9DtJqS+lXA7xnQI++H29EC1wZNZWef1rNbnIsVu43d+UU\r\noq1ZLuKu4Pw+VjXpyN4O+IMkIf+bmQsLT6/raOawyzvyVg44NMmMNyWaJJri\r\nND9sO6QxvGojpjb6bT04gDlpQ60uDc11m3VsPBspzeQ8+m0SeGOHrRaMNnbK\r\nvGLjWqVWKhyvjUKUptEwWg+nCbEdmSlF/2km0B1sqI1St4ILTM88oajp76iY\r\nJGKsXz1oqsodLiDYeDrJEQLeT7y6+Aku1FuJGpRheu4hOgx77zewehI1wBa/\r\nhS7NnFrxCyhsCYPfl8kPyP+gR5tSgk4O1Zg=\r\n=mS1a\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":"f0ecb88b3eba38248c086703eb65b554498d3219","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":"logical-properties-and-values","specUrl":"https://www.w3.org/TR/css-logical-1/","exportName":"postcssLogical","humanReadableName":"PostCSS Logical Properties and Values"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"8.1.2","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_6.0.0_1674551408633_0.44288939570025265","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-logical","version":"6.0.1","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"CC0-1.0","_id":"postcss-logical@6.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"bd286a06b521aee7b69ca64108bcb3ff9f516ec9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-6.0.1.tgz","fileCount":19,"integrity":"sha512-0LIzRgbT42n0q8txcM9SrLkYLjr1LTbRTy80bnKiYXY8tnYGdjkBymwb5XE87o4csW1z8dhKD1VRI6cHBQBQtw==","signatures":[{"sig":"MEYCIQDNdqy8AGzFjzMGufyu++dMx1UR/oAWXUKRpcTBVz6BKgIhAKst7P/+4qBEnlkx9JdN8btN/nIEnKhmvxp6i0g+J9nJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NKBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojoA/+NJSJcoM5itt/GxMdk3Z/+Lqvo8eJPRI1alKuMWOC/tgGqsuh\r\nIDxNWfD1aVdBQKRU87LIQVudBqxrooRINUlJYJ5tH+FM6QB+Na0w1Tg5mM/H\r\n5aFVX/Kalfobg61iZR3GTvrRlB08+EOobNxAyxbCtOYnbEFW1RqaAkjPmkw7\r\nfhTYkMaYFEV8OzVWz+AaKBmsi9qhiE7meWEe1Aa1xy32yiBX0xtEgz+R2rT0\r\nhbvfaGFPQPHKFm6aWjdhryLPZ/J7ZysVVOcRAJYlB+P91OMGAg4QQ1/hFP9B\r\nWkdOtAmxXZxPaWNuFICfaFjqznvRdL1qgcy6F5V4EF3bic0YzEy8cO7t6XUO\r\nX0pCh5hJwm2yfWisA9238JzazQJUmtk9kyeIBfXmigQWowbjdG5orvV9+Hyb\r\n3Soes/G8bDNsegqJBRLONtrzddm+Wo//3fKlVOudlGgMDMtdyJMBs04JRK0g\r\nkFk6eiS8sq6UGy+evMoWCBX4cNR9rvY0jEoTOQzt3BQLmLA69+6Q3WZ7aj0r\r\nMRoZJ5AmBwnSjzd7xXc3UD519UC2O2V6rCI/xl0PkUIdphKfx8bSncpGeero\r\nt7AFIpWaz0THrkJFvK6WPsMD+8oD1IaCIu2+Vjbv4FzWZuu99CV6s+mw7Zzs\r\ns6qG5kn5YIMBtcm6tUyb+pCe3eJTnPbsOsA=\r\n=w2N2\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":"da08e75fcd0e4bec234103b946b93772fd33b3cc","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":"logical-properties-and-values","specUrl":"https://www.w3.org/TR/css-logical-1/","exportName":"postcssLogical","humanReadableName":"PostCSS Logical Properties and Values"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"8.18.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_6.0.1_1674891905251_0.4552693920667772","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"postcss-logical","version":"6.1.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"CC0-1.0","_id":"postcss-logical@6.1.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c33ae75d3edaea7eb821e76dc4e6d0ecedc3200d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-6.1.0.tgz","fileCount":19,"integrity":"sha512-qb1+LpClhYjxac8SfOcWotnY3unKZesDqIOm+jnGt8rTl7xaIWpE2bPGZHxflOip1E/4ETo79qlJyRL3yrHn1g==","signatures":[{"sig":"MEUCIGLVbvgaLppj0SGAHkO3yT6s192mYl/anEtRm+GEOmvOAiEAzXj8dOdAARWnxRNcrIYAZtaOc7m1R78gAUOXNevAygo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7JYxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+rQ/9E98T0vSmb5J7ey2RAlw/Dz5hvPTmCBJalzgL2u7TkmqfH3KE\r\nwvqfIgkTmjRT3C77TVdFb/4uCukTIZTj0IKe/4m4KhCW9ykrxTSozfLKA+YE\r\nBbomVfYvzfCdWgr+2SjIeidDqpq0Zdu9MlMLY5//jitvHkxo7HJTC288UarQ\r\nYCDnr63xipZgNUeLEW9gEqktF6wEURO2ytEk83fGQrWpXlbX970ZwhS4BK09\r\nAUOomz5+iO3Y28kANagzcvJLJ402iVqXzZ8SeMRyd3GNgPZboTKmfmI17BuV\r\nArBorz9LDqUFEESEUoQPammjfBylprQLm1Dy729PWFJNEmvh4YrligZIY5fB\r\nXKulsIfKn0/hG0e93aF+3MrpWueBzUY/XzKcEwYrt6GFt3r5vzgfNdQen9Qu\r\nvMEQ/B3YLTO8K4KLKTX/j8kfyKuLa/IgSH+T/405OIFXXfqONgx/NfvXwWLU\r\nLFArLgE27lChbG/c9HyEJOQ5YPrPUPOTbz44ish+MaVpi2nYvbvIApMhOq6g\r\nrahODNRPFG5/Fl6S4PXy1JWxwhc9HgPhMgrhEvuR3pHuGdFTgi7JICbkZJl7\r\n4815XhmbRrXkdJK2s9yh0KsS1NKKCGk9KZiEbWXD0m8jEkYg0vI2lnCNmqbp\r\nRvu+FvXKjm5fYuhF+VQdMoM+FdtLZR5Nd/g=\r\n=vF59\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":"38965076e99fd807fd639272510e18b47107edf5","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":"logical-properties-and-values","specUrl":"https://www.w3.org/TR/css-logical-1/","exportName":"postcssLogical","humanReadableName":"PostCSS Logical Properties and Values"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"9.4.1","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_6.1.0_1676449329208_0.5009632658322298","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-logical","version":"8.0.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"MIT-0","_id":"postcss-logical@8.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":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0db0b90c2dc53b485a8074a4b7a906297544f58d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-8.0.0.tgz","fileCount":7,"integrity":"sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==","signatures":[{"sig":"MEYCIQCqZyRO82gCj89cVnFLd89mXYKITM6UAfEesWuLpEzlbAIhAPpopavJdfaqXhM24j7KjTOrkZKvc09eIaozCRRZq5tR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31441},"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":"fd14cb0a3d698cce398a0ead2a514878af59aadb","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"10.7.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_8.0.0_1722721045604_0.972194178482904","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"postcss-logical","version":"8.1.0","keywords":["align","block","border","css","dir","directional","directions","end","flow","inline","logical","ltr","margin","padding","postcss","postcss-plugin","properties","property","relative","rtl","size","start","text","values"],"license":"MIT-0","_id":"postcss-logical@8.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4092b16b49e3ecda70c4d8945257da403d167228","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-8.1.0.tgz","fileCount":7,"integrity":"sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==","signatures":[{"sig":"MEYCIQCmoQtb+ZIAD9VESfwi9cnBTp8YOK6i3aak0Oz6GzCr2wIhAMagn+i8AwtR2Ly/igzUJyU68+Xo2eld7762VhIV7x+e","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":32998},"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":"d60448e9f7114b5f57667786127a7aa9240e21c6","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-logical"},"_npmVersion":"10.9.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_8.1.0_1740330324930_0.3564882314282689","host":"s3://npm-registry-packages-npm-production"}},"5.0.0":{"name":"postcss-logical","version":"5.0.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-logical/issues"},"dist":{"shasum":"f646ef6a3562890e1123a32e695d14cc271afb21","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-5.0.0.tgz","fileCount":7,"integrity":"sha512-fWEWMn/xf6F9SMzAD7OS0GTm8Qh1BlBmEbVT/YZGYhwipQEwOpO7YOOu+qnzLksDg9JjLRj5tLmeN8OW8+ogIA==","signatures":[{"sig":"MEYCIQCX8MuXb3ESXf39wsqjJ4gYHcrnQYS3xKonrxrxbal9sgIhAM8n2iytOR4B+tE6cdh7dgaPP9A87glXZdjx7HfQAGH2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":201930},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=12"},"gitHead":"fe381ee75215dbe28efa1d187668a68397e871dd","scripts":{"test":"npm run test:js && npm run test:tape","build":"rollup --config .rollup.js --silent","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-logical.git","type":"git"},"_npmVersion":"7.20.3","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.6.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","@rollup/plugin-babel":"5.3.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_5.0.0_1631886987417_0.8553314022006282","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-logical","version":"5.0.1","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@5.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-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-logical":"dist/cli.mjs"},"dist":{"shasum":"48dcdfca520d00ac5a450289d37d5db8f532de70","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-5.0.1.tgz","fileCount":10,"integrity":"sha512-cKekWCoZrxdQktbj8PyCOqQWxsYAPyHjoeBPedkQzfWuEqRm0KVFRHypsHAiH2dDVUae52yx8PBtWS+V3BqT5w==","signatures":[{"sig":"MEQCIBjvwKzw014SfKFgfXsyc+WtfyvYA8hDJ0KQrfh5Q+3LAiAk/cbQjAiHUUoFnOVwFHqrUrMAw2C47tNwTkRBCDLEzw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":236118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxW7CRA9TVsSAnZWagAAkvYQAIfEo1tnnwi2f4jjcVYa\nQo3iz5ifXsE0eZLdk8BjkF3YLQGuOMtSr49KiGk/gAAbElxDo1No9B4g30sh\n1F6lPqoS2IE/vVYDvXh/1gTb5bG6UYfOXSmCQmVAQ/Y1DAV/pxap8ruUu/bz\n2rmAbvlAC9HC0+ubSWvea4a8g4f7DQqBrHF1yXTDskZrH54Vrn2KwaJAEtwM\nvANSd8wbFCBJzJviMFbSP/zy/mD/plEawv3+FTQq4ZT9pUB8fIlsWxyvAU+6\npzh27hojiE0AfCAeWtNrGjcNK3IGiucKzc4eCw7Q2FUXKxHLslwOSy+8FlA7\nsawqVFqjx8hweOq+qWV83vrWQGbOwSi2Cm3Jw+2WXluKPwqOX3tShp84mUwZ\np+o3u2e4yF6xOMHX0SspWN+wYMIiZSyRiIgttDP2jwdUN5J/N54JekvDIiZn\nU6kOpRACQTHlTpibBe5C9cNuzzYmeMgSreNHcQIPpmtqM3uuOQEBCl6pGQ7Q\nmCpGUncdI/YFOLKO2282+ubRqRECOcnksQ3qVDf5Gz78HWDa0/INtL67M0Le\nB08pjQXWBJt2sYv+lS2ICCb8AmT0pzmdU+5HSDR7XTlGd4UrWgjhBr9kZi04\nv6uPnfowXzqcweA5eGkTCfXy6hOISpgqOA82IQPcqyui8gqoe1kx/JKNDnRC\nLlns\r\n=g6hb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"f5ff0dc8c0055e6ec6885bf6cc619f1bd4c9556d","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-logical"},"_npmVersion":"8.1.0","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_5.0.1_1639388603275_0.5044918198490527","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-logical","version":"5.0.2","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@5.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-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a7e66c8e9880c1ac98177f5a2d6353affcb59172","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-5.0.2.tgz","fileCount":6,"integrity":"sha512-gmhdJ5ZWYAqAI06kzhpKC3E4UddBc1dlQKi3HHYbVHTvgr8CQJW9O+SLdihrEYZ8LsqVqFe0av8RC8HcFF8ghQ==","signatures":[{"sig":"MEUCIQDbGQDD1zPnXQVOKQKsPlvbF76rejjsdKQecbZx5OJHvgIgML+uzN2TCBofUNxAx/pfV4JpHcvxg+GsGMO07zE44EM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43886,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cUfCRA9TVsSAnZWagAANk0P/2LvDQzKfA9TKuGNUtTG\nMQtr8oruz5KjItkOuh52IbeO90PJug783MV/TA3eGU6wu70Ag1FukhPbCTdt\nR82ESE6ZyboahzGGPfuPhOcI1yLlNWCxJH95XWae70/Dmx595Nk0U+GiZ99B\n/bxBWEDZMhob8DOYMCrvc0rQyVvToLsyUnoAfn3SeAQb2VvnZ5INzX2sEclJ\nYxEoVmOXuO265EVFI9uW50pziwst4AgUmVCOk+sbBZe++nse12TfziWa0dkN\nH+rVdpq+ZWNVLRBOsGK6x+Q0DFnmM/GZv7DoNE2B3UU0rXCcjkPXD9YpK1eW\nN/p+k88ALiEgxaMk5jeL3dOe6RRpleVqbY4JAPuIDW+IoZKm/54zu2fE7hNS\n1zZc2I4W8ywondWrjR45RdBR+rWL+JazelXGu51Vp7UWcbyBkjsXHkYn5QcW\naZ91yR9TkNLDoIGPwLhkjY8G821jN+HIK/xg8ga144LNwH5e8a0AVm/7vzEH\nmQvqv9Z3z+zMpf3ifcUoT55Lbkh7hJrem0IjR9YVcQ753f1j+lp8t5daK6JN\nyegpT1DoNCaWwkTya63mXKENvv8cxO1MV36nDndCjK1BoRPcmQYCcN63vHOQ\nTUO9w3WaJqy3l3IGUyG0jxWrCORh2LXXJ51QE0eWU0h+rMemozES9uXWa8+/\n/5ik\r\n=w7hv\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":"054706c546533b098db7baf0e90538f17ef284b7","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-logical"},"_npmVersion":"8.1.2","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_5.0.2_1641137439583_0.6348600714250248","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"postcss-logical","version":"5.0.3","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@5.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-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9934e0fb16af70adbd94217b24d2f315ceb5c2f0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-5.0.3.tgz","fileCount":6,"integrity":"sha512-P5NcHWYrif0vK8rgOy/T87vg0WRIj3HSknrvp1wzDbiBeoDPVmiVRmkown2eSQdpPveat/MC1ess5uhzZFVnqQ==","signatures":[{"sig":"MEUCIQCFQ5Ru6R14wSweW6FBJ25/GeEKcku2g0KzN+hUOqdr2gIgLVi4hFn/gy+03mT0u1vZeUfT4IiFtZ1Bo4V9HcVeeGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3qYECRA9TVsSAnZWagAAfKsP/31NQXLnsnXT/rgCtBYE\ncyeniUUrf0aoOqcmahi4AzbOYzd3w979kiscPZ++K6HHnQkqte3PVEVSQKyl\nUn1/uTVHKR2PUjoMxrD9eQwV37aQ64W4KBcGdpRMlN8YfISKChaseYUcP+oG\nZ7MtgLFnk39fGqAP6UjoS3fQGW33NtzjAOFR6BxtY5HH6VzNsHy2ABZd3pjQ\nXL35/FNG+EsXd+lGlZ1Nj12zjYNJ+o6lMMQaemdyVizERhvQX29dZyh18hd2\ncIDeIyUm5VUMviuFcbM9HBUKLU8Pwybai0lHwNG/yk1NN1CexeKCNAyzg3hn\nUe2Z+iMgHH9GXmL+eIO3jfGCEY8SqHdwiIckatC1i5RipMJSgTlTXxEVBIMr\nvq9USrNVsspVuKNwA1XLbwYhcvF+ZElvfs84Clj0x8Na6/2qK/UZtQ2nPue+\n1C61DUt21pgOX5k9UYtqFiNDS7/vlh1GoGGpfNdcU7f6wFg8IPbUhQVLDDpH\nk8v5J86AxhCCl/FZm6MlHQoZW0C4HV82t69pDp0OHrTjozf/9Nh18SmLHjeQ\nH/FWlA7saGD0+HcAel6cACJD72RYSC2tCzJavw0M5tEoiJncrfHPZJP7+Uz+\n03+PwlturTedTt5ki4dnUcrq6EYNxMDOqHpcvzIASys8w0fINEzOscWHEB2e\n2cqG\r\n=lluh\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":"420dec066f3718ea67fbd6cdc1a09c284bf17757","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-logical"},"_npmVersion":"8.1.2","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_5.0.3_1641981444829_0.22716081697904644","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-logical","version":"1.0.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","ltr","rtl","properties","values","directions","dirs","inline","block","start","end"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical-properties#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical-properties/issues"},"dist":{"shasum":"e00c4bb1a1299f00903f7c328d7a0e63a9014564","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-1.0.0.tgz","integrity":"sha512-NwHVZoIlApQCqoNFTpdKEkZh3Z4OxEwpSJV8fwXwJMDnLCOTRk842mWaXwzY+Hiw40vacvYOu+7tITKbLDSaTg==","signatures":[{"sig":"MEUCIQDloaAjwOcpV0cpf8ttK01Ep/o8xvAuoxwjY3arTJejRQIgIbh/qXwmMmc7jlpGtN+j/Axpm+gY5ORjzqwMnhfPbMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","dependent-js"],"_shasum":"e00c4bb1a1299f00903f7c328d7a0e63a9014564","engines":{"node":">=4.0.0"},"gitHead":"eb7ee123ce562a24b239c8ae3fee20958ae8f3d5","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-logical-properties.git","type":"git"},"_npmVersion":"3.10.10","description":"Use logical properties and flow-relative values in CSS","directories":{},"_nodeVersion":"6.11.0","dependencies":{"postcss":"^6.0.8"},"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-logical-1.0.0.tgz_1502298204962_0.6894434515852481","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"postcss-logical","version":"5.0.4","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@5.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-logical#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ec75b1ee54421acc04d5921576b7d8db6b0e6f73","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-5.0.4.tgz","fileCount":6,"integrity":"sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==","signatures":[{"sig":"MEUCIAw47OjNYwT/mfJ29Jag8UwlnmIXb5HgWn+TpXJhfYV7AiEA4RSC3dNeh6MCXbXVoTh8XR1FaxUmJgMwtCRIN+Uacbo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44391,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/rGJCRA9TVsSAnZWagAAFBQP/3AJbYKd7m3qY7tsrver\n1aDpKwYIIpBY0oOnbw3ViZMWexFCh+oeszMm6qQHpQaVU4+uZyY4dVv7JGnd\nsdONKsdCl90hzEeSpYXAOWnkxQhjUWPq5T4ZOUueLMM55SZJBDyEGN86Koqu\nLtp0HJh1PMJU2fMaYIV8f/dLtKnL1xYAKIsAqptqY/lSIp5C6a5OZVYUBbt0\nXWPy4VnlRNTRdLXKc79UjbdD6nslEw3Z7Pgh1kNyKHTJPtf16++ulPQnVLqD\nahr7vxKRCEqtV2JMTotc5SMOcOKZ7snK9pUmB3/fk9bZxERkAb79XWDXNjcp\ngCjZuXyXcgJxaaNhWnsZqJX8YOGrN3g0i2KNsm6bm/KNpY+K3+sr/Vy7myr0\nqOp3kRiBoL9qXIFQYlg/Uxy30UIyRAWFsu9NN92iKPrdqe66yUvBes9LAP8m\ndxJPMxTtT6bVRPwmRGSEABGMKlcjEiifeYQbmYv78TsEJ3fNHg4E8hkYP35c\nk1Os/tenak6W/93jMpnaELoYqYq2GV3R4A7b7mjyTmpkmRve3WJ11DwXqaVJ\nidgpOuuW7BU9rMvXHep7mCpi+DJDpL1uabx4RWTbpBRw2eV0/uW0U9I6WR9S\n5D+9eI3cPVlStJsPhhY1oqxbskzOvmCP/6AqCBmao3cIyWaNZPFkhbjsJA3l\nWpjJ\r\n=0WjO\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":"0c4cc140155cb6156bd36a83b620f790395e259c","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-logical"},"_npmVersion":"8.1.2","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical_5.0.4_1644081544859_0.80097481528536","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"postcss-logical","version":"1.1.0","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@1.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical/issues"},"dist":{"shasum":"ea5f99b701ee6c1745c69af02cd6d3ef69afd905","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-1.1.0.tgz","fileCount":6,"integrity":"sha512-H/LEdRUPHZVYYCTs3t5kpA8YNKyNU/qK5vHU8lP/7GjaBE97S+WdIG39lZ0jZE1HzQ4HpgsZsduvnB5eEHcs5w==","signatures":[{"sig":"MEUCIQDfeSSTDaKXCICq0SKyviAwl+snaNwuszU5d0Hr6HHaegIga37zF09Nc6iLInqWaKfDDmAX/Lr/6DAlTrc4H62B0/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49393},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"5b49b7cc618c0b6e0724c626a25125e3c7c39a96","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-logical.git","type":"git"},"_npmVersion":"5.7.1","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"9.8.0","dependencies":{"postcss":"^6.0.20"},"eslintConfig":{"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-logical_1.1.0_1521607961952_0.9165356190783325","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"postcss-logical","version":"1.0.2","keywords":["postcss","css","postcss-plugin","logical","flow","relative","ltr","rtl","properties","values","directions","dirs","inline","block","start","end"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@1.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical-properties#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical-properties/issues"},"dist":{"shasum":"b70199cc55676e48e2eca5421c58250b0c298c4a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-1.0.2.tgz","integrity":"sha512-gpWekRNFdXl8P+Bbv1ofxwwby+7gzn3UAnyDOT+WYC0UfOP+EESoRVrfizuCnrhePnr2FUf4SxqVHoYwWSKVVw==","signatures":[{"sig":"MEYCIQDMw1hFJS89+9lACN1ITxTle3iW5iLzpc6qHLnkjiHWowIhALW0DO+oRaURfFZIAm0J3NL1ZI/hn95KMiykl9MF8qfe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","dependent-js"],"_shasum":"b70199cc55676e48e2eca5421c58250b0c298c4a","engines":{"node":">=4.0.0"},"gitHead":"aac271c3c3ab3409ae743428a10d956444e579ad","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-logical-properties.git","type":"git"},"_npmVersion":"3.10.10","description":"Use logical properties and flow-relative values in CSS","directories":{},"_nodeVersion":"6.11.0","dependencies":{"postcss":"^6.0.9"},"eslintConfig":{"extends":"dev"},"devDependencies":{"eslint":"^4.4.1","pre-commit":"^1.2.2","postcss-tape":"2.0.1","eslint-config-dev":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-logical-1.0.2.tgz_1502827106369_0.45951534481719136","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"postcss-logical","version":"1.1.1","keywords":["postcss","css","postcss-plugin","logical","flow","relative","property","properties","values","ltr","rtl","dir","directions","directional","inline","block","start","end","align","border","clear","float","margin","padding","size","text"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-logical@1.1.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-logical#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-logical/issues"},"dist":{"shasum":"bcabf0638d8aa747743b32bc52f9d90d4a3313d2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-logical/-/postcss-logical-1.1.1.tgz","fileCount":6,"integrity":"sha512-ZJgyLJlp3uPKae9+6sJKFjD06UZzb/m3M1LPeHsaBMvvyatcNWwCfOZVIq00fJdxUqa9QeuQO6RZElKmRdWMEg==","signatures":[{"sig":"MEQCIFPKclNpMaKlRpDaf3hpxdRk85yPx8oQUT+/DUM57NnMAiA96UetNxft60aFiJQptNcIPjcevIujbec+FgZ6ljh6PQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49477},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"ba0dd1ca31d4066265770d0fd279f5e55ec37744","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-logical.git","type":"git"},"_npmVersion":"5.7.1","description":"Use logical properties and values in CSS","directories":{},"_nodeVersion":"9.8.0","dependencies":{"postcss":"^6.0.20"},"eslintConfig":{"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-logical_1.1.1_1521611432076_0.013265724308496152","host":"s3://npm-registry-packages"}}},"name":"postcss-logical","time":{"9.0.0":"2026-01-14T07:23:13.588Z","4.0.2":"2019-06-10T18:40:21.663Z","4.0.0":"2019-06-06T16:20:56.306Z","4.0.1":"2019-06-10T18:24:06.088Z","3.0.0":"2018-09-20T11:17:35.235Z","8.0.0":"2024-08-03T21:37:25.765Z","8.1.0":"2025-02-23T17:05:25.088Z","modified":"2026-02-16T13:29:23.069Z","2.0.0":"2018-09-18T04:20:53.257Z","7.0.1":"2023-12-15T23:19:09.686Z","created":"2017-08-09T17:03:26.036Z","7.0.0":"2023-07-03T08:14:21.004Z","6.2.0":"2023-05-19T15:38:15.601Z","6.0.0":"2023-01-24T09:10:08.811Z","6.0.1":"2023-01-28T07:45:05.417Z","6.1.0":"2023-02-15T08:22:09.463Z","5.0.0":"2021-09-17T13:56:27.569Z","5.0.1":"2021-12-13T09:43:23.468Z","5.0.2":"2022-01-02T15:30:39.724Z","5.0.3":"2022-01-12T09:57:24.993Z","1.0.0":"2017-08-09T17:03:26.036Z","5.0.4":"2022-02-05T17:19:05.006Z","1.1.0":"2018-03-21T04:52:42.028Z","1.0.2":"2017-08-15T19:58:26.513Z","1.1.1":"2018-03-21T05:50:32.128Z"},"contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme"}