{"_id":"postcss-color-functional-notation","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"dist-tags":{"latest":"8.0.3"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use space and slash separated color notation in CSS","readme":"# PostCSS Color Functional Notation [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-color-functional-notation --save-dev`\n\n[PostCSS Color Functional Notation] lets you use space and slash separated\ncolor notation in CSS, following the [CSS Color] specification.\n\n```css\n:root {\n\t--firebrick: rgb(178 34 34);\n\t--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);\n\t--firebrick-hsl: hsla(0 68% 42%);\n\t--firebrick-hsl-a50: hsl(0 68% 42% / 50%);\n}\n\n/* becomes */\n\n:root {\n\t--firebrick: rgb(178, 34, 34);\n\t--firebrick-a50: rgba(179, 34, 34, 0.5);\n\t--firebrick-hsl: hsl(0, 68%, 42%);\n\t--firebrick-hsl-a50: hsla(0, 68%, 42%, 0.5);\n}\n```\n\n## Usage\n\nAdd [PostCSS Color Functional Notation] to your project:\n\n```bash\nnpm install postcss postcss-color-functional-notation --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssColorFunctionalNotation = require('postcss-color-functional-notation');\n\npostcss([\n\tpostcssColorFunctionalNotation(/* 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\npostcssColorFunctionalNotation({ preserve: true })\n```\n\n```css\n:root {\n\t--firebrick: rgb(178 34 34);\n\t--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);\n\t--firebrick-hsl: hsla(0 68% 42%);\n\t--firebrick-hsl-a50: hsl(0 68% 42% / 50%);\n}\n\n/* becomes */\n\n:root {\n\t--firebrick: rgb(178, 34, 34);\n\t--firebrick-a50: rgba(179, 34, 34, 0.5);\n\t--firebrick-hsl: hsl(0, 68%, 42%);\n\t--firebrick-hsl: hsla(0 68% 42%);\n\t--firebrick-hsl-a50: hsla(0, 68%, 42%, 0.5);\n}\n\n@supports (color: rgb(0 0 0 / 0)) {\n:root {\n\t--firebrick: rgb(178 34 34);\n\t--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);\n}\n}\n\n@supports (color: hsl(0 0% 0% / 0)) {\n:root {\n\t--firebrick-hsl-a50: hsl(0 68% 42% / 50%);\n}\n}\n```\n\n### enableProgressiveCustomProperties\n\nThe `enableProgressiveCustomProperties` option determines whether the original notation\nis wrapped with `@supports` when used in Custom Properties. By default, it is enabled.\n\n> [!NOTE]\n> We only recommend disabling this when you set `preserve` to `false` or if you bring your own fix for Custom Properties.  \n> See what the plugin does in its [README](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties#readme).\n\n```js\npostcssColorFunctionalNotation({ enableProgressiveCustomProperties: false })\n```\n\n```css\n:root {\n\t--firebrick: rgb(178 34 34);\n\t--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);\n\t--firebrick-hsl: hsla(0 68% 42%);\n\t--firebrick-hsl-a50: hsl(0 68% 42% / 50%);\n}\n\n/* becomes */\n\n:root {\n\t--firebrick: rgb(178, 34, 34);\n\t--firebrick: rgb(178 34 34);\n\t--firebrick-a50: rgba(179, 34, 34, 0.5);\n\t--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);\n\t--firebrick-hsl: hsl(0, 68%, 42%);\n\t--firebrick-hsl: hsla(0 68% 42%);\n\t--firebrick-hsl-a50: hsla(0, 68%, 42%, 0.5);\n\t--firebrick-hsl-a50: hsl(0 68% 42% / 50%);\n}\n```\n\n_Custom properties do not fallback to the previous declaration_\n\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#color-functional-notation\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-color-functional-notation\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Color Functional Notation]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation\n[CSS Color]: https://www.w3.org/TR/css-color-4/#funcdef-rgb\n","repository":{"type":"git","directory":"plugins/postcss-color-functional-notation","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"4.1.0":{"name":"postcss-color-functional-notation","version":"4.1.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-color-functional-notation":"dist/cli.mjs"},"dist":{"shasum":"4593ea50d61f1a8bd55fa8c165304badd6383433","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.1.0.tgz","fileCount":14,"integrity":"sha512-bBB64p3Fzo0DaxGfVp6ELRjOx+MysN1DlvkWtXwZr25i8SZLAEL+QAV6ttX5iraN+e3fdCxaVm7sHobNyy6qug==","signatures":[{"sig":"MEUCIQCRl//QoS3fNdSGouIKeyDyahEbtYof8hSMh4diKj3SIwIgG6r7ECHFAa8U8ii6Ja5pG5Hqpk671hN9SWNnowRTNl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhugWFCRA9TVsSAnZWagAAlWsP/1Zs145zHYyORGiL8jjW\nB6+yMoygqSueMwSNSNUtczmoz3v9jCvGw+c2MAfOjF1A28E7TsnTI670CbY4\n0/heOc1Uw60hSgPXhhH95dFnI3IYnNzgMsdPzTDAQ+AANprRShfQF92NfUXy\nwlCC7whAwP+KE49fVfguWUidk2yCgn0Ggj+ILFmKOoFAY49p4kIxnF+rvnSr\ntUicL0jv11ijsW5JUjIUHzwXK4qDH5DnAgRzoOCirfSpcIjdYPxOFeVwju2B\n5C+Evwo1cOR7UN4Tclt+zDZoD1tTEXVwIwfAcz+digVgqpB+oaaDInYEtH0U\nTu6uA9N2UPZvqOhYZp3Halxq3DOiIcbykRAkvJYwb4OFX++2mdstI/gywKlL\nOwdzjc8kHQkwNIvd7lKwrOGCrP6TwCbu1bM4kcKhhz/vNNCdalHDWWBCS/Xr\nTJtRFOF/GImU+Jm+W2WPSoY1uJkfguH9p31062QJkPYESFv7nT+Sy3pxPZT5\nwxtaK+/ZUD7Xfhfl//QZIVoKDZRTuIBt5NgH2xQDreell9E4OWXn7AK1ttBx\nH6fVOCVXi7M7rx+SqmTRFrZP1JFHDpRPyYALYx91H1/qE0BTWCXrymQV6fZd\nyYbVyXhRNW5yZuaBpTlK4HxFWIo5Ep8JwYwmeT8/11NmZUCe50dlzzKA0Nja\nSo1L\r\n=8iEr\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":"^12 || ^14 || >=16"},"gitHead":"2f2bd7bb2f67b26e071f2fd3b719e64c5ae6e376","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-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.1.0_1639581061169_0.15902498430184986","host":"s3://npm-registry-packages"}},"7.0.11":{"name":"postcss-color-functional-notation","version":"7.0.11","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.11","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ad6b3d2e71fedd94a932f96260b596c33c53c6a5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.11.tgz","fileCount":7,"integrity":"sha512-zfqoUSaHMko/k2PA9xnaydVTHqYv5vphq5Q2AHcG/dCdv/OkHYWcVWfVTBKZ526uzT8L7NghuvSw3C9PxlKnLg==","signatures":[{"sig":"MEYCIQD4XWQlFriWfTMW6rJaeZrZ7//9tWoKoMobrfRzcJ3nyAIhAPSGOQr3PR/aDQ4MX/MIEi2gY2/vLqAbUQB61aVLQxHX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":10290},"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":"f0e16fc79ad340c028731190adc5e7d55d8138e2","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"11.4.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"24.4.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.4","@csstools/css-color-parser":"^3.1.0","@csstools/css-parser-algorithms":"^3.0.5","@csstools/postcss-progressive-custom-properties":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.11_1755892380230_0.2997210875171168","host":"s3://npm-registry-packages-npm-production"}},"7.0.10":{"name":"postcss-color-functional-notation","version":"7.0.10","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.10","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f1e9c3e4371889dcdfeabfa8515464fd8338cedc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.10.tgz","fileCount":7,"integrity":"sha512-k9qX+aXHBiLTRrWoCJuUFI6F1iF6QJQUXNVWJVSbqZgj57jDhBlOvD8gNUGl35tgqDivbGLhZeW3Ongz4feuKA==","signatures":[{"sig":"MEUCIFSCGC0IWjDLJ0ks8sm/PGNjpfSH+O1fsaFhFrOwGkMaAiEA/oyGj92YvKK94u5hjhg2QYoZGhKW76uRI//GU3E/Ay0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":10727},"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":"c4808d3c3b457cb612771943b27fe5c3ba78d2ae","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.9.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.4","@csstools/css-color-parser":"^3.0.10","@csstools/css-parser-algorithms":"^3.0.5","@csstools/postcss-progressive-custom-properties":"^4.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.10_1748343233660_0.7730079810595731","host":"s3://npm-registry-packages-npm-production"}},"7.0.12":{"name":"postcss-color-functional-notation","version":"7.0.12","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.12","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9a3df2296889e629fde18b873bb1f50a4ecf4b83","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz","fileCount":7,"integrity":"sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==","signatures":[{"sig":"MEUCIBO186e0X70IrFWlxEWrzSiJo8ijo3yX3NhMrBgceQjoAiEAqILL10TFUcjsGBMR/YC82fSbwA+sq5N8v+bNBruRzSQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":10052},"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":"cb55f4f5b59f66b5b58f61cc0b5c4641ea4b9739","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"11.4.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"24.4.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.4","@csstools/css-color-parser":"^3.1.0","@csstools/css-parser-algorithms":"^3.0.5","@csstools/postcss-progressive-custom-properties":"^4.2.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.12_1758465408663_0.9654166264374493","host":"s3://npm-registry-packages-npm-production"}},"6.0.10":{"name":"postcss-color-functional-notation","version":"6.0.10","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.10","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"922a4bf6d21c36aa127689058aae938a3b87c01d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.10.tgz","fileCount":7,"integrity":"sha512-wm8TxiKFJp0uuHUkuDfkSjaELAiKZQ9+ogJ+201+gUzR06U3UCijPgEoHO4gCZaLwLwNG64/JasmL8BHEeXIBQ==","signatures":[{"sig":"MEUCIA7t2iF+IdSlhJHuWt7KWt0Ig/bCSI6rUONA9BzMuGa6AiEA+kV388FYxHktVnBhLGGLU0ya1xI4lt8teNeAgW+FaWY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12189},"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":"cf143b0d183cb40d9cd07db6015917ce9f388192","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.5.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.3.0","@csstools/css-color-parser":"^2.0.1","@csstools/css-parser-algorithms":"^2.6.2","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.10_1714838967159_0.7052406503972077","host":"s3://npm-registry-packages"}},"6.0.11":{"name":"postcss-color-functional-notation","version":"6.0.11","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.11","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6219b4762519115a397b870707c1a9926ecb52f6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.11.tgz","fileCount":7,"integrity":"sha512-gJ+hAtAsgBF4w7eh28Pg7EA60lx7vE5xO/B/yZawaI6FYHky+5avA9YSe73nJHnAMEVFpCMeJc6Wts5g+niksg==","signatures":[{"sig":"MEUCIQCcmUebtt8M5Av58i8i2azjHe3e3eCSZjxNdCH5lIMpWAIgf0jvmUIj7VZjIZ2hjTAYKNyjgu0i5dANZxS5rc+v+Mw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12373},"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":"d5d727f73632a3dbc37e341e27ea92c4f4d7fa42","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.5.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.3.1","@csstools/css-color-parser":"^2.0.2","@csstools/css-parser-algorithms":"^2.6.3","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.11_1714857451383_0.5686712271734555","host":"s3://npm-registry-packages"}},"6.0.12":{"name":"postcss-color-functional-notation","version":"6.0.12","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.12","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0f2760282a33a668a0f097150296efc91fcc295b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.12.tgz","fileCount":7,"integrity":"sha512-LGLWl6EDofJwDHMElYvt4YU9AeH+oijzOfeKhE0ebuu0aBSDeEg7CfFXMi0iiXWV1VKxn3MLGOtcBNnOiQS9Yg==","signatures":[{"sig":"MEQCIA1BfBJs0K9rt5UpWp5b9DEWVX8p76ISTFPieMoV+hGRAiAVFp5oz48xhpbfFPiPtmYuqqlXLW7j/gg+J7PUC9+uuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12910},"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":"c70a327481ce9e0aef55439e1547ff462cdb1940","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.3.2","@csstools/css-color-parser":"^2.0.3","@csstools/css-parser-algorithms":"^2.7.0","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.12_1719698442297_0.2749324988629551","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"postcss-color-functional-notation","version":"8.0.2","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@8.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"53d4c27b6f49ecf4777e1497252825d507bf78eb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.2.tgz","fileCount":6,"integrity":"sha512-tbmkk6teYpJzFcGwPIhN1gkvxqGHvNx2PMb8Y3S5Ktyn7xOlvD98XzQ99MFY5mAyvXWclDG+BgoJKYJXFJOp5Q==","signatures":[{"sig":"MEUCICaja4EasWw0nIZrvC/HA2EWi4TSAfCBVTVP9ILbNUnuAiEArEC8TvonFKqwTd559MRo756V7WqkTvGpF2vD0rAV/6s=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":8507},"type":"module","engines":{"node":">=20.19.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"baaef4e0356091eb97dbc64f0767c87fb48bf1fc","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"11.6.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"25.1.0","dependencies":{"@csstools/utilities":"^3.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/css-color-parser":"^4.0.2","@csstools/css-parser-algorithms":"^4.0.0","@csstools/postcss-progressive-custom-properties":"^5.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_8.0.2_1771686481149_0.7040612703034554","host":"s3://npm-registry-packages-npm-production"}},"8.0.3":{"name":"postcss-color-functional-notation","description":"Use space and slash separated color notation in CSS","version":"8.0.3","author":{"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":{"@csstools/css-color-parser":"^4.1.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/postcss-progressive-custom-properties":"^5.0.0","@csstools/utilities":"^3.0.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-color-functional-notation"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"gitHead":"72c6ce07a4e30ef7d8320bf8a32cf9be836a5950","_id":"postcss-color-functional-notation@8.0.3","_nodeVersion":"25.9.0","_npmVersion":"11.12.1","dist":{"integrity":"sha512-MyaFK+3PusD7F2+qlMDP6+zfSgHWP17AtmvHQs44W3+Qbb39VptVDVRJ4Lf7gHSVffW5ekEy/XrsZ0S0t34hrA==","shasum":"1ac5dc14ca849ecfe04ef36f747f0183f212194e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.3.tgz","fileCount":6,"unpackedSize":8504,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCICi4F0nijN4zUvHb5xk4J9hcpXQ8PuOfeTL3e+Fkzb1nAiEAgsxE1jxavdOs5nI/BeIyZJbfeTi+Pr+AcSV3/gS9I3Y="}]},"_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-color-functional-notation_8.0.3_1776014877512_0.8986496914127358"},"_hasShrinkwrap":false},"8.0.0":{"name":"postcss-color-functional-notation","version":"8.0.0","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@8.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"379c9cf57bf206689173f3bae9afc3d9c934e7ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.0.tgz","fileCount":6,"integrity":"sha512-D3Z9ns0lHZbJVd+Fevtt3PkCaxe+V1Ig7UPsztzh9uul24kRzhWEZaY48NL8dg3Xyx45jhmSevOACBC8qfg1qw==","signatures":[{"sig":"MEQCIBQqoysg7TMVfzX9EmAawFI+S9PdkKF5K3XZPbl37Yl1AiBxcxRXRqqV6/7HBCOHLn5/fct8K7SdGbnIP+xzlHvLQg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":9689},"type":"module","engines":{"node":">=20.19.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"301ef8087163bf1fb81d5d667a8cf0f1a0c87252","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"11.6.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"25.1.0","dependencies":{"@csstools/utilities":"^3.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/css-color-parser":"^4.0.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/postcss-progressive-custom-properties":"^5.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_8.0.0_1768376170473_0.4837151540254925","host":"s3://npm-registry-packages-npm-production"}},"8.0.1":{"name":"postcss-color-functional-notation","version":"8.0.1","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@8.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"22ba5620711cdde4c2a8959ccc4d8affda87a6f0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.1.tgz","fileCount":6,"integrity":"sha512-f1itLOG10iAa9mBAAtIHj/wfDs3srsNv/vrAsiRrIOfTCjhjxHxL1g06vvpQ86he2BP5HwB4cN72EZQ8rkegpA==","signatures":[{"sig":"MEYCIQDf/tDKugYjgWPlUULEY+PFG0E32FPFbvqug35Z59zBzAIhALPfxy7KKeM1x9QtQ89e0p/5NjvAEWTky2+ga/kfa3Ru","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":8506},"type":"module","engines":{"node":">=20.19.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"a7624c79731b2f7cc30bca2835c71e61cc6c1b75","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"11.6.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"25.1.0","dependencies":{"@csstools/utilities":"^3.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/css-color-parser":"^4.0.1","@csstools/css-parser-algorithms":"^4.0.0","@csstools/postcss-progressive-custom-properties":"^5.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_8.0.1_1769346290509_0.051441288202036084","host":"s3://npm-registry-packages-npm-production"}},"6.0.13":{"name":"postcss-color-functional-notation","version":"6.0.13","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.13","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d719c844dedc13f648045a44fbb9702148178de9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.13.tgz","fileCount":7,"integrity":"sha512-c2zzoZPJG1/tH1wrFOstQ2q/bvzFXNIDPFJu+l9idwwpVXbgrD4ThiuIcQxCBhOVY+CJ/Kb7DKiRLNsjTjj/+A==","signatures":[{"sig":"MEUCIBmvij8tQI3/Q+uZchAay2IQQ7k3b7iKHUs5K1lpD3tIAiEAuQYigirasftgOhL9nL3yrJX2QIwMVsFHxAHuJG1D94s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12911},"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":"aafdaa53c7c3fb7bbf1a59b03a3c77347120099f","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.4.1","@csstools/css-color-parser":"^2.0.4","@csstools/css-parser-algorithms":"^2.7.1","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.13_1720258789338_0.6590585255594512","host":"s3://npm-registry-packages"}},"6.0.14":{"name":"postcss-color-functional-notation","version":"6.0.14","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.14","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"958d8fc434fafbb15ebc7964053f19d366773078","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.14.tgz","fileCount":7,"integrity":"sha512-dNUX+UH4dAozZ8uMHZ3CtCNYw8fyFAmqqdcyxMr7PEdM9jLXV19YscoYO0F25KqZYhmtWKQ+4tKrIZQrwzwg7A==","signatures":[{"sig":"MEQCIDlSgTJQvYw0KWYFtgSiGNTSpf2cL0VgyNdS0EAfW9WlAiAlfs/7dXP+HKvJAOBaB9CjOvvcaf3m7lDc7gzHpowWQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12485},"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":"2c1fd437296c4654b63aa1798bd1b38055576433","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.4.1","@csstools/css-color-parser":"^2.0.4","@csstools/css-parser-algorithms":"^2.7.1","@csstools/postcss-progressive-custom-properties":"^3.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.14_1720359750921_0.21787207684317633","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-color-functional-notation","version":"7.0.1","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"204404b4655fc246e888cb2b772fdeff6552c1e4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.1.tgz","fileCount":7,"integrity":"sha512-8/wf01pTH3XHT37wre+E2GNcsttZ62PWSJ0DE66GO+Uzk+uyr9DH+V3cdJG+BqezCD/T5lBC1s5/t7Y12ps8QQ==","signatures":[{"sig":"MEQCIHtqLAwidzxCF4NOyeifj8yeALf7/pk/3oTeWm4vxo7CAiBHuyLDP4/6hzhn/NnclHOVWoBqghKUu/B2Y4WPTMoNCA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9938},"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":"ceb90142ed04b0cb810d5a4dd1b8d89a9b4bdd00","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.0","@csstools/css-color-parser":"^3.0.1","@csstools/css-parser-algorithms":"^3.0.0","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.1_1723638373107_0.6593919485732234","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"postcss-color-functional-notation","version":"7.0.2","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c9f025dc99de7235ca728e39eb69544948878a15","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.2.tgz","fileCount":7,"integrity":"sha512-c2WkR0MS73s+P5SgY1KBaSEE61Rj+miW095rkWDnMQxbTCQkp6y/jft8U0QMxEsI4k1Pd4PdV+TP9/1zIDR6XQ==","signatures":[{"sig":"MEUCID1aPo/37HCYvr8itPpkfRCLFtLItdp0BAi2YlSUWTehAiEApNlfh+9KCmyNiUlTQqn/WZdBiHRWEFXH+XtcRmf8rD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10426},"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":"2d25d7f298086127874eac20fdc28dee898d9a1e","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.1","@csstools/css-color-parser":"^3.0.2","@csstools/css-parser-algorithms":"^3.0.1","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.2_1723996358112_0.8712153299561265","host":"s3://npm-registry-packages"}},"7.0.3":{"name":"postcss-color-functional-notation","version":"7.0.3","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"34ce769426dcc3fb06a0160ff7173ed3acf9b41d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.3.tgz","fileCount":7,"integrity":"sha512-mL3LVOwXr5sRX1N5so7AFCNciaYTNTxzXuv5bDoZ/JunV2NCAzGOuVfyICRKczDPFImoIuL4e0O33/zYap9D0w==","signatures":[{"sig":"MEYCIQCCwavHTFpSeneVlw7FVeuyO+BnRwj4X6y4u+EjkgziLwIhAJRJCO7yFs0f7aqYqGW6RCUUEj6bKQEMNQLIyoDUYcIr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10427},"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":"840696ca12525be8817c343bbca4a82a74c16d67","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.2","@csstools/css-color-parser":"^3.0.3","@csstools/css-parser-algorithms":"^3.0.2","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.3_1728563596869_0.5601903374739303","host":"s3://npm-registry-packages"}},"7.0.4":{"name":"postcss-color-functional-notation","version":"7.0.4","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0d06e3642917ee36f98e89e749fa566ec36b6d0d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.4.tgz","fileCount":7,"integrity":"sha512-bK5EYM9f/F8zqbVT+Etky6sZBR3XedXRasF0cFxi2uX3JOKrkEw+YfRFaVLAYA934RuypGZiqTgDXVpVPnaoDQ==","signatures":[{"sig":"MEUCIFLumI8jkpS3qBd24SQv/6yxNet5ylT9Oe/Z+iEqGZvmAiEApdwhK8B2XNumckwYSmDV5vxFhsgdYP4TksciUarWmaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10195},"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":"4db319c0b2ff537c5bcbbd79044c41d3a1b8b077","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.2","@csstools/css-color-parser":"^3.0.4","@csstools/css-parser-algorithms":"^3.0.3","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.4_1729720327229_0.648512752698519","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-color-functional-notation","version":"7.0.0","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"087bb080a409c7b79565d57708a163f05e1d1882","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.0.tgz","fileCount":7,"integrity":"sha512-WjOCE1FJb2xIeFvF40CISn9yUMtzwkgjdbjXmWjbrC1wAgQiB763h7bsip9piGtAkbeM5Pi9hVIDSmtbWrlqLw==","signatures":[{"sig":"MEQCIQC27OHLMQji3+FiIiIWqfsQnTC9AIwBjj1hHkTJKuZwtQIfD6cwEIoNatU5DBHZhqNWOfC8h4L6nCW3S2v+DPa37A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12186},"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":"f906af68607e5691a8fd16d6d3d438b8c58425c0","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.0","@csstools/css-color-parser":"^3.0.0","@csstools/css-parser-algorithms":"^3.0.0","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.0_1722721495779_0.207288426993675","host":"s3://npm-registry-packages"}},"6.0.4":{"name":"postcss-color-functional-notation","version":"6.0.4","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2f1f8390d8d508713e43802230bf3ae0173622a7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.4.tgz","fileCount":7,"integrity":"sha512-YBzfVvVUNR4U3N0imzU1NPKCuwxzfHJkEP6imJxzsJ8LozRKeej9mWmg9Ef1ovJdb0xrGTRVzUxgTrMun5iw/Q==","signatures":[{"sig":"MEUCIACgS+WjgHeQzo8WloFsDeEhuR0sM3/MWBedkRbpU8jWAiEAoIFTrpCq8hJtSK8nCLCkTQRbY4pBe6CAeVxQBY+/ahw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13459},"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":"7664edd6abd7b4297b391d271ab0d6921aa1233a","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.3","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/css-tokenizer":"^2.2.3","@csstools/css-color-parser":"^1.5.1","@csstools/css-parser-algorithms":"^2.5.0","@csstools/postcss-progressive-custom-properties":"^3.0.3"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.4_1704040636935_0.54278837586371","host":"s3://npm-registry-packages"}},"6.0.5":{"name":"postcss-color-functional-notation","version":"6.0.5","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"eca158e833b5655c5715c998e92aab9481124c18","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.5.tgz","fileCount":7,"integrity":"sha512-aTFsIy89ftjyclwUHRwvz1IxucLzVrzmmcXmtbPWT9GdyYeaJEKeAwbaZzOZn7AQlXg4xfwgkYhKsofC4aLIwg==","signatures":[{"sig":"MEYCIQDMZihnE6YMSoyBHdrf8zxuO4NW4bwTbMpdoZRwks9t2QIhAP2M4+pwMazy+kc4ww+7+DXKTy9FKH5rjNa5Z2SbBHhp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13345},"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":"372747f236cf823a64daa26c227aeb8b357cc0f1","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.3","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.2.3","@csstools/css-color-parser":"^1.5.2","@csstools/css-parser-algorithms":"^2.6.0","@csstools/postcss-progressive-custom-properties":"^3.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.5_1708330285121_0.9917060610366517","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"postcss-color-functional-notation","version":"6.0.2","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5fa38d36cd0e2ea9db7fd6f2f2a1ffb2c0796a8d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.2.tgz","fileCount":10,"integrity":"sha512-FsjSmlSufuiFBsIqQ++VxFmvX7zKndZpBkHmfXr4wqhvzM92FTEkAh703iqWTl1U3faTgqioIqCbfqdWiFVwtw==","signatures":[{"sig":"MEUCIQDOoYqKmi/SVaHXbL6y7ML4WjmbGTQM3GCfMOVsQBBXwQIgbud68t159V5gTbTNvcP98puZoCIKoNm9ULEe1Tovc9A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22894},"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":"a89a523982916310352a46f42895701c4fd7d941","scripts":{"docs":"node ../../.github/bin/generate-docs/install.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":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"9.8.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.2_1696872813722_0.03792763251712694","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"postcss-color-functional-notation","version":"6.0.3","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"02869e61f04705cb9eb5d245136dd59f8f7c4dee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.3.tgz","fileCount":7,"integrity":"sha512-2jBr3H0sk3qGh/3BkmLsOKcYyVfSlM1K2QQYVU7eW5mkg7ZOQ4aU/Rtbh7vJ9FxAfgf8iHRwXBsQkHqUxzTkXw==","signatures":[{"sig":"MEUCIQDx7GGA9EzdZf4GDz04DzTVGyzgGiBbQpnqShfeTG/XSwIgeFkwC6Y5KqHg4b5ZHxU7Irbjm8t8AEZX3ekzjO7rZDI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12421},"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":"b39fbc0ca35b2c3589dbbbacf51fecb16209c50d","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.3","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/css-tokenizer":"^2.2.2","@csstools/css-color-parser":"^1.5.0","@csstools/css-parser-algorithms":"^2.4.0","@csstools/postcss-progressive-custom-properties":"^3.0.3"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.3_1702682766087_0.9164525234660419","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-color-functional-notation","version":"6.0.0","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"dcc1b8b6273099c597a790dc484d89e2573f5f17","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.0.tgz","fileCount":10,"integrity":"sha512-kaWTgnhRKFtfMF8H0+NQBFxgr5CGg05WGe07Mc1ld6XHwwRWlqSbHOW0zwf+BtkBQpsdVUu7+gl9dtdvhWMedw==","signatures":[{"sig":"MEYCIQCfY9BoSUtgICj1xC+sVP7INQUFzfFx+aBge+Pib4JxWwIhAIOm+xE2tEWIkoHV98Vt4212piyng3j07lDt6jJb+yxd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22229},"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":"4118944a7422199cdcbcf9ac0474135b5875805f","scripts":{"docs":"node ../../.github/bin/generate-docs/install.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":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"9.5.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.0_1688373066973_0.9486615349842646","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-color-functional-notation","version":"6.0.1","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b67d7c71fa1c82b09c130e02a37f0b6ceacbef63","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.1.tgz","fileCount":10,"integrity":"sha512-IouVx77fASIjOChWxkvOjYGnYNKq286cSiKFJwWNICV9NP2xZWVOS9WOriR/8uIB2zt/44bzQyw4GteCLpP2SA==","signatures":[{"sig":"MEQCIFIgw8aYmwui5A/dVxvtV7fWbWv4tLIm1aDMXGwr10iaAiAsWTorWHdppHrcDAAsozlDFPCqPLE72EbBgFhuR4oIHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22561},"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":"317de9ccd22344d277e20d9fd0e099b089c3d6ab","scripts":{"docs":"node ../../.github/bin/generate-docs/install.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":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"9.8.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.1_1695053647514_0.7647043224311552","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-color-functional-notation","version":"5.0.0","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@5.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7f652ceb84a69ec98deb02e0ffe2757b75e821d9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-5.0.0.tgz","fileCount":9,"integrity":"sha512-oxsPSdf6i2DJyNj24/hvQDaTyoztDwG0TMannHGUnFAdA6xSwB8Io5iDDqZcDrXTJTy32erpG9ETmwhMPPuCNg==","signatures":[{"sig":"MEYCIQDZKiuF+7qhB+2hlJckvIy5R/6FjAtO+29neVhY9iQF9AIhAOC6AhxYLNjsBXPH1sbIpqA4Ib3WK2WpmdmLIxPwbTpX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz5stACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNTA//euPIRpBpbsHTD7pdyOX0dRHrVWRlHtYCxH4UwRU6QonvBXcr\r\nbjYts6EC9TUKpYwtymMye/Tl7U99BQ1Dw6DeFsHPlHXCI5rAmBCGfwKBoYyS\r\nVpNkngEovRkwHppfw5YVRMCmOMvj9fAi+RTN2OAQVQaax79ZugDxudF/KysM\r\nE9nwnXgc2x6XrM7WZ09ADlCRhdSov8iA+BpZbS7xO6ad92td8rz5MlNHvHaK\r\nSq6K5Fn011JJtQ3gvVL/N3lmTUK8xOvrWW6rnNsPCGf3XOdxCzRyIAF/+Tgi\r\njg+D0RLrCJXFDFk1U1wlquX6zSlfXfM00nH8rKqB2jHMbbxE+o3ERJE1POcY\r\nKXpNrVmwgVuexZQGTwseux4a5SWoFgZ1TogAEmthJTGxH3R5jUn/sw+JLUba\r\nVmYZVp8lkMXo7mmbGrNpZNuJeJAgF8zUcq73uI7JybjQx6ZBOEnJ6aq8y4h2\r\nBdgLSfNVivXsyfpEOCRc2myh+bbkiznnBJq+NEfhm5UW0JAU/QjMIEDsH5k1\r\n9Ckow3R7kwGLOeZB9timhUs7aNGh4jbTGmtNnzlgueC3F0q21oaze7C4kVnD\r\njNrNg+pETzw8fRmepCxCOdF5Xh1BuIa+HU9AqQIyswvUUNRTe5zdlEdVWlY9\r\n9+RMs7Vq+fv/bgdH5KG7AmdcrosDJI8lMdk=\r\n=QkCm\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":"fd30eb6025f99578ef397593f5391250a5834fe3","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.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":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_5.0.0_1674550061235_0.008499502403695569","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-color-functional-notation","version":"5.0.1","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"996eaac092c07bc0748b9086cf4a4a6280a86f35","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-5.0.1.tgz","fileCount":9,"integrity":"sha512-Q9YDNQddKrl6YBs3229v+ckQINLyAaPfjJqG3jp5NUlP0UMm9+JeuLO1IMpeZy0l+rIE64y4OjUq0o+xhrnnrA==","signatures":[{"sig":"MEYCIQCx+lzYyzLCpVBb1rkfFfyFXyghTSZOqQlHDmczN7AQ6AIhAPVxQBX8LmhhQCWOYJs9Pfg3OSeQRSxJrbLBFWK4N81o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1M90ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8tw/+P2ixyyhtaFaJECbeK0UEDXH4EDrISSn9jhh9XEEIiRrnRPZd\r\nq9cQino7rkC5niivkB0m5rK3//5ergffJOCjf47oZISq6vE/YJ4cjGCOPmhq\r\no18vY6QOSQUUb1yNEYioPFmjE+g4zK53/uRV8sjalsiK4Mq25xeCWX2DvO9M\r\nPrdcoH/+/c9fXbuIs94szJRWYleWGp8KJm/nwiMow0zIcRqerrWRaTeHh3qW\r\nJK/GvtCGaC20o2k6fhNmknQYX+9eycxh6JolcD3/XeATmhHK7Cj8UGFnY33W\r\nUNJSphpatyrpW/nc1ZUCNRoK3NKW81fsXjwYACSswAwBaBQr4uBSz61ffJ/S\r\nNCMxkxYI0xifKz2tjyEq6Rq4NgQo2I6q5Q7jyZU94DjBDnFU6cr34qTulz4+\r\nSKOxl7LOlwRXCEDJvOepxaHrg4oo2G4RwjbWSsDK3860udfzCSli1y7u7tIo\r\nIpMvqDLDvN3gL7ss4UfnoaGOtdVe5VHH1qeNu2W7gZRSNsjHUDAQCbd7lptT\r\noU3MJrjQ/RY3mz7lsCSoObExlXNZ5G6d1LJsdiO5B0USN/vkBAgQcj3VgbsC\r\nyW3l8ntzsZofgOFCPDTDlWV/kqAzhosI6O5wKRFIUgaFZzbeK4VotwsvtjmV\r\nHu1G3K+vje90qQKLBttmUAaQfHT96oB6+7I=\r\n=1fqp\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":"9f7d908a9f65cc7b253a6b9e5a9d781cbb8b5adf","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.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":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"8.18.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_5.0.1_1674891123980_0.956759988996714","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-color-functional-notation","version":"5.0.2","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6d03c928aa3a13487703af86c301bdcd501e7430","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-5.0.2.tgz","fileCount":10,"integrity":"sha512-M6ygxWOyd6eWf3sd1Lv8xi4SeF4iBPfJvkfMU4ITh8ExJc1qhbvh/U8Cv/uOvBgUVOMDdScvCdlg8+hREQzs7w==","signatures":[{"sig":"MEQCIBb2juDWgP61E8PINkVWRMTZAcDpqmvTR2X/uuexQbSvAiBY9tCiAGFd2FBdmLe7ZTNU+fRoQMFXIPF+fa7HI7tiPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27257,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4TZXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqicxAAhTAz4R4hJkRfycxtm9u/qMxQE0O2fSpkuUR3d4uR0609G/Vo\r\nay91WgvCZXxldEGaJMMp7BqSH5FGSgniCf1vtZhpWA8mmenZCM55MOYQAc4l\r\nQIusuM+Xgsllp5s2Dgs4WNMyhpzYZFBF827cBvxv/GIofzsGngHX9wGp3MBv\r\n63nHDr2K1O4vGfcyAuSBbDqXbGQ3azrW8boh6r98BOJ9i/DIVU8PbUaWgfnm\r\nKUEjqoDvVuJhfenG70sBZBu8DMlEKpTfZMcmwnL7PkOWpdGnY907kpA4TR9G\r\nb0MBVDSlwKc5yIZFsqMkUQ+9LLFnNqJKBAwGZs6r7TNVtOFymA90V2XL2RV1\r\nJvYuVcddj1IqtbO0nTdCVIiReuNdwNFuxknt5Xad6v9PxvO+kfdDGgM+pXGy\r\nPq8gnHmAnxLxC/qmzMDuQ5/5mm85xCL9USGaC0vWA7bCOzzmuuPGTDxpXqq8\r\na1r3P6C0HHiYY1v5nhEWTUYeaYTS6vYn2YnHi4ZIfkOOgTEUUsXSyTKhGee0\r\nsHhUHzKZ8VzPSQp47DF8XuHdsg0gYCUGhsI4g+AUaJ8hxw8X5S1kKvyUA9f+\r\nLSjai3M71rs1WomBAXN/sOUVSRjzoqNg99JUxtJI95knMh24f9W75H1asZe6\r\n4i88qRSM02c7zoHAiFUqW1GC4hpKs54bv3I=\r\n=QWWC\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":"a686713a720052274e3173e97383133429bd25c2","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.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":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"9.4.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_5.0.2_1675703895545_0.8257249358309633","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-color-functional-notation","version":"4.0.2","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-color-functional-notation":"dist/cli.mjs"},"dist":{"shasum":"0e4d0d2d78f1d28d0acbed1a4d40bfcc2df06c32","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.0.2.tgz","fileCount":14,"integrity":"sha512-x/fTBfK7wdJpF7uCI8QQfNVyXW3KBI3/0n8S9N/iZjS8jahnIWFM6fcatLI6GXcQieuAse/1wo2NBVJm5Ud73w==","signatures":[{"sig":"MEYCIQDHf7/nCUjQXCJd5Zs70YGKILCHz99xfZ1BkgyL/QRJNwIhAOOOit4QzGXzvCgNuQC8McgQJ8jZ9S6wjXa9nDmzc4e9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":148896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxGcCRA9TVsSAnZWagAAdL8P/2NUnaR7SPy+fHZCLotV\nidHnOgmEjEJ6CXu6P1/2XtXtQn3oXGhiSRpr5wnj+tYULp47yGGJNejvL+hy\nuoogBjjcZG+4tiaGncVHSLPsNRKmw9VfdyQrrgQ9VwsskluBcJtr+GtuR1mA\nCqgzkhPdijzETYcdRwuL5t38mwULCHH7E/1HzHnXg8VaYdsK06roT1ALWPk4\nPEPTUmkxnF8NkL2i42nvpKmBod0ipJaMse1pC0vsdakTLOAG8crw6RCd3MHt\nig23Zng6JgMhDyfos0Qdn1TPp0GXlrHiTq6u6D5YhAGCX1K/RGimfnJNCWVH\naAu8NNO1qOUsz3pyTmjXazwrFtwThw4EXgDOgFcubrjds4s4RQPK8OT+5IQz\nC5K4LIJvh5hTE834UpEYqGQyC4UzQWoC1bSBjyD3igkFWXhg11bmZRO5Jmdj\nxpE2aSKGT3LLsl4O7tcknwMSYkXliY3hkdmQGBwg4F9KVC25WBe5/PDPo2UT\nd4QUquAgQmeeatei/sUUQEwMpPUM3LAa9LxRJYv6RrenuIINgXC9mSq6UhNp\n4mgAC8WiFN0S6mcyaw/u6uFVxWxWdLXvLKpp5gnbVUf+Sq7f/Gb90XWdfFHo\nd3jX/CgFIsuk6d6P8pMKHqVLLz5fPgPAdjYb1sxseHz5t8hdAsDlT/GBg2gP\nMSEg\r\n=r0OJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"60cbe86a8e30a9c78feec5fcee44a595daf512c1","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-color-functional-notation"},"_npmVersion":"8.1.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.0.2_1639387547733_0.9730845354238367","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"postcss-color-functional-notation","version":"4.2.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.2.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-color-functional-notation":"dist/cli.mjs"},"dist":{"shasum":"e285e90bcef89e82e4ce3f6660dd20b2c4225ead","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.0.tgz","fileCount":14,"integrity":"sha512-ptwZWYEN2w/3z7HeWbWQRr/7MjJDf2zFO/6CdJ5gsQlC5O6kvjU0RAC3UeKCdxRS8+4bs17CMbTH+hlNs93q1Q==","signatures":[{"sig":"MEUCIQDB/C/BxEFFJWmFcXUa6lc7/V++5iCMVJ/KDXuq3rSZlQIgcm7qzVwE7StO7Efcb1/ddoJsBib/KWIo9EB26A6u1Ww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":153222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhygHeCRA9TVsSAnZWagAAJ4IP/3ywMyNggtYYpdoyBbpT\nMsyolYzd991qSGZtOoG5fuDvERkk51DqsDlLPtWTziGP+f9e4fp5gilhzCok\nray+Bx1MRmMtwWzzsgjcwmJFdP6CfMet7XOo0zIBXXBrJywLsxnlH1X2em2e\nlq6i3O7H+5poOE3BlZWOG/SX6gGEmnlT66NeiBbTbv/vkxXDGfNTHimLUCLt\nbv5ZBjyE5/gDFiYkyyhnkNf5L2T3cQpnF+AoGisKNrAAbN3QqyJdAhjwmXye\n/KxHubuYwGABm9FQ6H53LMHYZfqah47y6jMfJVlN8bpLHuuha/skvvl7C/Jq\n1Z3RLX93opFKdPbH+I1vriJcySqbzcMQW4moy7rIFnOtBET12LMoswlGXwR3\nDLxqkkrNnkCQVAcJ4AhQX9V6xQvGtk9b6560TNzN9uXWqnt8pZQ487p7mmBE\nSdQvd7SSDCPD1Fsjn7zIM7prHCEhXC/XexZFx6BKNuidoTZ4PelMkUqAgBH1\n5LyMu6MLJc3vwkeNX5uNwodmPKjWhQyVTBeZfzEMbEZN4vE/pbfWe+q/H0Fu\n3QGrjuQak3zRFYnLjM982S/qC/Ff9H5CXYj44MmVEo+tFxz7OTWBXaN8y9aR\nkPhiJ1vh4T+8lsrvHOLtud49mcFecDMHKx64NfJIm0MehYijqikIqjQ9feUo\nHXtt\r\n=ooU8\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":"^12 || ^14 || >=16"},"gitHead":"673edfe7e6d2d925b4bf16c572df03514bdcbd2e","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-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.2.0_1640628702764_0.3567026766858732","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"postcss-color-functional-notation","version":"4.2.1","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.2.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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a25e9e1855e14d04319222a689f120b3240d39e0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.1.tgz","fileCount":9,"integrity":"sha512-62OBIXCjRXpQZcFOYIXwXBlpAVWrYk8ek1rcjvMING4Q2cf0ipyN9qT+BhHA6HmftGSEnFQu2qgKO3gMscl3Rw==","signatures":[{"sig":"MEUCIQDnw8n1XL6rW0WKqfAkIkMuzSoYsadEHL39q0LSvCHq5wIgcD+4+z/sUpVGThp9aANQMD8LEnhDGQOxWzA7zNq0b4M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22804,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cjuCRA9TVsSAnZWagAAuXwP/2U5GyxOwiZSNBU5I7xt\noCaczYtePMM4XYHcL31s5p9VkQOfDBR6ZSSBIc2e55s88ubXw+9QacXsfApW\n8m73w+U3Cm/3hzeLD30+kkFgsCwSspATOUVR4/8qEzKYnIBVhim7ZrLn8W/f\npJ+mgVSIVctu8S8kXOysvp3Wqp/Zt2Ku5UgHr9zSXYVdTzbjBkk/Ng5ERYnl\nsHMpFYwjUFh7w/hSlJHEblX9mpPk1noHSZAHgmr/raDymDPTRNb7mk619gHP\nxxp2emwVlEamahlM0/QctJUXw2oWkzH1y1Ts84uHCi+eb3D7GUmPWJf1tILd\nEGqU/hcK7SGKLfGopdj7OJEXMwg6l8Yr+dG5Mz6VVcfAOKHv9r7biHjQhN7C\nOaycFJEZEQsp+pQaePm49i6d1BVukuREGH3OwkA8K1qSlgI0DpuOFkEptdE6\nLz6xlKnj3GvtiEqNMRoDv9pjJcqezX3P9ROutr8QUoWolm/2gbpZquhswfnW\nUzB6cl6Z1gLhy3VAy/pPLPL+32EhN9ApkwL3OlpkQ2E2n5WueSyqZrRK/0P1\nKDn0DADs9bocf52wQW7j/igSD7igm2aNucEttb8BNhfX25lxHNKzYW4er4FL\n1s5uDRAK2YkbkpOKwuDWCyuyHbzbOWaDilg1D7HUc2dRsGjbV0DPq/7IYUoo\nX4dc\r\n=7s5Z\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":"^12 || ^14 || >=16"},"gitHead":"97f3b8de91075e5bbc7c036523daf1ff57a84a01","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-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.2.1_1641138413989_0.8954333095754736","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-color-functional-notation","version":"4.0.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-color-functional-notation/issues"},"dist":{"shasum":"1029259f6929a0eb55122f6249799622f6462eae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.0.0.tgz","fileCount":5,"integrity":"sha512-p9BgnbQXPCFOWaEWRZzLXSOOaruYiZyEr1fu7F6xiyNDu5xngHA4NXbGkYx0MtdXg1UvCtFWcabpA2yYSCh5Tw==","signatures":[{"sig":"MEQCIDZzf3gBKHvgVjHPLLmzO4D3hD4HNAnc2KXuBGEwMPtmAiBO3vSWQ4bFOyoMBUNwFwLDs7GpuTtGO1sGjAKkKoNsCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28380},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs","exports":"default"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=12"},"gitHead":"76f9a9b92199d5d2f458c6d2f38f326a55e79813","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-color-functional-notation.git","type":"git"},"_npmVersion":"7.20.3","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-values-parser":"6.0.0"},"eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended","parserOptions":{"sourceType":"module"}},"_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":"4.4.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.0.0_1631885272203_0.5599517951386179","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-color-functional-notation","version":"4.0.1","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-color-functional-notation/issues"},"dist":{"shasum":"2fd769959e7fe658b4c0e7d40b0ab245fc8664f1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.0.1.tgz","fileCount":5,"integrity":"sha512-qxD/7Q2rdmqJLSYxlJFJM9gVdyVLTBVrOUc+B6+KbOe4t2G2KnoI3HdimdK4PerGLqAqKnEVGgal7YKImm0g+w==","signatures":[{"sig":"MEQCIFO+uW9j6uOerCGaidnQjlezCxCeRLJivrKW//c/hXIrAiAfgoJ5LcaD3xudeUE3QglHbG5G4t9T0bVAEeaZZY9k6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlpo8CRA9TVsSAnZWagAATx8P/RJ2CjpZPudjULka7/Im\nVfuETXxR8+wZRoBbvmt8/0ziwQOmsYB6zBHQw8sADK3N0Pjr89+kcqOC+LV6\nzmLtXGB/afk4YXiJ/s39WfAVcnM1Ax2ztnikCalQpCmcmaSfMc36Um2Cio89\nn/yFIVDEujiEK/0B2DjV2NDCeuJHtNwEntozrDkX0tx9/fTh5KOm/iKr3D7R\n4h1j+85nsBruk81qJAmIiEeEDnPvwLwEXdjldqRFUP45E+o2dO81rhsEMuZ5\nEnTkn55wuS+2c65MCEwEaeIvkFNMgbHPC7SJEztYHxstGxwZdT9awJMC8fB6\nf/da7EO9aPvwDR+S1GO7zvhm35ZF3IcIlrrUoGbWjmZ/E3SVg4uNSXTPjmAB\nT8E17kHXNMDsB9h+1DHhVlRg2AW0X3Sa+F3TQ+Y5deM3hyWugznIXbKasYhG\nZA3PoPT5uOS9FynMCcatf/5h7KOO2MQKd0iOYg8R1v8LOICCeChtNAuR8hRn\nLghxVWqUjWmNN2xZDi3yHuEQvjRQ8ybJ71diZGSCABf4+iLRjFJw8JenaJqB\nLUdd2FLIK2QyGsBfx/EHm3bUzLGUNhQ1PGK+GdH/UrH9QrIG0+Ku18SomKrn\nutIOz1baLhYG/290E4bLCamlhxL6gefbetDkduDr1h91ce5kG1OX6biAgEM1\nWv3k\r\n=EKPG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs","exports":"default"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=12"},"gitHead":"81a2fe5f2dbb3203ae539adf1d6851bde79739b9","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-color-functional-notation.git","type":"git"},"_npmVersion":"7.24.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"14.17.6","dependencies":{"postcss-values-parser":"6.0.1"},"eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended","parserOptions":{"sourceType":"module"}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.2.0","rollup":"^2.60.0","postcss":"^8.3.11","pre-commit":"^1.2.2","@babel/core":"^7.16.0","postcss-tape":"^6.0.1","@babel/preset-env":"^7.16.4","rollup-plugin-babel":"^4.4.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.0.1_1637259836413_0.8531947250511756","host":"s3://npm-registry-packages"}},"4.2.4":{"name":"postcss-color-functional-notation","version":"4.2.4","keywords":["color","colors","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.2.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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"21a909e8d7454d3612d1659e471ce4696f28caec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz","fileCount":9,"integrity":"sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==","signatures":[{"sig":"MEUCIQDgL5AFToeeYTpCHQbbTs9064sj6vZALimMk64Qd6iLdgIgctx/WaV8BH492UQH7tx5Q9pGEK2RZ1ydsA7akziyr5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFfiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmperA//TVGR6K+PQwSl7bAwiTl5cpQeteEhjUahVS1ZNIysRXJ6gX6O\r\n9qLTrH++uRW2m/Lsb5ydDRGHoqxa2Wlx91IG7rtbPOc4hFFvPbYtE7tbmkv2\r\nd8gZp3WOTNh0HczNYoGcEgmhS6jVK5WClFjCUecYO0DS4FNPvqaBgVvPCMK2\r\nL7ovOIffn9LiItQ+tZV/RNnPtjz9oDdma46NfyCaEvmML3nu0qgY9KIwKaC4\r\nFxOFEvfcECMvjYitQZ2vsI6qTd7fxMakew/2Zdt8d33ejHw3mm3/1PVs7RAw\r\nG794IJ1Ma0T2paHDo43rtU2nqsvjkzA81FIv5Vt7Nm1y53uX41+fwst1HX9n\r\nLOoQPcwCmTjQ/piTvyjuD8Ry9/WzIrsW/iaKIDFQjqIfpgISVjqa0oS++CxG\r\nZM0HJxfflwLjgN9FNMZ7pypvrMr5eJD+ppH8tAqa2vJxbbSIDyM4ti6BQbeZ\r\naEKBU0UT6qDZzQdYzL54PF8xnEJVzwp/aqnmYSmbYYgNiOU4HFT+hrdRvxxN\r\nlsGH9CRQcNQBovEEr+hua7znlffDL7f37qLPUUAXLSPI1KI0TrcD9l/mZt18\r\nBP8bYYXs8dHm2TPgyX4KwFh8gUSGQu/a2ONk3TSURimLnzI7OTorOGy8eYSe\r\nmB2ujQ1XjLjsqz3bdg0BC9S1EO+3xZJUmBI=\r\n=UVCz\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":"^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":"a79a735c39db00160362dd0613b754a972981084","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":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.2.4_1657296866541_0.9915271975826807","host":"s3://npm-registry-packages"}},"6.0.8":{"name":"postcss-color-functional-notation","version":"6.0.8","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.8","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"944da638391a4943ecb7628bd7db5a95a9d787c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.8.tgz","fileCount":7,"integrity":"sha512-BilFPTHcfWEnuQeqL83nbSPVK3tcU57S60aOrqgditarNDzOojyF0Gdc2Ur5L+zox366QjrCe0rOBLDO2pNvRQ==","signatures":[{"sig":"MEQCIDepXiWAowtk+ulhmEGyq+AVFC5tkb5xl1/utFV6CqK2AiA2C3WqpiXI9n4hbm7M7WzcbP4gx/V8+wFWYxJ7fXt1VA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12492},"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":"55fec968626bd73907021f13968273f37ba152ea","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-color-parser":"^1.6.3","@csstools/css-parser-algorithms":"^2.6.1","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.8_1711891280098_0.8246494574569747","host":"s3://npm-registry-packages"}},"6.0.9":{"name":"postcss-color-functional-notation","version":"6.0.9","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.9","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"30b7a2f4f4fc0f7ccdcb720ea8d311eebb4a260b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.9.tgz","fileCount":7,"integrity":"sha512-8i/ofOArZ4fljp+3g+HI6Pok01Kb8YaSqInrJt2vMimEKrI0ZDNRLpH+wLhXBNu/Bi8zeWDvxhvCqsGSpu8E6Q==","signatures":[{"sig":"MEYCIQDp3mXmxZtXRwVkKY5CnhosYT/AjdQFntFmkDqFWuxAGAIhAJfYj9DBb7ZTJbZ8NgM38gkIkg4G726mOw/gyHLbJY8D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11702},"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":"3805efbb69328a7de43959f5cf1e52636d7988fd","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-color-parser":"^2.0.0","@csstools/css-parser-algorithms":"^2.6.1","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.9_1713709641591_0.5931352152710803","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"postcss-color-functional-notation","version":"4.2.2","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.2.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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f59ccaeb4ee78f1b32987d43df146109cc743073","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.2.tgz","fileCount":9,"integrity":"sha512-DXVtwUhIk4f49KK5EGuEdgx4Gnyj6+t2jBSEmxvpIK9QI40tWrpS2Pua8Q7iIZWBrki2QOaeUdEaLPPa91K0RQ==","signatures":[{"sig":"MEQCIGEplydppEHD1r6MKchofYzyT7RJgVFwSizAn0ukbR3QAiBwAaq58dzKQQFs2vDXHbMrW5BuHm6mUNeYhqzfCklAqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/qxOCRA9TVsSAnZWagAAiYYP/A3fu60s2L0Vc4MdXpw7\nekS+b/3vsYZLjfiOnnDBy8VQsf40Yt0vIZ6l2SPkruxVzBs35sPYMYvQO3W1\nKHjRcfCyX+rDkV8ppYwNvHEmk8qMj9vLK+7gKTRoDL6j9meAtZbx/eCWTIz1\nhE9Qt4asezA8iC3bHBZA/RJGZN40HZUaewXYl7iRDdCD9gWZwtIe8avGT5pa\nlonxzgmL+6N6GVHXt+P0Cf796phnJqe54gpoDTCFnri7lCsKZO4PJOVnrgE5\nG02vZtL0aQAHVSbUT41EKNSuzr0ewJssWf8VsE/bJlm4NQZxZKGiuBqqbriM\nBYEbVi/IdFSWRYnXdHD1T4EG+nxgSznOu3ftyCRewjohI6KVNdWiw1knKKUB\nLjKDk5+JrNJ2aQMNUaCi9qJVVV84QL/BnLQPJS/EVQY28o4dr7DT9U9wNUG/\n4IHL9+FcKfl3SM7Z0yKyC9gCzV2yS7t/U3YDzGPfqgfpihnTX7ZUdj4mHj4B\nubYQ/R6aBssi5Y2UA82e4oTjHlP6ZlNLD8jpOQE2AhFwxFbWUsys8+kFEaxI\nU7kKF4/MU8s1uVfuWM8aiWbfgH5A7PhACfvNkuyFremh/LeWsVGR3UsrSmAQ\nK6aOmLF61vFuxu2CE6LJaQJJBPw43Y9CFSW39BP/g5N/Vh8ycCVNXduGBPqw\nywH+\r\n=L7Ch\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":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"2c33b42b1d0777b6a6f5d6d8d0eaf0df79dfebe9","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-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.2.2_1644080206440_0.9984528405325781","host":"s3://npm-registry-packages"}},"6.0.6":{"name":"postcss-color-functional-notation","version":"6.0.6","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.6","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a0b6154b1524b70f09557f3b2867a6dff4e1cbf8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.6.tgz","fileCount":7,"integrity":"sha512-2GENDVgEk1dt+OdVhPO+zO4Dzj31Xs9EuKgQLbY9RSkKS3jUqnbTAh33bUhKce5JM1ZmsXm0azCb7Bh8j6W6Nw==","signatures":[{"sig":"MEUCIEGSfyae7fTzao4WzKjFvljozU29QPdtdtRuYXii9qR4AiEA65u8mZ9ClEMBI4IJcqoyHvNIypXtBweoByv/4ucn2YQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13282},"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":"4088a40a698d3bd8aadf4ffae09663396a643189","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-color-parser":"^1.6.0","@csstools/css-parser-algorithms":"^2.6.1","@csstools/postcss-progressive-custom-properties":"^3.1.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.6_1710356342543_0.9698066107417851","host":"s3://npm-registry-packages"}},"4.2.3":{"name":"postcss-color-functional-notation","version":"4.2.3","keywords":["color","colors","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@4.2.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-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"23c9d73c76113b75473edcf66f443c6f1872bd0f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.3.tgz","fileCount":9,"integrity":"sha512-5fbr6FzFzjwHXKsVnkmEYrJYG8VNNzvD1tAXaPPWR97S6rhKI5uh2yOfV5TAzhDkZoq4h+chxEplFDc8GeyFtw==","signatures":[{"sig":"MEQCIGQAzHfeN1EIDs2OZE6J7ed4pG2m4cVDXATSBRuS1wvWAiBd5aPagITkq08tBPB+a4oCVECr8guKcy+4lsG2RZXPXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihnggACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmovlQ/9HMBrJXxJ1ApRkCV+9WMObaYYAmvIf2xVvwJZZYqxFDYs1WK3\r\nZdODiRUTCSQU2Z7KgFccOx6DnHZqYc5fDOEKlS63YYO2nbgjV5G/nq37HCbp\r\nP1iTyxyB4katgcHTklDlfJeNPyHXd7i8v0AsprR48Ow0wxXc03nKkoW3zj09\r\nKipHz/ZWttt9p5bfqEKBiOx/LGL3GVV5ejreV9U7zTHiVRvFl1lRh/0f8XXN\r\n/KOWkcBUWN71QUaw/Ja7cddxXj3Uq3cyHGPiu8++UY7N3vxZhz/85mnn+zrn\r\nOo7sDkugEraE610aOApUmpQHER44T9vNgSUbHEhQHw1Od5/Zp7WeyOwJYibh\r\nuFOGoAFckgMGktFAv1rla3ohQwd6U6NrUDI5gKgPa1+X7XVHc6E+aAJk3BLd\r\nkg+q0kBQxGE+j7RhT2IrCzn5QMl/Hql3phvVzu7L2nl470uWwuoHUUE/4TPh\r\nS/iUN+AsCGvunFHWNQKy3SUYqxZ2LL3eaVVmUSeil67PK9NkRlA7qRTs5RZn\r\nm5xA9+Su3w3ZF5GtOegXpjvhmaOIAuLJcJa0oodSrzHSZZTQ+uOkpz+k+D/6\r\nRxB1RoG0Ewwn+YFKlKgTyG/y/ww9TRKeUMEjZ1Cef5L7CDbHo6M+vjPlI7os\r\nxgszBXNM5pP94JRAsPGSvwD9bcRUth7ruIQ=\r\n=+wuL\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":"^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":"2e6d070d2eca342d7fe60135020df029746224cd","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":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"8.1.2","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_4.2.3_1652979744477_0.5999196859827429","host":"s3://npm-registry-packages"}},"6.0.7":{"name":"postcss-color-functional-notation","version":"6.0.7","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@6.0.7","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"195d5f4132f65c1a728591a4f27839306b3c5ebc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.7.tgz","fileCount":7,"integrity":"sha512-VwzaVfu1kEYDK2yM8ixeKA/QbgQ8k0uxpRevLH9Wam+R3C1sg68vnRB7m2AMhYfjqb5khp4p0EQk5aO90ASAkw==","signatures":[{"sig":"MEUCIC6fAz4fJUSJQqD4oEFNaMrhSgstXcqHJedGRf63XFVdAiEA0YpgRAJFKkyYA7vy3Kv++6BboYeoNboZS++defePaWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12791},"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":"fad85e1edd4d6e6ecd0082ab943c67890f376bcf","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.2.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-color-parser":"^1.6.2","@csstools/css-parser-algorithms":"^2.6.1","@csstools/postcss-progressive-custom-properties":"^3.1.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_6.0.7_1710697299955_0.9793067762536372","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-color-functional-notation","version":"3.0.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-color-functional-notation/issues"},"dist":{"shasum":"f0088757cf78c557163d8f57509021f0d9c4ec3b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-3.0.0.tgz","fileCount":6,"integrity":"sha512-sSjpQvu9ydMCfWNl+JKf6gkwoBH+9stthJXy0eesMGSY4BxxYBz/R/bPgNBU+Z6Cn88gibtVxic4v8M5prDpXw==","signatures":[{"sig":"MEQCIEyWIDCJhKczTB1e3zvWjN2LfT0/pxkpCHuWFYBEK5vpAiArFG7ZQE0Liv8kWfT+IjbRf6HxKBBQYORxzwbxgklOGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo8LoCRA9TVsSAnZWagAA938P/2z3QylgwLHPiXdJtKoS\n1hKgumVOT/2S5WnPY8+PJTcHzCABeMoLDy7UTeUrFVZ1hREdIXu78ma8vv9n\nCU0L/2M6ZrxCOBCx7Q6YnlOI1ro0/s4rsa4JSXH+KUCI4oAwFxB+A+x1s2Y2\nqZD+eAVL0u2iTbsfTWBu9XhfVLlNhVEfEllQeLmfr/e3RyZTXU8YUQPEz0FH\n9/f+itTDpweMZL59PxNwhW85V/riZpFvceh4XxbuPMgYtxgSV8nEFh6yOCC/\n77NV4CMf0lM5GwPOm+Qr5jWDll7P0mcWS7/WejgL3MJvt/PIevAlxt2PRZPW\nrTe19r84eD6AgvBf27PRM7kU/mknD0+FTDWWHGsWGtUXgQwXWo2r8mMOz9qS\nhNxA4VCBw+hBrjXGVUyhcW5KN7CCSrpqjjPHuBrelsIWocCM5Qr4hvDBuS4P\nOJGdVu0nTcFJ/ubtnQ/aLqMvRJvdPEMmH1o2vAFpAIVPe1wIW8WqDmlx/Qm6\nOrf6bh0Lg4t3xeXhiRORgnp82URxjNdN/99nCVK+CpMPX+vFt6+rJED2Ll0L\nkkCsMKNI/DmtQchLrl85XfxH3LcXE1oan3RFjvqqq8lJOIMZ+A+MuM7/AH84\nIyiBP2bMOraYfVSCWx7rEME8iLrgdaPy2U6LJW17M2MGbp4/y0zOt+2U36Ql\ntWB8\r\n=3v/T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=10.0.0"},"gitHead":"8b7757f2af78801e981c0340d0b7be3c018b95e2","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-color-functional-notation.git","type":"git"},"_npmVersion":"6.14.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"postcss":"^7.0.27","postcss-values-parser":"^3.2.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.7.2","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_3.0.0_1587790567791_0.11813015505019564","host":"s3://npm-registry-packages"}},"7.0.9":{"name":"postcss-color-functional-notation","version":"7.0.9","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.9","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2be1abbdd68fc7e8906a7a4ae6e6c8484aae8485","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.9.tgz","fileCount":7,"integrity":"sha512-WScwD3pSsIz+QP97sPkGCeJm7xUH0J18k6zV5o8O2a4cQJyv15vLUx/WFQajuJVgZhmJL5awDu8zHnqzAzm4lw==","signatures":[{"sig":"MEUCIQCTlj0WOJ75H4950kO8GrFkb8reYnRUO5InfVC/b6PzVgIgANfY7sHVnL3pGi8/CXsZPCHZWt/NLaLktRzG7HPY7Wg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":10236},"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":"cea10188d80e94099c2f0e276105380d94295c54","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.9.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-color-parser":"^3.0.9","@csstools/css-parser-algorithms":"^3.0.4","@csstools/postcss-progressive-custom-properties":"^4.0.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.9_1745079586145_0.3118545929357208","host":"s3://npm-registry-packages-npm-production"}},"3.0.1":{"name":"postcss-color-functional-notation","version":"3.0.1","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@3.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-color-functional-notation/issues"},"dist":{"shasum":"4c239fd602ca8751570b8ccf66dc2c85df315a6d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-3.0.1.tgz","fileCount":6,"integrity":"sha512-JbdEEKQ0+ecfWpxjlVV0/sN7+k1nP50R5j+BrHb3NfYQCxQ+e64SI232N3CW9J8nCyPrvvIoWL75W9QH1NoI4Q==","signatures":[{"sig":"MEUCIQCVfpzfS+fa/DUrmZG8sttZEOWh2/0wZ1TFZtAIn68CBAIgd0M384aC7YzDVLofIdlH3lfz0e5S4d+uU7TyH2hyA5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29392,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo84fCRA9TVsSAnZWagAAs/4P/iwEqPI++Azx/Z5WFJof\nxXCRcN8up8nv96HdVyMyTRECa63XrkAiy3V2cT/OLgSRKGekS8KV38MB1lsv\nqq99IS6kx7QQHSsb+EQSKjiI5odZCOz+Np3GHBpw8wE7L8dJ1L9BCJiRALL8\nQFJfSvpEhJTe7/vXftV2Rx+cviPHzS5ciZ7yaPK4V3NSW3KSYFHl93ikK3I5\nQNPb8siuMcprXwdAoPUhoxbAu1oFDMFl2lQb1KqLBy2UuXhfxT1Nm0ERKiog\noDT7Ya176MISWvIBopET9LHiWaXqaJw3g7K8/YRYpJR/nueBkXPyh/38o8xL\nlIr/5UySCdc5UcLiyB6b7dQB+wXU9AcIol86+uD+hyM/cD/BK7wYPn5kSFA7\nciUSnaYp/LAmHbi1ktVzCMAMMpYHDmTde27pLg+a2b5n8I98h9s6oCd9NmQb\n+SlXbBbfo6EKK6CzTTxotrSz5eYU1YA19KA6mqU0a0XR73O9SpIK6NYOBLul\n7ghJnC44nPK7o/QiarykUSjjOlWG+kKFyFxU04QPYJ8iWfsa8hlNJVoE39II\noqt4iRUh8kL3iAlXGRQnvnk2eixYb7nsE/QTjt7IHWrHTayGUu+y7axQH6Ar\nfpDFCkf8zimmsCM9/u0L1Dvnou5sRTox8uJavTK7xo9lhsVzhui3nNp11Dlz\nEmYQ\r\n=RbmI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=10.0.0"},"gitHead":"26799e1885746a980529d084c091ecc5f76956a4","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-color-functional-notation.git","type":"git"},"_npmVersion":"6.14.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"postcss":"^7.0.27","postcss-values-parser":"^3.2.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.7.2","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_3.0.1_1587793439344_0.6266231288441471","host":"s3://npm-registry-packages"}},"7.0.5":{"name":"postcss-color-functional-notation","version":"7.0.5","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1e52f8dbcc51a15f2fcea08ff7f8c74182229d95","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.5.tgz","fileCount":7,"integrity":"sha512-zW97tq5t2sSSSZQcIS4y6NDZj79zVv8hrBIJ4PSFZFmMBcjYqCt8sRXFGIYZohCpfFHmimMNqJje2Qd3qqMNdg==","signatures":[{"sig":"MEUCIBpZkJ10UXylJWpZx8UxOjewhd05vQNhcgQI81PVjEhPAiEA3qmVk/ENwNR2M87ukQGByJUCnWgfvPTJyMVrvDHnu60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10427},"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":"a88c2f236fb402e5aac187a06cf9adedc0abb6d5","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.7.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-color-parser":"^3.0.5","@csstools/css-parser-algorithms":"^3.0.4","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.5_1730498357424_0.8590651179787578","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"postcss-color-functional-notation","version":"3.0.2","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@3.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-color-functional-notation/issues"},"dist":{"shasum":"9d0cab32fac638045fccb13aaa7ebd14d7ebec74","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-3.0.2.tgz","fileCount":6,"integrity":"sha512-0iXdSIbaf9qrzh79k4Y7riFe45LCcEWQOosjyhGUuMG2cc0wsP1zmjS+HgL07gH6HIHOLIyMzNTQmH+vli1d9Q==","signatures":[{"sig":"MEQCIE0OTN5opgyyKhD/CB8sUkpnKwohPZ3ajWFYL8N+581QAiAn/6wP+Mlq3S5J+qFryrIpQAyt20wmx6IS82+M+qjI+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo8/6CRA9TVsSAnZWagAAIbYP/jZpYImIwvHIdpM6/y/5\nY4rc7uX+S6UVo3d4i12A3mRDcF7bzaIPt4QgmLwQUav6WHeBMc8JRqFnlQ1I\nMa8Qy6q2SfXcZabiOOggLFKZuoIOvrcJBIucsgfasNoErXPebuzds04L6+u5\nX+sQKwkYVTAFh+tCfm1obZH/WhnEFa+zrB1GHDOfknbzVIJ5WNPj1RTe56jE\nYpjbI2hd0nzOFoD6RRC/SjDNZ0TfrutVaqgM8AdQWDeWMbJXQCuBfrM4o1mr\nrS/hdr6Y8MtOmwsf46tBRQ0EL6/W2gBTFxolDKOZrg7bXwKdcN+2rbKjGXs1\n8wAo/Q8iZjUQV8Uz42v6WLw0/NnsdEEamhCrOlPlBJ8pef4v6mIS0/wCE29s\n0f0Cyh75W8fl+RCinfjpo7xLpS+hreqLvXIO7Cm1/nG0VqGS7HQTqnq/FHvp\nmg3H1vRd1hCEVMzTet4Xq8qudeSdJs5Gy/B/5LgbM95gmO0aAuYIZtVnswkA\nvunyhVDJ6UP8FvabakCOfV1goYWQPQOiJPH7Xfp/Z/8EAKDI3aceBxy63VAr\ntxKyoSszN6OIRfZNoRfEKJlAkXMWegzRYn/M+bZC57ucamf+VbE+4T4V5bAn\npMSVPq0CciOIyoDcccdPGb2oMdL/E/bJruDfALqqmSd80AFs1hDgcqvTTShX\nqRNA\r\n=Jh1M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=10.0.0"},"gitHead":"f2bcd1aa85d93d848105a4f6e42dc3fa8911153d","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-color-functional-notation.git","type":"git"},"_npmVersion":"6.14.4","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"postcss":"^7.0.27","postcss-values-parser":"^3.2.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.7.2","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_3.0.2_1587793913696_0.3740079052788785","host":"s3://npm-registry-packages"}},"7.0.6":{"name":"postcss-color-functional-notation","version":"7.0.6","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.6","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d74c1e2294b72287eb9af079c04b7ddeff7ec5b3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.6.tgz","fileCount":7,"integrity":"sha512-wLXvm8RmLs14Z2nVpB4CWlnvaWPRcOZFltJSlcbYwSJ1EDZKsKDhPKIMecCnuU054KSmlmubkqczmm6qBPCBhA==","signatures":[{"sig":"MEUCICU+a+j6eb+tnGwhDA4avdUr2pzU1mgzBXgdFKNw7YYSAiEAingUXg4ii6XNzIqN7b8Y2h9xsErBIbz/kw1JbQhnDcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9937},"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":"703116e7b3854c1444f22a18664010871120fefd","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.9.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.11.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-color-parser":"^3.0.6","@csstools/css-parser-algorithms":"^3.0.4","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.6_1731322874553_0.34194860703770846","host":"s3://npm-registry-packages"}},"7.0.7":{"name":"postcss-color-functional-notation","version":"7.0.7","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.7","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c5362df010926f902ce4e7fb3da2a46cff175d1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.7.tgz","fileCount":7,"integrity":"sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw==","signatures":[{"sig":"MEUCICxrGqHoQSk1vju2oB4yUCm3uT7bj8hE1OQ25z7pxBtKAiEAyR5QIumoyh/KnIuLMyiJo8moeiKqTirgj4dW5wvU3qg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9937},"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":"6109187a19d761bd156f3757c4a0174158f47401","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.9.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-color-parser":"^3.0.7","@csstools/css-parser-algorithms":"^3.0.4","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.7_1735321542753_0.36719478918321524","host":"s3://npm-registry-packages-npm-production"}},"7.0.8":{"name":"postcss-color-functional-notation","version":"7.0.8","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-color-functional-notation@7.0.8","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b62a253d478f69b41e9343c983876a592578581c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.8.tgz","fileCount":7,"integrity":"sha512-S/TpMKVKofNvsxfau/+bw+IA6cSfB6/kmzFj5szUofHOVnFFMB2WwK+Zu07BeMD8T0n+ZnTO5uXiMvAKe2dPkA==","signatures":[{"sig":"MEYCIQD1kDQZhe0tzInxd8VdnGvc1GaLbodGm+4fyN8rEvHlfAIhAPngp41Nud4OR0Qvg8sddSBA9HcZTUmSsH3GS5AF/sCW","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":9937},"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":"3b0ac20bb4ee7973a8845ddb0b9d83a5b9695674","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"10.9.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-color-parser":"^3.0.8","@csstools/css-parser-algorithms":"^3.0.4","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_7.0.8_1740330628259_0.7322676287107162","host":"s3://npm-registry-packages-npm-production"}},"2.0.0":{"name":"postcss-color-functional-notation","version":"2.0.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-functional-notation/issues"},"dist":{"shasum":"a0908e2b3ebe1a3809c7cd58fc8d8c1a392c0e15","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.0.tgz","fileCount":8,"integrity":"sha512-VvpAxQ+DqB7677kBGcq8dlll09mOTToJrBtWSoAj1TTEB+kHpURQfZEMea2YlHCOd6GWYc5FdlYa15XxZOgn+g==","signatures":[{"sig":"MEUCIQDThr+7fPMNhB4pzs5xPuHng7Ya7A4I+oWPGttjbiB0FwIgJwRUKekn87+XTObBVnIAPcRzg4NGFGK3PeIvKNbld/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboGKZCRA9TVsSAnZWagAA0lsQAKJtyEPpWIURPHIYZlhE\nT0b+U5zWqb607SxWLqheKT/H7gyPtrDt4eD1hUSjE4iujWY0uZLg2V6EDbSe\nzw6VCXM4Iyzpzjfbjv0qN+PS7VxQu1dMo40KilzwPOXd+BGQd5JnWvo2xbo3\nYBKVN4kjPg9D5azV43KLxPsj9HyIPztfOr6oWUuucUEKyP2cowy3u0V0B1BY\n+CNDEebWZUz3+j6riVzh10BZMu+GTkOwxUoD8Trbk9jCkRqPu4X7vWWRyzPY\n7G8YfZeB1scQdRQ/qCaDZOEKNFxT9+kXen7AfeetxaeV2ePkYtegirTMTDga\nrjcmbKvHz2n//5Xzez0fHtCCjClmcT/XmFaI99RvUDVkU9vT28rIneNLvWeg\nfKKyUBOo/y4QX9ttWVXodfFsfaADGz/+dAFrLnoZN2Lc0tmKGqAM84SGZxkA\nbkEGhP79Mv8JtJbzPQ+D0ewaDaQqGXEyxpBL3LJznsObnN6xJB3Ls4fmIGL7\n+IwGjHP+oI+IbNwI952X4BK4VhhnxbifEIDZGVqLnG7zD3rZShaLHFqoVJKv\nD4uJ3hXBs7ANm/gbwOyHWnZPKjJdxFxIPFQijJivwXZTLOloVxZypS6Ixxc1\nr7jPk3BpEzTQWDV3gY70rqiwfG3KyNOpl6RjELnnrag2teqjwgB1gCtPL2NF\nbMAi\r\n=iwWV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"2cedf27323a977176d1e62581fe1df24e1d5270f","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-color-functional-notation.git","type":"git"},"_npmVersion":"6.4.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_2.0.0_1537237656470_0.9755788802127083","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"postcss-color-functional-notation","version":"2.0.1","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@2.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-functional-notation/issues"},"dist":{"shasum":"5efd37a88fbabeb00a2966d1e53d98ced93f74e0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz","fileCount":8,"integrity":"sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==","signatures":[{"sig":"MEYCIQDluP+JksdrBj90R/t1WDdKtajgJSlh0mbHT1jl03CVtgIhAIcFhYJG62DuWLSbKOrgsTFJB0Sng4oJGNGP7Uszerec","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboRWvCRA9TVsSAnZWagAA6SMP/3m/dMEck1S4g24jvvqk\nXLRr8VBSfxW+8amkE+rBXoEPdinH2pbe/IBNmIiCxniyPJu4/EPuaFdlYlul\nPak9hUTaHZr06SmlnXC8wPqzsBnBRpwBx7onjUN5oKTQIdH+u96XoVha2Q6K\nV70wImGx769EhT7Y8OZnQ+KPmqV8/ne4s7PCdr5Y9rw0RbGIG0GQ0JHoA39N\ng6xCCq1STbAkmUQPW8jhU+f2U8uKiRARlYRukDKE7i7OpkTo0JGZOEfO6ubS\nzev8eAJi6vnRisIqPOMNncxn7L4TrU9kNhKZWyRhMlBFV6omn5pnagStEwzc\niSF9e657HDo940EEMRi0JZMbHM17fgkOYNPvRdk6zDNg5jXi9uzJ3/m+Db/J\n3Q6GjL77ALRXPtvCFPYrarIjQ3WABh0S4IAwQj3h2kdC/TXThFnKcvrK/A75\nc/Yy/vlBU5Syv8GM6c40pd/OZGXpeJQ4xPSfV/KYRkMJ9HliVKg3urFVxNWn\nWThOamdjYevTbgbXbqSgR0WHUCnz3oyhRpBGIFnKlJMw20xBrC+Gz97xW5gr\nngoDUhNScMTtD9JVtEJwwLZEpePqGzfOMDR/ifzISCN5eIrowWbn4ay6etud\nNRiV6UyQyHlMsiU+RFfiBWzPdfpmUEZAYE+yx4UCEgc8EzH23JiNsSNna7xS\nwey2\r\n=8CKx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"849b9606b1461c8b07972d2222020913b1872b0e","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-color-functional-notation.git","type":"git"},"_npmVersion":"6.4.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.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-color-functional-notation_2.0.1_1537283502269_0.1527753679647419","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"postcss-color-functional-notation","version":"5.1.0","keywords":["color","comma","css","design","functional","hsl","hsla","hwb","notation","postcss","postcss-plugin","rgb","rgba","space","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@5.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4d284ddf3dfac8bb68f781cd46bbfecfc8e8a09c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-5.1.0.tgz","fileCount":10,"integrity":"sha512-w2R4py6zrVE1U7FwNaAc76tNQlG9GLkrBbcFw+VhUjyDDiV28vfZG+l4LyPmpoQpeSJVtu8VgNjE8Jv5SpC7dQ==","signatures":[{"sig":"MEYCIQCJrZ0f9YTd6pzQPjE7LNo0kZkvLZbKLcUMkhYX7OdkXgIhAMPASY4HQNH/GBBwQqJKehMHIfTeIMM1ye6ThHAHW0gI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27728},"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":"7c2927f8b07be61c8c8c3d30d830e4a10f48347a","scripts":{"docs":"node ../../.github/bin/generate-docs/install.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":{"exportName":"postcssColorFunctionalNotation","humanReadableName":"PostCSS Color Functional Notation"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-color-functional-notation"},"_npmVersion":"9.5.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_5.1.0_1685627191509_0.1053582548134171","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-color-functional-notation","version":"1.0.0","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-functional-notation/issues"},"dist":{"shasum":"d5c7dbb866eed65331f5ee5954b6eb9a27499998","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-1.0.0.tgz","fileCount":6,"integrity":"sha512-WUqJJ1RqTTaHe3uI5ZPpQoVM9DNyley74DDPpTQcE38Pc9zyD8fAmDI94gNR+eyoAT+acZaxzjG7Wlxmgu+XOQ==","signatures":[{"sig":"MEYCIQDgZ/ppVcY2cUHAPbStFZY/bMg5MH73l/OEk0NdtM6gBwIhAOF11BOJ+cPLoGoZmAK1aR9rgz0vNwivSBl7eFZrhDWx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22305,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8Qw/CRA9TVsSAnZWagAAQzMP/3xQKnwE7luIvkuWX6UH\njGxzVu4jWh2mGyv3d536sZpMrUkUxrQQDopTWXquzbJO30u4FWzLOHrAhdwq\n8KnrLgPx5llQA/UpENQUXAIN6dS9vJYuDm5vuQlT14OWF+BbvQBIIR+J/le9\nflO9YrMDe/uFpdsH3KhuQOCnkOG2hRZjfOOEyTEvoygLSrmITrfxj3cLEZr5\nZhu7+lcS5SQJRwfnagFwCsefS3nZhZMPWQXDKiKQo1F7IpAub3hm1ikZyIJ8\nG3/ly9bWXVNtZlMFoOQcu3849XTbxeneZe/xJMzESmJh3Ip1h+1sA2mX6lct\npc+C4dt+IStZbVTjMWM9aV3dfJGgX1v8gF//mdORYGEK0SmRJ70MPuacmgwH\nv0HPMJ6ADo9FsGQzjJ+ZpqSQ0lDwnZ8qnS243iA+H6YQUcqVWzXv8vqMY4fO\nAEqVCF7RpdQQ2XncLtWWtq9eaRb13x4JB3D2+NBzHAQSIaWu96F2c7M2AyML\nrTDM3WKQGQgOBjH89Ob/9NNZfkOQm+CztbDevxhsnJFnRZS4hiGtRTk2hadZ\n1ElPw/2q/HlhsIaNSF+LIy7M2Vbo67CLVCfPpsglFdBjZ6SHbu86c4eyN8Tl\n6I4XPDfDQzcSmLJuT2tB1RXVBxPOSM1kY8ylL52dGfSZcrV0jca4DzjDgpDG\n1MgF\r\n=Eefz\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":"0da9daa789c2aa99ae3577656d45ec1dddc77020","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-color-functional-notation.git","type":"git"},"_npmVersion":"6.0.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_1.0.0_1525746749629_0.7549714248233423","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"postcss-color-functional-notation","version":"1.0.1","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@1.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-functional-notation/issues"},"dist":{"shasum":"a12fe1302fa63935e440859c9d53730023c0eadd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-1.0.1.tgz","fileCount":6,"integrity":"sha512-8ECwUd75SwcjLMzFdRVRBqjVoHwGeWpLQKCNIQo9T+QeCrUNKI1NJ6rgpni5vo7iZ7MZy21qKqUieMM3D0wHYQ==","signatures":[{"sig":"MEUCICeR4niklC8bzDJ3rONFy2JpdAWryVUnTAbAo4vcYll6AiEA4de8Dj556i56z70eTIkdBuywCCBze2BTNlUox4pJ5dk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9grxCRA9TVsSAnZWagAA1PAP/3t8Q3DhGUuV+qteNDtO\nLXXJQP+nwrdaNdw/7wuYRyYu1GTqffHh28fqmD6HZFW2L9T33kxYjfLRXmvi\nnwiCeEuFI7b8jaP3QVoU4M1bt0ifCWKHvBdK6b9HEac9tqMvYehK1LtC/4Ak\nG5hDQAq5U54TZcC8wOzd6sYfx/X8fAWV8gDPITsvtBRBrnqomlUkFIPrB8fd\nXkcclNZa6t8btTimU9J1nVkH2NjbeiTKRh/vqHmgnCRoNrnCCppydgcvRfdb\ngD3YMg72IPWiEZM9Kj0k23XIL2CTy3iiUv0jlnBoZpp/qkt6FtARPP/wAXdD\nlHnovmQHyYFW/vv782K52Zk1D7eCxvcw+BTu2ApUCcBq/Ryqv4LL4XhXW2rE\n5oEFQtcpXY8gaNvLoiets7Xsf68p9f2aNjhdTrxm8gX889zAxBvVx5juhm7E\n43Laavh36pf6yam9zfq3sHjiKmgxY+oAKP70rlLS/cWTnEU/uHUSLBwXJMCh\n1Wd+t1NaCUrGOFGib5ZycL6c1uoJq/gFsQcWKqNBm+Hx/tSTfB/mCTmAt5LZ\nQ9IfQajXecYvfw2cW9++iGr45nMuslRykvv8sbZbGUeKFVTvJRyHOmkQPaqc\nZRtg2XiPaucbJdNwFjV9/AcRboTDN6jaR4gpwXCBURYMD+2ThEAlzzzNZ+UG\nnYAA\r\n=HtMd\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":"6d2040ac0007e7465450f84519073a3f661abd9c","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-color-functional-notation.git","type":"git"},"_npmVersion":"6.0.1","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"10.1.0","dependencies":{"postcss":"^6.0.22","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.7.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_1.0.1_1526074096401_0.6798616110687867","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"postcss-color-functional-notation","version":"1.0.2","keywords":["postcss","css","postcss-plugin","color","colors","rgb","rgba","hsl","hsla","hwb","functional","notation","design","syntax","space","comma"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-functional-notation@1.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-functional-notation#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-functional-notation/issues"},"dist":{"shasum":"836fbc5e88a4ebd958ba6a3f9e2dad7792166c9f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-functional-notation/-/postcss-color-functional-notation-1.0.2.tgz","fileCount":6,"integrity":"sha512-FxkEr+s/KCrcrTxUhHcDMKGZmnLjUKK7pl2gDjnEoAJaVcbThdDWLhuASu02qdA3Ys7np/BwJgwc72JrURTvJQ==","signatures":[{"sig":"MEUCICjyDRS+9jm7QvfgtOpQm84EQkXqWxFs/ek8KfJCNmg1AiEAlhqjiFNN4mKflJ9zfdaOzpP/eQGT2cHadq6PzxofMro=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSPnLCRA9TVsSAnZWagAAiRAQAKE6rkaLXu74gFtzFG1B\nk0IXCfNPw+2vsNa/pCvFWUPm60i+ezlEhuV7XCm3xMmSDuszsgPnnKlwAZFu\nfj3338cwmI6506LoF+z2IdZDXpojX6CzFXp4wIE4oD0AQoWgvg7GRjCHyFXb\nQUtvYjrjR26AfjJknjN3rlZdHT8D2rlDqjBdbFvPNw5+VlTeM/XhFm5CiRcW\n3NxVH0IupwYAMALV+ruvR6rqVThyGQJwKHzA1k6cusVlXecs21suv70uQZIQ\n989SP58a6RkQY3zZybJzARmdC3bap8wr7OuNamBBxyW8J+3UlSHdL1dgbIvx\nZsn55p8xrDTar6fO52b0WL0Oar1y3LXFJt6Sc4qgAfxnQ33jepcvWM/kffT6\nkn13vU+Nn8xYHHN6g2ZjEFCXahLqGJtay7rpPYFZSNv89FiP+RjWVwfYCHNB\nVFWf+EJw5/1slA2F4U3owRb+z4Z5W69EkidBLo578eWUkBR7tW5/E8FpQm25\nEBFa9NLtozV6kGysOIbHzpc8h0ju41rTE/JkfiNW2sOw04NhtK6b+cdUSAOZ\n0mNdYTfmc+7O7yVTv8KAzAnJA3zd0neZdPmW6J4gPGrA6ukRF4tU5Df82Azr\nLY3XKE36dgk+eBPNW+xTMfQtLAzACmAG0c1QZ+qDEBlS+d1q34IEZCIuqC1U\nHnVo\r\n=54X6\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":"58a16404280a41191527f88b235ee4b8af8cbd64","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-color-functional-notation.git","type":"git"},"_npmVersion":"6.1.0","description":"Use space and slash separated color notation in CSS","directories":{},"_nodeVersion":"10.6.0","dependencies":{"postcss":"^6.0.23","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.1.0","rollup":"^0.62.0","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.6","postcss-tape":"^2.2.0","babel-preset-env":"^1.7.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-functional-notation_1.0.2_1531509195469_0.6257793646930636","host":"s3://npm-registry-packages"}}},"name":"postcss-color-functional-notation","time":{"4.1.0":"2021-12-15T15:11:01.407Z","7.0.11":"2025-08-22T19:53:00.530Z","7.0.10":"2025-05-27T10:53:53.857Z","7.0.12":"2025-09-21T14:36:48.914Z","6.0.10":"2024-05-04T16:09:27.372Z","6.0.11":"2024-05-04T21:17:31.560Z","6.0.12":"2024-06-29T22:00:42.468Z","8.0.2":"2026-02-21T15:08:01.294Z","8.0.3":"2026-04-12T17:27:57.664Z","8.0.0":"2026-01-14T07:36:10.659Z","8.0.1":"2026-01-25T13:04:50.653Z","modified":"2026-04-27T00:33:21.113Z","6.0.13":"2024-07-06T09:39:49.504Z","6.0.14":"2024-07-07T13:42:31.104Z","7.0.1":"2024-08-14T12:26:13.291Z","7.0.2":"2024-08-18T15:52:38.310Z","7.0.3":"2024-10-10T12:33:17.077Z","7.0.4":"2024-10-23T21:52:07.398Z","created":"2018-05-08T02:32:29.628Z","7.0.0":"2024-08-03T21:44:55.944Z","6.0.4":"2023-12-31T16:37:17.126Z","6.0.5":"2024-02-19T08:11:25.276Z","6.0.2":"2023-10-09T17:33:33.912Z","6.0.3":"2023-12-15T23:26:06.346Z","6.0.0":"2023-07-03T08:31:07.165Z","6.0.1":"2023-09-18T16:14:07.651Z","5.0.0":"2023-01-24T08:47:41.395Z","5.0.1":"2023-01-28T07:32:04.206Z","5.0.2":"2023-02-06T17:18:15.809Z","4.0.2":"2021-12-13T09:25:48.119Z","4.2.0":"2021-12-27T18:11:42.925Z","4.2.1":"2022-01-02T15:46:54.125Z","4.0.0":"2021-09-17T13:27:52.360Z","4.0.1":"2021-11-18T18:23:56.548Z","4.2.4":"2022-07-08T16:14:26.730Z","6.0.8":"2024-03-31T13:21:20.288Z","6.0.9":"2024-04-21T14:27:21.788Z","4.2.2":"2022-02-05T16:56:46.822Z","6.0.6":"2024-03-13T18:59:02.734Z","4.2.3":"2022-05-19T17:02:24.628Z","6.0.7":"2024-03-17T17:41:40.123Z","3.0.0":"2020-04-25T04:56:07.921Z","7.0.9":"2025-04-19T16:19:46.325Z","3.0.1":"2020-04-25T05:43:59.465Z","7.0.5":"2024-11-01T21:59:17.633Z","3.0.2":"2020-04-25T05:51:53.862Z","7.0.6":"2024-11-11T11:01:14.707Z","7.0.7":"2024-12-27T17:45:42.953Z","7.0.8":"2025-02-23T17:10:28.414Z","2.0.0":"2018-09-18T02:27:36.609Z","2.0.1":"2018-09-18T15:11:42.393Z","5.1.0":"2023-06-01T13:46:31.708Z","1.0.0":"2018-05-08T02:32:29.702Z","1.0.1":"2018-05-11T21:28:16.461Z","1.0.2":"2018-07-13T19:13:15.559Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme"}